diff --git a/corpus/statements.txt b/corpus/statements.txt new file mode 100644 index 00000000..eb590e0d --- /dev/null +++ b/corpus/statements.txt @@ -0,0 +1,755 @@ +=================================== +Pipelines +=================================== + +whoami | cat +cat foo | grep -v bar + +--- + +(program + (pipeline + (command + name: (command_name (word))) + (command + name: (command_name (word)))) + (pipeline + (command + name: (command_name (word)) + argument: (word)) + (command + 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)))) + (list + (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)) + argument: (word)) + body: (do_group + (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)) + argument: (word)) + body: (do_group + (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)) + argument: (word)) + body: (do_group + (command + name: (command_name (word)) + argument: (simple_expansion (variable_name))))) + redirect: (file_redirect + destination: (process_substitution (command + name: (command_name (word)) + argument: (word)))))) + +==================================== +For statements +==================================== + +for a in 1 2 $(seq 5 10); do + echo $a +done + +for ARG; do + echo $ARG + ARG='' +done + +--- + +(program + (for_statement + variable: (variable_name) + value: (word) + value: (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))))) + (for_statement + variable: (variable_name) + body: (do_group + (command + 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 + break +done + +select ARG; do + echo $ARG + ARG='' +done + +--- + +(program + (for_statement + (variable_name) + (word) + (word) + (command_substitution (command (command_name (word)))) + (do_group + (command + (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))))) + +==================================== +C-style for statements +==================================== + +for (( c=1; c<=5; c++ )) +do + echo $c +done + +for (( c=1; c<=5; c++ )) { + echo $c +} + +for (( ; ; )) +do + echo 'forever' +done + +--- + +(program + (c_style_for_statement + (word) + (binary_expression (word) (word)) + (word) + (do_group + (command (command_name (word)) (simple_expansion (variable_name))))) + (c_style_for_statement + (word) + (binary_expression (word) (word)) + (word) + (compound_statement + (command (command_name (word)) (simple_expansion (variable_name))))) + (c_style_for_statement + (do_group + (command (command_name (word)) (raw_string))))) + +==================================== +If statements +==================================== + +if cat some_file | grep -v ok; then + echo one +elif cat other_file | grep -v ok; then + echo two +else + exit +fi + +--- + +(program + (if_statement + (pipeline + (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))) + (else_clause + (command (command_name (word)))))) + +==================================== +If statements with conditional expressions +==================================== + +if [ "$(uname)" == 'Darwin' ]; then + echo one +fi + +--- + +(program + (if_statement + (test_command (binary_expression + (string (command_substitution (command (command_name (word))))) + (raw_string))) + (command (command_name (word)) (word)))) + +==================================== +If statements with negated command +==================================== + +if ! command -v echo; then + echo 'hello' +fi + +--- + +(program + (if_statement + condition: (negated_command + (command + name: (command_name + (word)) + argument: (word) + argument: (word))) + (command + name: (command_name (word)) + argument: (raw_string)))) + +==================================== +If statements with command +==================================== + +if command -v echo; then + echo 'hello' +fi + +--- + +(program + (if_statement + condition: (command + name: (command_name + (word)) + argument: (word) + argument: (word)) + (command + name: (command_name (word)) + argument: (raw_string)))) + +==================================== +If statements with variable assignment by command substitution +==================================== + +if result=$(echo 'hello'); then + echo 'hello' +fi + +--- + +(program + (if_statement + condition: (variable_assignment + name: (variable_name) + value: (command_substitution (command name: (command_name (word)) argument: (raw_string)))) + (command + name: (command_name (word)) + argument: (raw_string)))) + +==================================== +If statements with negated variable assignment by command substitution +==================================== + +if ! result=$(echo 'hello'); then + echo 'hello' +fi + +--- + +(program + (if_statement + condition: (negated_command + (variable_assignment + name: (variable_name) + value: (command_substitution + (command + name: (command_name + (word)) + argument: (raw_string))))) + (command + name: (command_name (word)) + argument: (raw_string)))) + +==================================== +If statements with variable assignment +==================================== + +if foo=1; then + echo 'hello' +fi + +--- + +(program + (if_statement + condition: (variable_assignment + name: (variable_name) + value: (word)) + (command + name: (command_name (word)) + argument: (raw_string)))) + +==================================== +If statements with negated variable assignment +==================================== + +if ! foo=1; then + echo 'hello' +fi + +--- + +(program + (if_statement + condition: (negated_command + (variable_assignment + name: (variable_name) + value: (word))) + (command + name: (command_name (word)) + argument: (raw_string)))) + +==================================== +Case statements +==================================== + +case "opt" in + a) + echo a + ;; + + b) + echo b + ;& + + c) + echo c;; +esac + +case "opt" in + (a) + echo a + ;; + + (b) + echo b + ;& + + (c) + echo c;; +esac + +case "$Z" in + ab*|cd*) ef +esac + +case $dest in + *.[1357]) + exit $? + ;; +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)))))) + +============================= +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 + (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)))) + + +============================= +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))) + (command + (command_name (word)) (word)))) + +============================= +Test commands with regexes +============================= + +[[ "35d8b" =~ ^[0-9a-fA-F] ]] +[[ $CMD =~ (^|;)update_terminal_cwd($|;) ]] +[[ ! " ${completions[*]} " =~ " $alias_cmd " ]] +! [[ "$a" =~ ^a|b\ *c|d$ ]] +[[ "$1" =~ ^${var}${var}*=..* ]] +[[ "$1" =~ ^\-${var}+ ]] +[[ ${var1} == *${var2}* ]] +[[ "$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 + (binary_expression + (string) + (regex))) + (test_command + (binary_expression + (simple_expansion (variable_name)) + (regex))) + (test_command + (unary_expression + (binary_expression + (string (expansion (subscript (variable_name) (word)))) + (string (simple_expansion (variable_name)))))) + (negated_command + (test_command + (binary_expression + (string (simple_expansion (variable_name))) + (regex)))) + (test_command + (binary_expression + (string (simple_expansion (variable_name))) + (regex))) + (test_command + (binary_expression + (string (simple_expansion (variable_name))) + (regex))) + (test_command + (binary_expression + (expansion (variable_name)) + (regex))) + (test_command + (binary_expression + (string (simple_expansion (variable_name))) + (regex))) + (test_command + (binary_expression + (string (simple_expansion (variable_name))) + (regex)))) + +=============================== +Subshells +=============================== + +( + ./start-server --port=80 +) & + +--- + +(program + (subshell (command (command_name (word)) (word)))) + +=============================== +Function definitions +=============================== + +do_something() { + echo ok +} + +run_subshell_command() ( + true +) + +run_test_command() [[ -e foo ]] + +function do_something_else() { + a | xargs -I{} find xml/{} -type f +} + +function do_yet_another_thing { + echo ok +} 2>&1 + +--- + +(program + (function_definition + (word) + (compound_statement (command (command_name (word)) (word)))) + (function_definition + (word) + (subshell (command (command_name (word))))) + (function_definition + (word) + (test_command (unary_expression (test_operator) (word)))) + (function_definition + (word) + (compound_statement + (pipeline + (command (command_name (word))) + (command + (command_name (word)) + (concatenation (word)) + (word) + (concatenation (word)) + (word) + (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)))) + +========================================= +Variable declaration: readonly +========================================= + +readonly var1 +readonly var2=42 + +--- + +(program + (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_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) + (variable_assignment (variable_name) (string (simple_expansion (variable_name)))))) + +=========================================================== +Variable declaration: command substitution with semi-colon +=========================================================== + +_path=$( + while statement; do + cd ".." + done; + echo $PWD +) + +--- + +(program + (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)))))) + +=========================================== +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))))) + +========================================= +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))) + +=========================================== +Compound statements +=========================================== + +a () { + ls || { echo "b"; return 0; } + echo c +} + +{ echo "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)))) + (redirected_statement + (compound_statement (command (command_name (word)) (string)) (command (command_name (word)) (string))) + (file_redirect (word)))) diff --git a/grammar.js b/grammar.js index a2529968..f5fc88ee 100644 --- a/grammar.js +++ b/grammar.js @@ -273,7 +273,8 @@ module.exports = grammar({ negated_command: $ => seq( '!', choice( - $.command, + prec(2, $.command), + prec(1, $.variable_assignment), $.test_command, $.subshell, ), diff --git a/src/grammar.json b/src/grammar.json index ed55e27a..8e7820c8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1056,8 +1056,20 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "command" + "type": "PREC", + "value": 2, + "content": { + "type": "SYMBOL", + "name": "command" + } + }, + { + "type": "PREC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "variable_assignment" + } }, { "type": "SYMBOL", diff --git a/src/node-types.json b/src/node-types.json index 77ec135e..217cf4e3 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1027,6 +1027,10 @@ { "type": "test_command", "named": true + }, + { + "type": "variable_assignment", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 833f7e90..b11fe8f1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,7 +14,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4283 +#define STATE_COUNT 4291 #define LARGE_STATE_COUNT 227 #define SYMBOL_COUNT 180 #define ALIAS_COUNT 0 @@ -1740,7 +1740,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 2, [6] = 2, [7] = 2, - [8] = 8, + [8] = 2, [9] = 2, [10] = 2, [11] = 2, @@ -1757,26 +1757,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [22] = 2, [23] = 2, [24] = 2, - [25] = 8, + [25] = 2, [26] = 2, [27] = 2, [28] = 2, - [29] = 2, + [29] = 29, [30] = 2, [31] = 2, [32] = 2, - [33] = 2, + [33] = 29, [34] = 2, [35] = 2, [36] = 2, [37] = 37, [38] = 38, - [39] = 39, - [40] = 39, - [41] = 38, + [39] = 37, + [40] = 40, + [41] = 40, [42] = 38, - [43] = 37, - [44] = 39, + [43] = 40, + [44] = 38, [45] = 45, [46] = 46, [47] = 47, @@ -1808,232 +1808,232 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [73] = 72, [74] = 72, [75] = 75, - [76] = 76, - [77] = 76, + [76] = 75, + [77] = 75, [78] = 78, [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, + [80] = 79, + [81] = 81, + [82] = 75, + [83] = 81, + [84] = 81, + [85] = 85, + [86] = 79, + [87] = 75, + [88] = 75, + [89] = 81, + [90] = 79, + [91] = 75, + [92] = 92, + [93] = 81, [94] = 79, - [95] = 76, - [96] = 78, + [95] = 75, + [96] = 75, [97] = 79, - [98] = 76, - [99] = 99, - [100] = 78, - [101] = 79, - [102] = 76, - [103] = 103, - [104] = 78, - [105] = 105, - [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, + [98] = 81, + [99] = 81, + [100] = 81, + [101] = 75, + [102] = 79, + [103] = 81, + [104] = 79, + [105] = 75, + [106] = 75, + [107] = 81, + [108] = 92, + [109] = 81, + [110] = 79, + [111] = 85, + [112] = 81, + [113] = 78, + [114] = 79, + [115] = 79, + [116] = 75, + [117] = 81, + [118] = 75, [119] = 79, - [120] = 78, - [121] = 79, - [122] = 76, - [123] = 78, - [124] = 78, + [120] = 79, + [121] = 75, + [122] = 122, + [123] = 81, + [124] = 75, [125] = 79, - [126] = 76, - [127] = 127, - [128] = 78, + [126] = 75, + [127] = 75, + [128] = 75, [129] = 79, - [130] = 76, - [131] = 76, - [132] = 78, - [133] = 79, + [130] = 81, + [131] = 81, + [132] = 75, + [133] = 81, [134] = 79, - [135] = 79, - [136] = 78, - [137] = 79, - [138] = 76, - [139] = 78, - [140] = 78, - [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, + [135] = 92, + [136] = 79, + [137] = 75, + [138] = 81, + [139] = 139, + [140] = 79, + [141] = 81, + [142] = 75, + [143] = 143, + [144] = 79, + [145] = 75, + [146] = 79, + [147] = 81, + [148] = 79, + [149] = 79, + [150] = 81, + [151] = 151, + [152] = 75, + [153] = 81, + [154] = 85, + [155] = 75, + [156] = 81, [157] = 79, [158] = 78, - [159] = 105, - [160] = 103, - [161] = 63, - [162] = 76, - [163] = 79, - [164] = 78, - [165] = 99, - [166] = 78, - [167] = 79, - [168] = 76, + [159] = 151, + [160] = 79, + [161] = 81, + [162] = 75, + [163] = 62, + [164] = 79, + [165] = 75, + [166] = 81, + [167] = 75, + [168] = 81, [169] = 79, - [170] = 78, - [171] = 78, - [172] = 76, - [173] = 76, + [170] = 75, + [171] = 81, + [172] = 139, + [173] = 79, [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, + [175] = 75, + [176] = 81, + [177] = 81, + [178] = 79, + [179] = 79, + [180] = 75, + [181] = 81, + [182] = 75, + [183] = 81, + [184] = 75, + [185] = 79, + [186] = 139, + [187] = 79, + [188] = 79, + [189] = 75, + [190] = 81, + [191] = 151, + [192] = 192, [193] = 193, [194] = 194, - [195] = 195, - [196] = 196, - [197] = 194, - [198] = 196, + [195] = 193, + [196] = 194, + [197] = 197, + [198] = 194, [199] = 194, - [200] = 194, - [201] = 201, - [202] = 194, - [203] = 201, - [204] = 196, - [205] = 201, + [200] = 197, + [201] = 194, + [202] = 202, + [203] = 193, + [204] = 197, + [205] = 205, [206] = 206, [207] = 206, [208] = 208, [209] = 206, - [210] = 206, + [210] = 208, [211] = 208, - [212] = 206, - [213] = 208, - [214] = 208, + [212] = 208, + [213] = 206, + [214] = 206, [215] = 208, [216] = 216, [217] = 216, - [218] = 216, + [218] = 218, [219] = 216, [220] = 216, - [221] = 221, - [222] = 216, - [223] = 223, - [224] = 223, - [225] = 221, + [221] = 216, + [222] = 222, + [223] = 216, + [224] = 222, + [225] = 218, [226] = 226, - [227] = 227, + [227] = 226, [228] = 228, [229] = 229, [230] = 230, - [231] = 226, + [231] = 231, [232] = 232, - [233] = 233, + [233] = 232, [234] = 234, [235] = 235, [236] = 236, [237] = 237, [238] = 238, - [239] = 239, - [240] = 240, - [241] = 241, + [239] = 228, + [240] = 229, + [241] = 231, [242] = 242, - [243] = 243, + [243] = 230, [244] = 244, [245] = 245, [246] = 246, - [247] = 227, - [248] = 229, - [249] = 232, + [247] = 247, + [248] = 248, + [249] = 249, [250] = 250, [251] = 251, [252] = 252, [253] = 253, [254] = 254, [255] = 255, - [256] = 230, + [256] = 256, [257] = 257, [258] = 258, [259] = 259, [260] = 260, [261] = 261, - [262] = 228, + [262] = 262, [263] = 263, [264] = 264, [265] = 265, [266] = 266, [267] = 267, - [268] = 254, + [268] = 251, [269] = 264, - [270] = 261, + [270] = 247, [271] = 271, - [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, + [272] = 252, + [273] = 248, + [274] = 249, + [275] = 250, + [276] = 238, + [277] = 253, + [278] = 278, + [279] = 267, + [280] = 234, + [281] = 237, + [282] = 266, + [283] = 242, + [284] = 244, + [285] = 236, [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, + [287] = 254, + [288] = 263, + [289] = 260, + [290] = 245, + [291] = 259, + [292] = 262, + [293] = 255, + [294] = 257, + [295] = 261, + [296] = 256, + [297] = 235, + [298] = 258, + [299] = 246, + [300] = 278, + [301] = 271, [302] = 302, [303] = 302, [304] = 304, @@ -2042,3979 +2042,3987 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [307] = 307, [308] = 308, [309] = 309, - [310] = 306, - [311] = 308, - [312] = 304, - [313] = 305, - [314] = 309, - [315] = 221, + [310] = 305, + [311] = 309, + [312] = 307, + [313] = 306, + [314] = 304, + [315] = 315, [316] = 316, - [317] = 305, - [318] = 221, - [319] = 319, - [320] = 320, - [321] = 309, - [322] = 309, - [323] = 223, - [324] = 304, - [325] = 223, - [326] = 304, - [327] = 305, + [317] = 317, + [318] = 309, + [319] = 309, + [320] = 222, + [321] = 222, + [322] = 218, + [323] = 306, + [324] = 306, + [325] = 307, + [326] = 218, + [327] = 327, [328] = 328, - [329] = 329, + [329] = 307, [330] = 316, [331] = 331, - [332] = 306, + [332] = 332, [333] = 333, - [334] = 329, - [335] = 308, - [336] = 221, - [337] = 337, - [338] = 338, - [339] = 320, - [340] = 221, - [341] = 223, + [334] = 307, + [335] = 335, + [336] = 222, + [337] = 218, + [338] = 222, + [339] = 309, + [340] = 218, + [341] = 305, [342] = 342, - [343] = 223, - [344] = 328, + [343] = 343, + [344] = 305, [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, + [346] = 222, + [347] = 347, + [348] = 218, + [349] = 304, + [350] = 304, + [351] = 347, + [352] = 222, + [353] = 317, + [354] = 315, + [355] = 355, + [356] = 355, + [357] = 308, + [358] = 327, + [359] = 218, + [360] = 328, + [361] = 331, + [362] = 333, + [363] = 218, + [364] = 364, + [365] = 316, + [366] = 316, + [367] = 317, + [368] = 222, + [369] = 222, + [370] = 317, [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, + [372] = 327, + [373] = 345, + [374] = 315, + [375] = 343, + [376] = 218, + [377] = 305, + [378] = 327, + [379] = 222, + [380] = 304, + [381] = 342, + [382] = 222, + [383] = 222, + [384] = 218, + [385] = 315, + [386] = 218, + [387] = 328, + [388] = 218, + [389] = 218, + [390] = 343, + [391] = 343, + [392] = 342, + [393] = 222, + [394] = 222, + [395] = 315, + [396] = 222, + [397] = 342, + [398] = 345, + [399] = 222, + [400] = 218, + [401] = 345, + [402] = 218, + [403] = 222, + [404] = 317, + [405] = 218, + [406] = 222, + [407] = 218, + [408] = 327, [409] = 328, - [410] = 316, - [411] = 354, - [412] = 329, + [410] = 218, + [411] = 222, + [412] = 218, [413] = 413, - [414] = 221, - [415] = 337, - [416] = 413, - [417] = 333, - [418] = 413, - [419] = 342, - [420] = 413, - [421] = 331, - [422] = 351, - [423] = 345, + [414] = 222, + [415] = 218, + [416] = 355, + [417] = 345, + [418] = 331, + [419] = 413, + [420] = 222, + [421] = 218, + [422] = 335, + [423] = 413, [424] = 413, - [425] = 221, - [426] = 223, - [427] = 358, - [428] = 223, - [429] = 354, - [430] = 430, - [431] = 351, + [425] = 413, + [426] = 343, + [427] = 333, + [428] = 347, + [429] = 332, + [430] = 347, + [431] = 333, [432] = 432, - [433] = 333, - [434] = 331, - [435] = 337, - [436] = 230, - [437] = 437, + [433] = 355, + [434] = 434, + [435] = 331, + [436] = 228, + [437] = 254, [438] = 438, [439] = 439, - [440] = 232, - [441] = 441, - [442] = 442, - [443] = 243, - [444] = 227, + [440] = 440, + [441] = 231, + [442] = 230, + [443] = 443, + [444] = 232, [445] = 445, - [446] = 229, + [446] = 446, [447] = 447, - [448] = 227, - [449] = 230, - [450] = 227, + [448] = 448, + [449] = 244, + [450] = 450, [451] = 451, [452] = 452, - [453] = 230, - [454] = 454, - [455] = 229, - [456] = 232, + [453] = 453, + [454] = 446, + [455] = 230, + [456] = 456, [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, + [458] = 228, + [459] = 232, + [460] = 245, + [461] = 439, + [462] = 447, + [463] = 438, + [464] = 440, + [465] = 465, + [466] = 231, + [467] = 230, + [468] = 242, + [469] = 231, + [470] = 237, [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, + [472] = 236, + [473] = 235, + [474] = 232, + [475] = 251, + [476] = 260, + [477] = 477, + [478] = 445, + [479] = 267, + [480] = 228, + [481] = 238, + [482] = 252, + [483] = 271, + [484] = 231, + [485] = 230, + [486] = 232, + [487] = 255, + [488] = 256, + [489] = 257, + [490] = 258, + [491] = 261, + [492] = 262, + [493] = 228, + [494] = 263, + [495] = 264, + [496] = 265, + [497] = 266, + [498] = 234, + [499] = 253, + [500] = 250, + [501] = 249, + [502] = 248, + [503] = 247, + [504] = 246, + [505] = 439, [506] = 506, [507] = 507, [508] = 508, - [509] = 509, - [510] = 510, - [511] = 505, + [509] = 507, + [510] = 506, + [511] = 511, [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, + [513] = 508, + [514] = 514, + [515] = 511, + [516] = 511, + [517] = 508, + [518] = 518, + [519] = 511, + [520] = 520, + [521] = 514, + [522] = 512, + [523] = 514, + [524] = 514, + [525] = 520, + [526] = 520, + [527] = 518, [528] = 512, - [529] = 513, - [530] = 506, - [531] = 507, - [532] = 230, - [533] = 232, - [534] = 229, - [535] = 227, - [536] = 230, - [537] = 232, - [538] = 229, + [529] = 507, + [530] = 518, + [531] = 506, + [532] = 507, + [533] = 507, + [534] = 507, + [535] = 506, + [536] = 506, + [537] = 518, + [538] = 512, [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, + [540] = 514, + [541] = 520, + [542] = 511, + [543] = 514, + [544] = 508, + [545] = 511, + [546] = 508, + [547] = 508, + [548] = 438, + [549] = 520, + [550] = 440, + [551] = 518, + [552] = 512, [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, + [554] = 520, + [555] = 506, + [556] = 518, + [557] = 512, + [558] = 514, + [559] = 511, + [560] = 508, + [561] = 507, + [562] = 506, + [563] = 520, + [564] = 512, + [565] = 518, + [566] = 507, + [567] = 514, + [568] = 506, + [569] = 512, + [570] = 514, + [571] = 511, + [572] = 511, + [573] = 508, + [574] = 508, + [575] = 506, + [576] = 520, + [577] = 518, + [578] = 507, + [579] = 506, + [580] = 512, + [581] = 520, + [582] = 514, + [583] = 518, + [584] = 511, + [585] = 508, + [586] = 520, + [587] = 507, + [588] = 507, + [589] = 506, + [590] = 518, + [591] = 512, + [592] = 507, + [593] = 514, + [594] = 506, + [595] = 511, + [596] = 508, + [597] = 512, + [598] = 514, + [599] = 228, + [600] = 511, + [601] = 508, + [602] = 520, + [603] = 508, + [604] = 518, + [605] = 445, [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, + [607] = 518, + [608] = 511, + [609] = 514, + [610] = 520, + [611] = 514, + [612] = 512, + [613] = 447, + [614] = 506, + [615] = 512, + [616] = 506, + [617] = 514, + [618] = 511, + [619] = 508, + [620] = 511, + [621] = 508, + [622] = 242, + [623] = 237, + [624] = 512, [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, + [626] = 520, + [627] = 236, + [628] = 235, + [629] = 251, + [630] = 520, + [631] = 518, + [632] = 518, + [633] = 518, + [634] = 267, + [635] = 238, + [636] = 242, + [637] = 445, + [638] = 237, + [639] = 252, + [640] = 260, + [641] = 506, + [642] = 507, + [643] = 244, + [644] = 506, + [645] = 645, + [646] = 512, + [647] = 520, + [648] = 508, + [649] = 514, + [650] = 511, + [651] = 511, + [652] = 518, + [653] = 447, [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, + [655] = 514, + [656] = 254, + [657] = 512, + [658] = 506, + [659] = 507, + [660] = 506, + [661] = 507, + [662] = 520, + [663] = 242, + [664] = 448, + [665] = 465, + [666] = 237, + [667] = 518, + [668] = 520, + [669] = 520, [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, + [672] = 511, + [673] = 514, + [674] = 254, + [675] = 518, + [676] = 514, + [677] = 520, + [678] = 512, + [679] = 506, + [680] = 507, + [681] = 518, + [682] = 520, + [683] = 236, + [684] = 235, + [685] = 255, [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, + [687] = 235, + [688] = 511, + [689] = 508, + [690] = 251, + [691] = 256, + [692] = 257, + [693] = 258, + [694] = 260, + [695] = 508, + [696] = 508, + [697] = 511, + [698] = 518, + [699] = 438, + [700] = 514, + [701] = 440, + [702] = 512, + [703] = 251, + [704] = 260, + [705] = 261, + [706] = 244, + [707] = 508, + [708] = 507, + [709] = 506, + [710] = 512, + [711] = 514, + [712] = 511, + [713] = 514, + [714] = 511, + [715] = 512, + [716] = 508, + [717] = 511, + [718] = 514, + [719] = 520, + [720] = 506, + [721] = 518, + [722] = 267, + [723] = 238, + [724] = 232, + [725] = 252, + [726] = 507, + [727] = 230, + [728] = 254, + [729] = 507, + [730] = 261, + [731] = 731, + [732] = 244, + [733] = 262, + [734] = 263, + [735] = 264, [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, + [737] = 506, + [738] = 255, + [739] = 512, + [740] = 231, + [741] = 514, + [742] = 512, + [743] = 511, + [744] = 507, + [745] = 508, + [746] = 256, + [747] = 506, + [748] = 507, + [749] = 257, + [750] = 520, + [751] = 258, + [752] = 518, + [753] = 261, + [754] = 262, + [755] = 263, + [756] = 264, + [757] = 265, + [758] = 266, + [759] = 265, + [760] = 266, + [761] = 234, + [762] = 253, + [763] = 234, + [764] = 253, + [765] = 250, + [766] = 249, + [767] = 248, + [768] = 520, + [769] = 247, + [770] = 246, + [771] = 518, + [772] = 245, + [773] = 250, + [774] = 249, + [775] = 248, + [776] = 247, + [777] = 228, + [778] = 267, + [779] = 238, + [780] = 507, + [781] = 506, + [782] = 232, + [783] = 512, + [784] = 246, + [785] = 245, + [786] = 252, + [787] = 514, + [788] = 230, + [789] = 511, [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, + [791] = 255, + [792] = 448, + [793] = 465, + [794] = 231, + [795] = 256, + [796] = 257, + [797] = 258, + [798] = 520, + [799] = 262, + [800] = 263, + [801] = 264, + [802] = 518, + [803] = 443, + [804] = 520, + [805] = 265, + [806] = 266, + [807] = 234, + [808] = 253, + [809] = 250, + [810] = 249, + [811] = 811, + [812] = 248, + [813] = 247, + [814] = 814, + [815] = 246, + [816] = 245, + [817] = 518, + [818] = 228, + [819] = 518, + [820] = 520, + [821] = 518, + [822] = 518, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 645, + [827] = 507, + [828] = 506, + [829] = 228, + [830] = 232, + [831] = 507, + [832] = 520, + [833] = 520, + [834] = 230, + [835] = 512, + [836] = 231, + [837] = 514, + [838] = 228, + [839] = 511, + [840] = 232, + [841] = 508, + [842] = 228, + [843] = 508, + [844] = 511, + [845] = 230, + [846] = 508, + [847] = 511, + [848] = 848, + [849] = 507, + [850] = 514, + [851] = 506, + [852] = 512, + [853] = 512, + [854] = 506, + [855] = 855, + [856] = 512, + [857] = 506, [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, + [859] = 231, + [860] = 518, + [861] = 514, + [862] = 862, + [863] = 863, + [864] = 514, + [865] = 514, + [866] = 520, + [867] = 867, + [868] = 439, + [869] = 511, + [870] = 508, + [871] = 506, + [872] = 872, + [873] = 512, + [874] = 450, + [875] = 506, + [876] = 507, + [877] = 451, + [878] = 520, + [879] = 508, + [880] = 511, + [881] = 518, + [882] = 514, + [883] = 518, + [884] = 512, + [885] = 872, + [886] = 507, + [887] = 506, + [888] = 506, + [889] = 511, + [890] = 228, + [891] = 507, + [892] = 508, + [893] = 520, + [894] = 456, + [895] = 457, + [896] = 645, + [897] = 518, + [898] = 520, + [899] = 512, + [900] = 900, + [901] = 471, + [902] = 477, + [903] = 520, + [904] = 872, + [905] = 518, + [906] = 520, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 512, + [911] = 518, + [912] = 512, + [913] = 452, + [914] = 508, + [915] = 511, + [916] = 514, + [917] = 514, + [918] = 511, + [919] = 453, + [920] = 511, + [921] = 514, + [922] = 508, + [923] = 508, + [924] = 507, + [925] = 507, + [926] = 506, + [927] = 260, [928] = 928, [929] = 929, [930] = 930, - [931] = 929, - [932] = 261, - [933] = 260, - [934] = 259, - [935] = 258, - [936] = 930, - [937] = 937, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 228, + [935] = 245, + [936] = 246, + [937] = 247, [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, + [939] = 248, + [940] = 940, + [941] = 249, + [942] = 250, + [943] = 253, + [944] = 234, + [945] = 945, + [946] = 266, + [947] = 265, + [948] = 948, + [949] = 264, + [950] = 263, + [951] = 262, + [952] = 258, + [953] = 257, + [954] = 930, + [955] = 929, + [956] = 256, [957] = 957, [958] = 958, - [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] = 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, + [959] = 959, + [960] = 231, + [961] = 948, + [962] = 255, + [963] = 230, + [964] = 928, + [965] = 965, + [966] = 931, + [967] = 932, + [968] = 933, + [969] = 252, + [970] = 232, + [971] = 938, + [972] = 940, + [973] = 945, + [974] = 948, + [975] = 238, + [976] = 930, + [977] = 929, + [978] = 267, + [979] = 228, + [980] = 957, + [981] = 245, + [982] = 246, + [983] = 247, + [984] = 248, + [985] = 249, + [986] = 250, + [987] = 811, + [988] = 446, + [989] = 253, + [990] = 234, + [991] = 266, + [992] = 265, + [993] = 928, + [994] = 957, + [995] = 995, + [996] = 823, + [997] = 824, + [998] = 825, + [999] = 264, + [1000] = 263, + [1001] = 262, + [1002] = 261, + [1003] = 958, + [1004] = 1004, + [1005] = 959, + [1006] = 928, + [1007] = 965, + [1008] = 958, + [1009] = 931, + [1010] = 959, + [1011] = 932, + [1012] = 258, + [1013] = 1013, + [1014] = 257, + [1015] = 256, + [1016] = 928, + [1017] = 965, + [1018] = 231, + [1019] = 945, + [1020] = 848, + [1021] = 255, + [1022] = 254, + [1023] = 230, + [1024] = 933, + [1025] = 938, + [1026] = 252, + [1027] = 232, + [1028] = 940, + [1029] = 238, + [1030] = 965, + [1031] = 267, + [1032] = 230, + [1033] = 440, + [1034] = 438, + [1035] = 931, + [1036] = 940, + [1037] = 938, + [1038] = 933, + [1039] = 959, + [1040] = 932, + [1041] = 945, + [1042] = 958, + [1043] = 948, + [1044] = 957, + [1045] = 932, + [1046] = 933, + [1047] = 938, + [1048] = 930, + [1049] = 929, + [1050] = 957, + [1051] = 958, + [1052] = 959, + [1053] = 931, + [1054] = 940, + [1055] = 965, + [1056] = 928, + [1057] = 231, + [1058] = 929, + [1059] = 900, + [1060] = 945, + [1061] = 244, + [1062] = 261, + [1063] = 959, + [1064] = 1064, + [1065] = 958, + [1066] = 957, + [1067] = 929, + [1068] = 928, + [1069] = 965, + [1070] = 930, + [1071] = 931, + [1072] = 948, + [1073] = 932, + [1074] = 933, + [1075] = 251, + [1076] = 938, + [1077] = 448, + [1078] = 930, + [1079] = 940, + [1080] = 465, + [1081] = 948, + [1082] = 945, + [1083] = 235, + [1084] = 948, + [1085] = 945, + [1086] = 948, + [1087] = 945, + [1088] = 236, + [1089] = 447, + [1090] = 929, + [1091] = 254, + [1092] = 1092, + [1093] = 930, + [1094] = 930, + [1095] = 957, + [1096] = 958, + [1097] = 237, + [1098] = 443, + [1099] = 929, + [1100] = 959, + [1101] = 242, + [1102] = 957, + [1103] = 958, + [1104] = 245, + [1105] = 232, + [1106] = 246, + [1107] = 247, + [1108] = 230, + [1109] = 248, + [1110] = 249, + [1111] = 250, + [1112] = 253, + [1113] = 928, + [1114] = 965, + [1115] = 234, + [1116] = 254, + [1117] = 930, + [1118] = 929, + [1119] = 957, + [1120] = 958, + [1121] = 266, + [1122] = 265, + [1123] = 264, + [1124] = 263, + [1125] = 262, + [1126] = 959, + [1127] = 231, + [1128] = 244, + [1129] = 931, + [1130] = 948, + [1131] = 260, + [1132] = 258, + [1133] = 928, + [1134] = 257, + [1135] = 256, + [1136] = 251, + [1137] = 959, + [1138] = 928, + [1139] = 965, + [1140] = 235, + [1141] = 236, + [1142] = 255, + [1143] = 945, + [1144] = 232, + [1145] = 252, + [1146] = 237, + [1147] = 965, + [1148] = 931, + [1149] = 242, + [1150] = 238, + [1151] = 267, + [1152] = 245, + [1153] = 246, + [1154] = 247, + [1155] = 248, + [1156] = 249, + [1157] = 250, + [1158] = 253, + [1159] = 234, + [1160] = 940, + [1161] = 266, + [1162] = 265, + [1163] = 264, + [1164] = 263, + [1165] = 232, + [1166] = 262, + [1167] = 938, + [1168] = 230, + [1169] = 261, + [1170] = 254, + [1171] = 933, + [1172] = 465, + [1173] = 448, + [1174] = 940, + [1175] = 258, + [1176] = 257, + [1177] = 256, + [1178] = 938, + [1179] = 933, + [1180] = 931, + [1181] = 231, + [1182] = 932, + [1183] = 1183, + [1184] = 255, + [1185] = 254, + [1186] = 252, + [1187] = 930, + [1188] = 932, + [1189] = 931, + [1190] = 929, + [1191] = 238, + [1192] = 267, + [1193] = 957, + [1194] = 932, + [1195] = 931, + [1196] = 933, + [1197] = 443, + [1198] = 958, + [1199] = 959, + [1200] = 932, + [1201] = 928, + [1202] = 1202, + [1203] = 439, + [1204] = 965, + [1205] = 933, + [1206] = 931, + [1207] = 228, + [1208] = 932, + [1209] = 228, + [1210] = 244, + [1211] = 1211, + [1212] = 261, + [1213] = 965, + [1214] = 260, + [1215] = 940, + [1216] = 965, + [1217] = 928, + [1218] = 251, + [1219] = 959, + [1220] = 958, + [1221] = 957, + [1222] = 731, + [1223] = 928, + [1224] = 235, + [1225] = 236, + [1226] = 938, + [1227] = 929, + [1228] = 254, + [1229] = 930, + [1230] = 938, + [1231] = 237, + [1232] = 948, + [1233] = 940, + [1234] = 242, + [1235] = 945, + [1236] = 940, + [1237] = 938, + [1238] = 933, + [1239] = 932, [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, + [1241] = 933, + [1242] = 965, + [1243] = 932, + [1244] = 938, + [1245] = 938, + [1246] = 938, + [1247] = 940, + [1248] = 959, + [1249] = 958, + [1250] = 957, + [1251] = 244, + [1252] = 1252, + [1253] = 929, + [1254] = 959, + [1255] = 260, + [1256] = 930, + [1257] = 931, + [1258] = 940, + [1259] = 251, + [1260] = 945, + [1261] = 958, + [1262] = 235, + [1263] = 1263, + [1264] = 236, + [1265] = 948, + [1266] = 945, + [1267] = 945, + [1268] = 271, + [1269] = 940, + [1270] = 938, + [1271] = 933, + [1272] = 237, + [1273] = 948, + [1274] = 242, + [1275] = 965, + [1276] = 1276, + [1277] = 932, + [1278] = 1004, + [1279] = 957, + [1280] = 929, + [1281] = 930, + [1282] = 931, + [1283] = 959, + [1284] = 948, + [1285] = 948, + [1286] = 958, + [1287] = 945, + [1288] = 450, + [1289] = 451, + [1290] = 957, + [1291] = 965, + [1292] = 940, + [1293] = 928, + [1294] = 938, + [1295] = 933, + [1296] = 932, + [1297] = 959, + [1298] = 945, + [1299] = 958, + [1300] = 948, + [1301] = 957, + [1302] = 452, + [1303] = 930, + [1304] = 929, + [1305] = 930, + [1306] = 930, + [1307] = 930, + [1308] = 465, + [1309] = 448, + [1310] = 931, + [1311] = 929, + [1312] = 957, + [1313] = 958, + [1314] = 959, + [1315] = 928, + [1316] = 965, + [1317] = 929, + [1318] = 931, + [1319] = 957, + [1320] = 932, + [1321] = 933, [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, + [1323] = 938, + [1324] = 940, + [1325] = 958, + [1326] = 959, + [1327] = 945, + [1328] = 928, + [1329] = 948, + [1330] = 1330, + [1331] = 965, + [1332] = 931, + [1333] = 929, + [1334] = 948, + [1335] = 930, + [1336] = 929, + [1337] = 957, + [1338] = 958, + [1339] = 959, + [1340] = 928, + [1341] = 965, + [1342] = 929, + [1343] = 931, + [1344] = 271, + [1345] = 477, + [1346] = 930, + [1347] = 957, + [1348] = 945, + [1349] = 932, + [1350] = 933, + [1351] = 814, + [1352] = 958, + [1353] = 959, + [1354] = 731, + [1355] = 938, + [1356] = 928, + [1357] = 965, + [1358] = 940, + [1359] = 928, + [1360] = 959, + [1361] = 965, + [1362] = 931, + [1363] = 945, + [1364] = 958, + [1365] = 940, + [1366] = 957, + [1367] = 948, + [1368] = 929, + [1369] = 930, + [1370] = 945, + [1371] = 271, + [1372] = 932, + [1373] = 932, + [1374] = 933, + [1375] = 933, + [1376] = 930, + [1377] = 929, + [1378] = 957, + [1379] = 958, + [1380] = 959, + [1381] = 928, + [1382] = 965, + [1383] = 456, + [1384] = 931, + [1385] = 948, + [1386] = 457, + [1387] = 945, + [1388] = 933, + [1389] = 938, + [1390] = 938, + [1391] = 940, + [1392] = 940, + [1393] = 938, + [1394] = 933, + [1395] = 933, + [1396] = 932, + [1397] = 931, + [1398] = 932, + [1399] = 931, + [1400] = 1400, + [1401] = 931, + [1402] = 940, + [1403] = 453, + [1404] = 1276, + [1405] = 932, + [1406] = 228, + [1407] = 965, + [1408] = 928, + [1409] = 959, + [1410] = 1211, + [1411] = 471, + [1412] = 958, + [1413] = 957, + [1414] = 929, + [1415] = 232, + [1416] = 477, + [1417] = 930, + [1418] = 1276, + [1419] = 230, + [1420] = 965, + [1421] = 457, + [1422] = 928, + [1423] = 456, + [1424] = 959, + [1425] = 948, + [1426] = 443, + [1427] = 945, + [1428] = 948, + [1429] = 232, + [1430] = 446, + [1431] = 945, + [1432] = 230, + [1433] = 931, + [1434] = 948, + [1435] = 995, + [1436] = 940, + [1437] = 938, + [1438] = 933, + [1439] = 231, + [1440] = 933, + [1441] = 932, + [1442] = 933, + [1443] = 1443, + [1444] = 932, + [1445] = 938, + [1446] = 938, + [1447] = 452, + [1448] = 931, + [1449] = 940, + [1450] = 453, + [1451] = 965, + [1452] = 928, + [1453] = 959, + [1454] = 958, + [1455] = 957, + [1456] = 929, + [1457] = 930, + [1458] = 930, + [1459] = 929, + [1460] = 909, + [1461] = 908, + [1462] = 907, + [1463] = 958, + [1464] = 471, + [1465] = 957, + [1466] = 948, + [1467] = 232, + [1468] = 929, + [1469] = 945, + [1470] = 230, + [1471] = 933, + [1472] = 254, + [1473] = 930, + [1474] = 1064, + [1475] = 1064, + [1476] = 940, + [1477] = 231, + [1478] = 940, + [1479] = 938, + [1480] = 933, + [1481] = 932, + [1482] = 948, + [1483] = 945, + [1484] = 931, + [1485] = 940, + [1486] = 965, + [1487] = 928, + [1488] = 959, + [1489] = 958, + [1490] = 957, + [1491] = 929, + [1492] = 930, + [1493] = 938, + [1494] = 933, + [1495] = 932, + [1496] = 948, + [1497] = 938, + [1498] = 945, + [1499] = 965, + [1500] = 928, + [1501] = 228, + [1502] = 940, + [1503] = 938, + [1504] = 933, + [1505] = 932, + [1506] = 959, + [1507] = 931, + [1508] = 958, + [1509] = 965, + [1510] = 928, + [1511] = 959, + [1512] = 958, + [1513] = 957, + [1514] = 957, + [1515] = 929, + [1516] = 930, + [1517] = 929, + [1518] = 930, + [1519] = 957, + [1520] = 948, + [1521] = 945, + [1522] = 958, + [1523] = 945, + [1524] = 959, + [1525] = 995, + [1526] = 940, + [1527] = 938, + [1528] = 1211, + [1529] = 933, + [1530] = 932, + [1531] = 928, + [1532] = 931, + [1533] = 948, + [1534] = 965, + [1535] = 928, + [1536] = 959, + [1537] = 958, + [1538] = 957, + [1539] = 929, + [1540] = 930, + [1541] = 945, + [1542] = 940, + [1543] = 938, + [1544] = 1544, + [1545] = 948, + [1546] = 933, + [1547] = 945, + [1548] = 932, + [1549] = 931, + [1550] = 450, + [1551] = 451, + [1552] = 965, + [1553] = 940, + [1554] = 938, + [1555] = 933, + [1556] = 932, + [1557] = 928, + [1558] = 959, + [1559] = 948, + [1560] = 931, + [1561] = 958, + [1562] = 957, + [1563] = 965, [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, + [1565] = 959, + [1566] = 958, + [1567] = 957, + [1568] = 929, + [1569] = 930, + [1570] = 929, + [1571] = 930, + [1572] = 965, + [1573] = 948, + [1574] = 931, + [1575] = 945, + [1576] = 948, + [1577] = 945, + [1578] = 940, + [1579] = 940, + [1580] = 938, + [1581] = 933, + [1582] = 932, + [1583] = 938, + [1584] = 932, + [1585] = 945, + [1586] = 933, + [1587] = 931, + [1588] = 932, + [1589] = 965, + [1590] = 931, + [1591] = 928, + [1592] = 959, + [1593] = 948, + [1594] = 958, + [1595] = 957, + [1596] = 929, + [1597] = 945, + [1598] = 965, + [1599] = 957, + [1600] = 958, + [1601] = 959, + [1602] = 928, + [1603] = 965, + [1604] = 928, + [1605] = 948, + [1606] = 231, + [1607] = 959, + [1608] = 958, + [1609] = 931, + [1610] = 930, + [1611] = 957, + [1612] = 929, + [1613] = 867, + [1614] = 930, + [1615] = 932, + [1616] = 933, + [1617] = 938, + [1618] = 948, + [1619] = 945, + [1620] = 930, + [1621] = 940, + [1622] = 929, + [1623] = 940, + [1624] = 271, + [1625] = 262, + [1626] = 1626, + [1627] = 811, + [1628] = 823, + [1629] = 256, + [1630] = 1630, + [1631] = 824, + [1632] = 251, + [1633] = 235, + [1634] = 236, + [1635] = 255, + [1636] = 825, + [1637] = 245, + [1638] = 246, + [1639] = 1626, + [1640] = 848, + [1641] = 465, + [1642] = 448, + [1643] = 900, + [1644] = 250, + [1645] = 1626, + [1646] = 267, + [1647] = 238, + [1648] = 242, + [1649] = 237, + [1650] = 252, + [1651] = 247, + [1652] = 254, + [1653] = 731, + [1654] = 1626, + [1655] = 249, + [1656] = 255, + [1657] = 236, + [1658] = 235, + [1659] = 251, + [1660] = 256, + [1661] = 257, + [1662] = 258, + [1663] = 260, + [1664] = 248, + [1665] = 261, + [1666] = 244, + [1667] = 811, + [1668] = 228, + [1669] = 245, + [1670] = 246, + [1671] = 247, + [1672] = 248, + [1673] = 249, + [1674] = 250, + [1675] = 257, [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] = 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, + [1677] = 234, + [1678] = 266, + [1679] = 265, + [1680] = 258, + [1681] = 260, + [1682] = 264, + [1683] = 263, + [1684] = 262, + [1685] = 258, + [1686] = 257, + [1687] = 256, + [1688] = 255, + [1689] = 252, + [1690] = 238, + [1691] = 267, + [1692] = 245, + [1693] = 246, + [1694] = 247, + [1695] = 248, + [1696] = 249, + [1697] = 250, + [1698] = 253, + [1699] = 234, + [1700] = 266, + [1701] = 265, + [1702] = 264, + [1703] = 263, + [1704] = 261, + [1705] = 258, + [1706] = 257, + [1707] = 900, + [1708] = 256, + [1709] = 255, + [1710] = 254, + [1711] = 252, + [1712] = 238, + [1713] = 267, + [1714] = 262, + [1715] = 261, + [1716] = 245, + [1717] = 246, + [1718] = 263, + [1719] = 247, + [1720] = 248, + [1721] = 249, + [1722] = 250, + [1723] = 253, + [1724] = 234, + [1725] = 266, + [1726] = 265, + [1727] = 264, + [1728] = 263, + [1729] = 262, + [1730] = 264, + [1731] = 265, + [1732] = 266, + [1733] = 232, + [1734] = 234, + [1735] = 261, + [1736] = 230, + [1737] = 244, + [1738] = 261, + [1739] = 258, + [1740] = 253, + [1741] = 260, + [1742] = 257, + [1743] = 231, + [1744] = 250, + [1745] = 256, + [1746] = 251, + [1747] = 231, + [1748] = 249, + [1749] = 248, + [1750] = 235, + [1751] = 236, + [1752] = 247, + [1753] = 255, + [1754] = 254, + [1755] = 254, + [1756] = 246, + [1757] = 230, + [1758] = 252, + [1759] = 245, + [1760] = 232, + [1761] = 237, + [1762] = 238, + [1763] = 267, + [1764] = 245, + [1765] = 246, + [1766] = 247, + [1767] = 228, + [1768] = 242, + [1769] = 1202, + [1770] = 248, + [1771] = 249, + [1772] = 1772, + [1773] = 1183, + [1774] = 250, + [1775] = 244, + [1776] = 260, + [1777] = 1092, + [1778] = 253, + [1779] = 234, + [1780] = 266, + [1781] = 265, [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] = 861, - [1914] = 1396, - [1915] = 856, - [1916] = 857, - [1917] = 1917, - [1918] = 1912, + [1783] = 235, + [1784] = 236, + [1785] = 271, + [1786] = 264, + [1787] = 263, + [1788] = 1626, + [1789] = 262, + [1790] = 244, + [1791] = 237, + [1792] = 242, + [1793] = 1013, + [1794] = 271, + [1795] = 253, + [1796] = 267, + [1797] = 238, + [1798] = 242, + [1799] = 237, + [1800] = 252, + [1801] = 271, + [1802] = 255, + [1803] = 236, + [1804] = 235, + [1805] = 251, + [1806] = 256, + [1807] = 260, + [1808] = 257, + [1809] = 258, + [1810] = 260, + [1811] = 258, + [1812] = 234, + [1813] = 257, + [1814] = 256, + [1815] = 251, + [1816] = 266, + [1817] = 235, + [1818] = 236, + [1819] = 265, + [1820] = 261, + [1821] = 255, + [1822] = 252, + [1823] = 237, + [1824] = 448, + [1825] = 242, + [1826] = 244, + [1827] = 465, + [1828] = 238, + [1829] = 267, + [1830] = 262, + [1831] = 263, + [1832] = 264, + [1833] = 265, + [1834] = 266, + [1835] = 234, + [1836] = 253, + [1837] = 250, + [1838] = 261, + [1839] = 244, + [1840] = 262, + [1841] = 244, + [1842] = 263, + [1843] = 248, + [1844] = 247, + [1845] = 254, + [1846] = 260, + [1847] = 251, + [1848] = 235, + [1849] = 246, + [1850] = 236, + [1851] = 245, + [1852] = 264, + [1853] = 267, + [1854] = 237, + [1855] = 242, + [1856] = 238, + [1857] = 242, + [1858] = 237, + [1859] = 848, + [1860] = 252, + [1861] = 271, + [1862] = 731, + [1863] = 249, + [1864] = 255, + [1865] = 236, + [1866] = 235, + [1867] = 251, + [1868] = 256, + [1869] = 257, + [1870] = 258, + [1871] = 260, + [1872] = 252, + [1873] = 237, + [1874] = 271, + [1875] = 242, + [1876] = 238, + [1877] = 267, + [1878] = 261, + [1879] = 244, + [1880] = 262, + [1881] = 263, + [1882] = 1330, + [1883] = 264, + [1884] = 265, + [1885] = 266, + [1886] = 1263, + [1887] = 234, + [1888] = 825, + [1889] = 253, + [1890] = 250, + [1891] = 249, + [1892] = 1322, + [1893] = 248, + [1894] = 247, + [1895] = 824, + [1896] = 246, + [1897] = 245, + [1898] = 232, + [1899] = 230, + [1900] = 254, + [1901] = 1263, + [1902] = 231, + [1903] = 271, + [1904] = 228, + [1905] = 1322, + [1906] = 1330, + [1907] = 731, + [1908] = 232, + [1909] = 228, + [1910] = 230, + [1911] = 231, + [1912] = 823, + [1913] = 863, + [1914] = 255, + [1915] = 244, + [1916] = 863, + [1917] = 1322, + [1918] = 260, [1919] = 1919, - [1920] = 878, - [1921] = 1921, - [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, + [1920] = 251, + [1921] = 1330, + [1922] = 235, + [1923] = 236, + [1924] = 862, + [1925] = 1925, + [1926] = 237, + [1927] = 267, + [1928] = 242, + [1929] = 1925, + [1930] = 238, + [1931] = 1263, + [1932] = 1932, + [1933] = 1933, + [1934] = 1925, + [1935] = 1925, + [1936] = 1925, + [1937] = 1925, + [1938] = 1933, + [1939] = 1939, + [1940] = 1925, + [1941] = 1939, + [1942] = 1925, + [1943] = 1943, + [1944] = 1202, + [1945] = 814, + [1946] = 1946, + [1947] = 1925, + [1948] = 1183, + [1949] = 1925, + [1950] = 1925, + [1951] = 1092, + [1952] = 731, + [1953] = 862, + [1954] = 863, + [1955] = 867, + [1956] = 1925, + [1957] = 1013, + [1958] = 1932, + [1959] = 1925, + [1960] = 907, + [1961] = 908, + [1962] = 909, + [1963] = 1925, + [1964] = 1946, + [1965] = 855, + [1966] = 1919, + [1967] = 1946, + [1968] = 1925, + [1969] = 271, + [1970] = 254, + [1971] = 1263, + [1972] = 1925, + [1973] = 1925, + [1974] = 1925, + [1975] = 1202, + [1976] = 862, + [1977] = 1932, + [1978] = 1946, + [1979] = 252, + [1980] = 245, + [1981] = 246, + [1982] = 247, + [1983] = 248, + [1984] = 855, + [1985] = 249, + [1986] = 250, + [1987] = 253, + [1988] = 234, + [1989] = 266, + [1990] = 265, + [1991] = 1330, + [1992] = 1933, + [1993] = 264, + [1994] = 263, + [1995] = 262, + [1996] = 244, + [1997] = 1939, + [1998] = 261, + [1999] = 1322, + [2000] = 260, + [2001] = 258, + [2002] = 257, + [2003] = 1943, + [2004] = 256, + [2005] = 251, + [2006] = 1925, + [2007] = 235, + [2008] = 236, + [2009] = 255, + [2010] = 254, + [2011] = 1925, [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, + [2013] = 245, + [2014] = 252, + [2015] = 237, + [2016] = 246, + [2017] = 242, + [2018] = 238, + [2019] = 267, + [2020] = 247, + [2021] = 256, + [2022] = 257, + [2023] = 258, + [2024] = 261, + [2025] = 248, + [2026] = 855, + [2027] = 1925, + [2028] = 262, + [2029] = 1183, + [2030] = 264, + [2031] = 249, + [2032] = 2032, [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, + [2034] = 265, + [2035] = 253, + [2036] = 234, + [2037] = 266, + [2038] = 265, + [2039] = 1925, + [2040] = 264, + [2041] = 266, + [2042] = 234, + [2043] = 253, + [2044] = 250, + [2045] = 249, + [2046] = 262, + [2047] = 261, + [2048] = 258, + [2049] = 248, + [2050] = 247, + [2051] = 257, + [2052] = 246, + [2053] = 1925, + [2054] = 1263, + [2055] = 256, + [2056] = 245, + [2057] = 1092, + [2058] = 2058, + [2059] = 1013, + [2060] = 1925, + [2061] = 255, + [2062] = 254, + [2063] = 252, + [2064] = 1925, + [2065] = 271, + [2066] = 271, [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, + [2068] = 267, + [2069] = 244, + [2070] = 855, + [2071] = 2058, + [2072] = 1925, + [2073] = 242, + [2074] = 237, + [2075] = 260, + [2076] = 1925, + [2077] = 2077, + [2078] = 236, + [2079] = 235, + [2080] = 855, + [2081] = 1946, + [2082] = 1925, + [2083] = 251, + [2084] = 731, + [2085] = 251, + [2086] = 260, + [2087] = 1932, + [2088] = 235, + [2089] = 862, + [2090] = 863, + [2091] = 236, + [2092] = 244, + [2093] = 271, + [2094] = 263, + [2095] = 271, + [2096] = 245, + [2097] = 246, + [2098] = 1943, + [2099] = 247, + [2100] = 237, + [2101] = 242, + [2102] = 248, + [2103] = 1925, + [2104] = 267, + [2105] = 2077, + [2106] = 238, + [2107] = 249, + [2108] = 250, + [2109] = 253, + [2110] = 1925, + [2111] = 234, + [2112] = 266, + [2113] = 2032, + [2114] = 1772, + [2115] = 265, + [2116] = 2058, + [2117] = 814, + [2118] = 1925, + [2119] = 263, + [2120] = 252, + [2121] = 1925, + [2122] = 1919, + [2123] = 254, + [2124] = 1330, + [2125] = 255, + [2126] = 909, + [2127] = 908, + [2128] = 907, + [2129] = 1322, + [2130] = 256, + [2131] = 257, + [2132] = 258, + [2133] = 2077, + [2134] = 264, + [2135] = 2032, + [2136] = 261, + [2137] = 262, + [2138] = 263, + [2139] = 1925, + [2140] = 862, + [2141] = 867, + [2142] = 863, + [2143] = 1946, + [2144] = 2144, + [2145] = 271, + [2146] = 2146, + [2147] = 218, + [2148] = 1330, + [2149] = 222, + [2150] = 271, [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] = 2176, - [2177] = 2177, + [2152] = 271, + [2153] = 1322, + [2154] = 1330, + [2155] = 2144, + [2156] = 271, + [2157] = 2146, + [2158] = 2158, + [2159] = 222, + [2160] = 218, + [2161] = 1772, + [2162] = 2146, + [2163] = 1263, + [2164] = 2144, + [2165] = 1772, + [2166] = 2158, + [2167] = 2158, + [2168] = 1263, + [2169] = 1772, + [2170] = 218, + [2171] = 222, + [2172] = 218, + [2173] = 222, + [2174] = 218, + [2175] = 222, + [2176] = 218, + [2177] = 222, [2178] = 2178, [2179] = 2179, - [2180] = 2173, - [2181] = 2174, - [2182] = 2178, - [2183] = 2179, - [2184] = 2174, - [2185] = 2173, - [2186] = 2178, - [2187] = 2176, - [2188] = 2177, - [2189] = 2173, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 2181, + [2184] = 2181, + [2185] = 2185, + [2186] = 2186, + [2187] = 2180, + [2188] = 2178, + [2189] = 2182, [2190] = 2179, - [2191] = 2175, - [2192] = 2173, - [2193] = 2175, - [2194] = 2176, - [2195] = 2173, - [2196] = 2177, - [2197] = 2197, - [2198] = 2198, - [2199] = 2199, - [2200] = 2200, - [2201] = 2199, + [2191] = 2186, + [2192] = 2185, + [2193] = 2179, + [2194] = 2178, + [2195] = 2185, + [2196] = 2182, + [2197] = 2182, + [2198] = 2182, + [2199] = 2182, + [2200] = 2186, + [2201] = 2180, [2202] = 2202, - [2203] = 2199, - [2204] = 2198, - [2205] = 2205, - [2206] = 2206, + [2203] = 2202, + [2204] = 2204, + [2205] = 2204, + [2206] = 2204, [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, + [2212] = 2204, + [2213] = 2213, + [2214] = 2214, + [2215] = 2208, + [2216] = 2207, + [2217] = 2210, + [2218] = 2202, + [2219] = 2207, + [2220] = 2220, + [2221] = 2204, + [2222] = 2202, + [2223] = 2208, + [2224] = 2202, + [2225] = 2209, [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, + [2228] = 2209, + [2229] = 2204, + [2230] = 2230, + [2231] = 2210, + [2232] = 2210, + [2233] = 2226, + [2234] = 2226, + [2235] = 2211, + [2236] = 2211, + [2237] = 2237, + [2238] = 2220, + [2239] = 2213, + [2240] = 2214, + [2241] = 2237, [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, + [2243] = 2207, + [2244] = 2209, + [2245] = 2237, + [2246] = 2208, + [2247] = 2230, + [2248] = 2214, + [2249] = 2210, + [2250] = 2208, + [2251] = 2210, + [2252] = 2213, + [2253] = 2230, + [2254] = 2220, + [2255] = 2208, + [2256] = 2209, [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, + [2258] = 232, + [2259] = 2259, + [2260] = 230, + [2261] = 228, + [2262] = 2262, + [2263] = 231, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, + [2267] = 263, + [2268] = 266, + [2269] = 256, + [2270] = 255, + [2271] = 258, + [2272] = 261, + [2273] = 257, + [2274] = 242, + [2275] = 262, + [2276] = 244, + [2277] = 254, [2278] = 2278, - [2279] = 263, - [2280] = 250, - [2281] = 235, - [2282] = 240, - [2283] = 260, - [2284] = 237, - [2285] = 2285, - [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, + [2279] = 245, + [2280] = 2280, + [2281] = 2281, + [2282] = 234, + [2283] = 2283, + [2284] = 260, + [2285] = 237, + [2286] = 2286, + [2287] = 246, + [2288] = 252, + [2289] = 251, + [2290] = 238, + [2291] = 265, + [2292] = 264, + [2293] = 267, + [2294] = 235, + [2295] = 247, + [2296] = 248, + [2297] = 249, + [2298] = 250, + [2299] = 236, + [2300] = 253, [2301] = 2301, [2302] = 2302, - [2303] = 2301, + [2303] = 2303, [2304] = 2304, [2305] = 2305, [2306] = 2306, - [2307] = 1314, + [2307] = 2307, [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, + [2309] = 1322, + [2310] = 2310, + [2311] = 2310, + [2312] = 2301, + [2313] = 2313, + [2314] = 222, + [2315] = 1330, + [2316] = 2301, + [2317] = 2313, + [2318] = 218, + [2319] = 271, + [2320] = 2320, [2321] = 2321, - [2322] = 2322, - [2323] = 221, - [2324] = 2324, - [2325] = 2325, - [2326] = 2326, + [2322] = 2304, + [2323] = 2304, + [2324] = 2303, + [2325] = 2303, + [2326] = 2310, [2327] = 2327, - [2328] = 2305, - [2329] = 2308, - [2330] = 2316, - [2331] = 227, + [2328] = 2313, + [2329] = 2327, + [2330] = 2330, + [2331] = 2331, [2332] = 2332, - [2333] = 2308, - [2334] = 2325, + [2333] = 2306, + [2334] = 2308, [2335] = 2335, - [2336] = 2332, + [2336] = 2320, [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, + [2339] = 2330, + [2340] = 2340, + [2341] = 2337, + [2342] = 2342, + [2343] = 2335, + [2344] = 2305, + [2345] = 2335, + [2346] = 2330, + [2347] = 2332, + [2348] = 2330, + [2349] = 2332, + [2350] = 2330, + [2351] = 2342, + [2352] = 2330, + [2353] = 2340, [2354] = 2354, - [2355] = 2326, - [2356] = 2338, - [2357] = 2325, - [2358] = 2358, - [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] = 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, + [2355] = 2355, + [2356] = 2330, + [2357] = 230, + [2358] = 231, + [2359] = 2340, + [2360] = 2355, + [2361] = 2342, + [2362] = 228, + [2363] = 2327, + [2364] = 232, + [2365] = 2330, + [2366] = 2330, + [2367] = 2367, + [2368] = 2306, + [2369] = 2308, + [2370] = 2337, + [2371] = 2330, + [2372] = 228, + [2373] = 2355, + [2374] = 2307, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, + [2378] = 261, + [2379] = 2379, + [2380] = 2305, + [2381] = 260, + [2382] = 2382, + [2383] = 244, + [2384] = 254, + [2385] = 258, + [2386] = 262, + [2387] = 257, + [2388] = 2388, + [2389] = 256, + [2390] = 251, + [2391] = 2391, + [2392] = 2354, + [2393] = 235, + [2394] = 2307, + [2395] = 228, + [2396] = 264, + [2397] = 2320, + [2398] = 2398, + [2399] = 2307, + [2400] = 2308, + [2401] = 231, + [2402] = 2305, + [2403] = 2327, + [2404] = 236, + [2405] = 230, [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] = 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, + [2407] = 255, + [2408] = 265, + [2409] = 2320, + [2410] = 2306, + [2411] = 232, + [2412] = 2307, + [2413] = 448, + [2414] = 2338, + [2415] = 2331, + [2416] = 2375, + [2417] = 252, + [2418] = 266, + [2419] = 228, + [2420] = 237, + [2421] = 234, + [2422] = 242, + [2423] = 238, + [2424] = 2367, + [2425] = 253, + [2426] = 250, + [2427] = 249, + [2428] = 267, + [2429] = 2320, + [2430] = 248, + [2431] = 247, + [2432] = 2382, + [2433] = 246, + [2434] = 245, + [2435] = 2305, + [2436] = 254, + [2437] = 263, + [2438] = 465, + [2439] = 247, + [2440] = 2440, [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, + [2442] = 2441, + [2443] = 222, + [2444] = 2444, + [2445] = 218, + [2446] = 2441, + [2447] = 2441, + [2448] = 2354, + [2449] = 2367, + [2450] = 2331, + [2451] = 2441, + [2452] = 2338, + [2453] = 2376, + [2454] = 2391, + [2455] = 2398, + [2456] = 228, + [2457] = 2379, + [2458] = 232, + [2459] = 230, + [2460] = 2441, + [2461] = 2461, + [2462] = 2441, + [2463] = 231, + [2464] = 254, + [2465] = 2440, + [2466] = 2441, + [2467] = 2440, + [2468] = 2441, + [2469] = 2441, + [2470] = 2441, + [2471] = 2471, + [2472] = 271, + [2473] = 2440, + [2474] = 2444, + [2475] = 2441, + [2476] = 2441, [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, + [2478] = 2441, + [2479] = 2441, + [2480] = 731, + [2481] = 2441, + [2482] = 2482, + [2483] = 2444, + [2484] = 2440, + [2485] = 2444, + [2486] = 2441, + [2487] = 2441, + [2488] = 2441, + [2489] = 2440, + [2490] = 2382, + [2491] = 2444, + [2492] = 2354, + [2493] = 2367, + [2494] = 2375, + [2495] = 2331, + [2496] = 2338, + [2497] = 2441, [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] = 2560, - [2561] = 2561, - [2562] = 2561, - [2563] = 2557, - [2564] = 2557, - [2565] = 2561, - [2566] = 2561, - [2567] = 2557, - [2568] = 2557, + [2499] = 242, + [2500] = 2500, + [2501] = 237, + [2502] = 236, + [2503] = 2440, + [2504] = 235, + [2505] = 251, + [2506] = 2440, + [2507] = 244, + [2508] = 271, + [2509] = 261, + [2510] = 267, + [2511] = 238, + [2512] = 2444, + [2513] = 252, + [2514] = 255, + [2515] = 2441, + [2516] = 256, + [2517] = 257, + [2518] = 2302, + [2519] = 258, + [2520] = 262, + [2521] = 263, + [2522] = 264, + [2523] = 265, + [2524] = 266, + [2525] = 234, + [2526] = 253, + [2527] = 250, + [2528] = 249, + [2529] = 248, + [2530] = 246, + [2531] = 2440, + [2532] = 245, + [2533] = 230, + [2534] = 260, + [2535] = 232, + [2536] = 2441, + [2537] = 2444, + [2538] = 2377, + [2539] = 2376, + [2540] = 2391, + [2541] = 2441, + [2542] = 2471, + [2543] = 2441, + [2544] = 2441, + [2545] = 2388, + [2546] = 2398, + [2547] = 2379, + [2548] = 2441, + [2549] = 2440, + [2550] = 2441, + [2551] = 2444, + [2552] = 2444, + [2553] = 2444, + [2554] = 2441, + [2555] = 2441, + [2556] = 2440, + [2557] = 2441, + [2558] = 2441, + [2559] = 2441, + [2560] = 2441, + [2561] = 266, + [2562] = 252, + [2563] = 2563, + [2564] = 2564, + [2565] = 2564, + [2566] = 2563, + [2567] = 2564, + [2568] = 2563, [2569] = 2569, - [2570] = 2570, - [2571] = 2571, - [2572] = 2572, - [2573] = 2561, - [2574] = 2574, - [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] = 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] = 236, - [2614] = 234, - [2615] = 2615, - [2616] = 2561, - [2617] = 2561, - [2618] = 2612, - [2619] = 257, - [2620] = 2620, + [2570] = 2563, + [2571] = 2563, + [2572] = 2564, + [2573] = 2563, + [2574] = 2563, + [2575] = 2564, + [2576] = 2564, + [2577] = 2564, + [2578] = 2564, + [2579] = 254, + [2580] = 2563, + [2581] = 2563, + [2582] = 2564, + [2583] = 2563, + [2584] = 242, + [2585] = 237, + [2586] = 2563, + [2587] = 2564, + [2588] = 2564, + [2589] = 231, + [2590] = 2564, + [2591] = 236, + [2592] = 235, + [2593] = 230, + [2594] = 2569, + [2595] = 251, + [2596] = 260, + [2597] = 232, + [2598] = 2338, + [2599] = 2331, + [2600] = 2564, + [2601] = 244, + [2602] = 2375, + [2603] = 2563, + [2604] = 2367, + [2605] = 267, + [2606] = 2354, + [2607] = 238, + [2608] = 2564, + [2609] = 2382, + [2610] = 2564, + [2611] = 2563, + [2612] = 271, + [2613] = 2563, + [2614] = 255, + [2615] = 256, + [2616] = 257, + [2617] = 258, + [2618] = 2564, + [2619] = 261, + [2620] = 2564, [2621] = 2621, - [2622] = 2561, - [2623] = 2557, - [2624] = 2624, - [2625] = 2625, - [2626] = 2626, - [2627] = 239, - [2628] = 2557, - [2629] = 2629, - [2630] = 2630, - [2631] = 2561, - [2632] = 2557, - [2633] = 2633, - [2634] = 2634, - [2635] = 2557, - [2636] = 2561, - [2637] = 2561, - [2638] = 2358, - [2639] = 2639, - [2640] = 2640, - [2641] = 2641, - [2642] = 2642, - [2643] = 2561, - [2644] = 2644, - [2645] = 2645, - [2646] = 2491, - [2647] = 2645, - [2648] = 2648, - [2649] = 2557, - [2650] = 2561, - [2651] = 2557, - [2652] = 2652, - [2653] = 2653, - [2654] = 2561, - [2655] = 2557, - [2656] = 2557, - [2657] = 240, - [2658] = 2557, - [2659] = 241, + [2622] = 262, + [2623] = 2563, + [2624] = 2564, + [2625] = 2563, + [2626] = 263, + [2627] = 2564, + [2628] = 2563, + [2629] = 265, + [2630] = 234, + [2631] = 253, + [2632] = 250, + [2633] = 2563, + [2634] = 2564, + [2635] = 249, + [2636] = 248, + [2637] = 247, + [2638] = 246, + [2639] = 2563, + [2640] = 245, + [2641] = 2563, + [2642] = 2563, + [2643] = 2564, + [2644] = 2563, + [2645] = 2564, + [2646] = 1330, + [2647] = 2563, + [2648] = 1322, + [2649] = 2564, + [2650] = 2563, + [2651] = 2564, + [2652] = 2482, + [2653] = 2564, + [2654] = 2621, + [2655] = 1263, + [2656] = 2656, + [2657] = 2563, + [2658] = 2477, + [2659] = 2564, [2660] = 2660, - [2661] = 242, - [2662] = 271, - [2663] = 2557, - [2664] = 245, - [2665] = 2561, - [2666] = 2557, - [2667] = 2612, - [2668] = 2561, - [2669] = 2561, + [2661] = 2569, + [2662] = 2662, + [2663] = 2663, + [2664] = 2664, + [2665] = 2563, + [2666] = 2621, + [2667] = 2564, + [2668] = 2668, + [2669] = 2669, [2670] = 2670, - [2671] = 2561, - [2672] = 250, + [2671] = 2671, + [2672] = 2672, [2673] = 2673, - [2674] = 2645, + [2674] = 2621, [2675] = 2675, - [2676] = 2676, - [2677] = 2557, - [2678] = 227, - [2679] = 2561, - [2680] = 2557, - [2681] = 237, - [2682] = 267, - [2683] = 2561, - [2684] = 251, - [2685] = 229, - [2686] = 2557, - [2687] = 2557, + [2676] = 2563, + [2677] = 2677, + [2678] = 2678, + [2679] = 2679, + [2680] = 2563, + [2681] = 2681, + [2682] = 2564, + [2683] = 2683, + [2684] = 2684, + [2685] = 2563, + [2686] = 2686, + [2687] = 2687, [2688] = 2688, [2689] = 2689, - [2690] = 1255, - [2691] = 1314, - [2692] = 2561, - [2693] = 232, - [2694] = 2557, + [2690] = 2377, + [2691] = 2691, + [2692] = 2692, + [2693] = 2693, + [2694] = 2694, [2695] = 2695, - [2696] = 2365, - [2697] = 2561, - [2698] = 266, - [2699] = 2561, - [2700] = 2557, - [2701] = 243, - [2702] = 265, - [2703] = 2557, - [2704] = 263, - [2705] = 2561, + [2696] = 2564, + [2697] = 2697, + [2698] = 2698, + [2699] = 2699, + [2700] = 2376, + [2701] = 2391, + [2702] = 2702, + [2703] = 2703, + [2704] = 2704, + [2705] = 2705, [2706] = 2706, - [2707] = 2612, - [2708] = 2708, - [2709] = 2477, - [2710] = 261, - [2711] = 260, - [2712] = 259, - [2713] = 258, - [2714] = 2561, + [2707] = 2563, + [2708] = 2564, + [2709] = 2563, + [2710] = 2710, + [2711] = 264, + [2712] = 2712, + [2713] = 2713, + [2714] = 2563, [2715] = 2715, - [2716] = 252, + [2716] = 2564, [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] = 2729, - [2730] = 2653, - [2731] = 2728, - [2732] = 240, - [2733] = 2615, - [2734] = 2734, - [2735] = 241, + [2718] = 2718, + [2719] = 2719, + [2720] = 2720, + [2721] = 2564, + [2722] = 2722, + [2723] = 2723, + [2724] = 2563, + [2725] = 2564, + [2726] = 2564, + [2727] = 2379, + [2728] = 2398, + [2729] = 2563, + [2730] = 2388, + [2731] = 2731, + [2732] = 2732, + [2733] = 2733, + [2734] = 2706, + [2735] = 249, [2736] = 2736, - [2737] = 242, - [2738] = 271, - [2739] = 2739, - [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, + [2737] = 2664, + [2738] = 2663, + [2739] = 2662, + [2740] = 2660, + [2741] = 2668, + [2742] = 2669, + [2743] = 2670, + [2744] = 2744, + [2745] = 248, + [2746] = 247, + [2747] = 2747, + [2748] = 2748, + [2749] = 2477, + [2750] = 2750, + [2751] = 246, + [2752] = 245, + [2753] = 250, + [2754] = 2482, + [2755] = 253, + [2756] = 234, + [2757] = 266, + [2758] = 265, + [2759] = 264, + [2760] = 263, + [2761] = 2692, + [2762] = 2671, + [2763] = 262, [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] = 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] = 3065, - [3066] = 3066, - [3067] = 3067, - [3068] = 3068, - [3069] = 3069, - [3070] = 3070, - [3071] = 2995, + [2765] = 261, + [2766] = 258, + [2767] = 257, + [2768] = 2672, + [2769] = 256, + [2770] = 2673, + [2771] = 2771, + [2772] = 255, + [2773] = 2773, + [2774] = 271, + [2775] = 252, + [2776] = 238, + [2777] = 267, + [2778] = 2675, + [2779] = 244, + [2780] = 2771, + [2781] = 2677, + [2782] = 2678, + [2783] = 2679, + [2784] = 2681, + [2785] = 2683, + [2786] = 2786, + [2787] = 260, + [2788] = 2684, + [2789] = 251, + [2790] = 2733, + [2791] = 2732, + [2792] = 235, + [2793] = 2736, + [2794] = 2686, + [2795] = 2687, + [2796] = 2688, + [2797] = 236, + [2798] = 2748, + [2799] = 2747, + [2800] = 2764, + [2801] = 2731, + [2802] = 2689, + [2803] = 2691, + [2804] = 2693, + [2805] = 2805, + [2806] = 237, + [2807] = 242, + [2808] = 2750, + [2809] = 2723, + [2810] = 2722, + [2811] = 2771, + [2812] = 2736, + [2813] = 2750, + [2814] = 2694, + [2815] = 2695, + [2816] = 2697, + [2817] = 2698, + [2818] = 2750, + [2819] = 2744, + [2820] = 2736, + [2821] = 2720, + [2822] = 2764, + [2823] = 2715, + [2824] = 2824, + [2825] = 2719, + [2826] = 2744, + [2827] = 2736, + [2828] = 2699, + [2829] = 2718, + [2830] = 2771, + [2831] = 2717, + [2832] = 2702, + [2833] = 2656, + [2834] = 2713, + [2835] = 2703, + [2836] = 2712, + [2837] = 2744, + [2838] = 2710, + [2839] = 2704, + [2840] = 2771, + [2841] = 2705, + [2842] = 2786, + [2843] = 2843, + [2844] = 2843, + [2845] = 2845, + [2846] = 2845, + [2847] = 2845, + [2848] = 2843, + [2849] = 2843, + [2850] = 2850, + [2851] = 2845, + [2852] = 2731, + [2853] = 2850, + [2854] = 2850, + [2855] = 2843, + [2856] = 2850, + [2857] = 2843, + [2858] = 2843, + [2859] = 2850, + [2860] = 2850, + [2861] = 2843, + [2862] = 2843, + [2863] = 2845, + [2864] = 2732, + [2865] = 2843, + [2866] = 2843, + [2867] = 2850, + [2868] = 2850, + [2869] = 2845, + [2870] = 2845, + [2871] = 2688, + [2872] = 2684, + [2873] = 2845, + [2874] = 2843, + [2875] = 2845, + [2876] = 2850, + [2877] = 2672, + [2878] = 2850, + [2879] = 2683, + [2880] = 2843, + [2881] = 2845, + [2882] = 2681, + [2883] = 2843, + [2884] = 2850, + [2885] = 2843, + [2886] = 2845, + [2887] = 2843, + [2888] = 2845, + [2889] = 2850, + [2890] = 2843, + [2891] = 2850, + [2892] = 2845, + [2893] = 2689, + [2894] = 2850, + [2895] = 2843, + [2896] = 2845, + [2897] = 2850, + [2898] = 2850, + [2899] = 2843, + [2900] = 2850, + [2901] = 2850, + [2902] = 2845, + [2903] = 2692, + [2904] = 2843, + [2905] = 2850, + [2906] = 2843, + [2907] = 2850, + [2908] = 2843, + [2909] = 2850, + [2910] = 2850, + [2911] = 2843, + [2912] = 2850, + [2913] = 2673, + [2914] = 2691, + [2915] = 2482, + [2916] = 2679, + [2917] = 2843, + [2918] = 2693, + [2919] = 2850, + [2920] = 2477, + [2921] = 2694, + [2922] = 2845, + [2923] = 2695, + [2924] = 2850, + [2925] = 2678, + [2926] = 2697, + [2927] = 2723, + [2928] = 2843, + [2929] = 2845, + [2930] = 2698, + [2931] = 2850, + [2932] = 2699, + [2933] = 2702, + [2934] = 2845, + [2935] = 2845, + [2936] = 2687, + [2937] = 2722, + [2938] = 2733, + [2939] = 2845, + [2940] = 2845, + [2941] = 2843, + [2942] = 2703, + [2943] = 2850, + [2944] = 2677, + [2945] = 2660, + [2946] = 2845, + [2947] = 2675, + [2948] = 2717, + [2949] = 2845, + [2950] = 2845, + [2951] = 2704, + [2952] = 2843, + [2953] = 2845, + [2954] = 2705, + [2955] = 2850, + [2956] = 2850, + [2957] = 2656, + [2958] = 2843, + [2959] = 2662, + [2960] = 2843, + [2961] = 2671, + [2962] = 2670, + [2963] = 2843, + [2964] = 2719, + [2965] = 2706, + [2966] = 2850, + [2967] = 2843, + [2968] = 2663, + [2969] = 2713, + [2970] = 2845, + [2971] = 2850, + [2972] = 2843, + [2973] = 2712, + [2974] = 2843, + [2975] = 2664, + [2976] = 2710, + [2977] = 2845, + [2978] = 2845, + [2979] = 2845, + [2980] = 2845, + [2981] = 2718, + [2982] = 2845, + [2983] = 2843, + [2984] = 2850, + [2985] = 2850, + [2986] = 2850, + [2987] = 2686, + [2988] = 2843, + [2989] = 2668, + [2990] = 2850, + [2991] = 2720, + [2992] = 2715, + [2993] = 2845, + [2994] = 2669, + [2995] = 232, + [2996] = 2996, + [2997] = 2997, + [2998] = 230, + [2999] = 231, + [3000] = 228, + [3001] = 251, + [3002] = 253, + [3003] = 257, + [3004] = 258, + [3005] = 261, + [3006] = 262, + [3007] = 263, + [3008] = 260, + [3009] = 264, + [3010] = 265, + [3011] = 237, + [3012] = 266, + [3013] = 267, + [3014] = 234, + [3015] = 255, + [3016] = 256, + [3017] = 250, + [3018] = 244, + [3019] = 249, + [3020] = 248, + [3021] = 242, + [3022] = 235, + [3023] = 247, + [3024] = 246, + [3025] = 236, + [3026] = 245, + [3027] = 254, + [3028] = 252, + [3029] = 238, + [3030] = 3030, + [3031] = 222, + [3032] = 271, + [3033] = 218, + [3034] = 231, + [3035] = 248, + [3036] = 235, + [3037] = 242, + [3038] = 232, + [3039] = 264, + [3040] = 237, + [3041] = 261, + [3042] = 230, + [3043] = 246, + [3044] = 258, + [3045] = 236, + [3046] = 257, + [3047] = 256, + [3048] = 255, + [3049] = 254, + [3050] = 247, + [3051] = 252, + [3052] = 218, + [3053] = 238, + [3054] = 267, + [3055] = 228, + [3056] = 253, + [3057] = 222, + [3058] = 263, + [3059] = 2996, + [3060] = 2997, + [3061] = 251, + [3062] = 250, + [3063] = 249, + [3064] = 234, + [3065] = 262, + [3066] = 260, + [3067] = 265, + [3068] = 245, + [3069] = 244, + [3070] = 266, + [3071] = 3071, [3072] = 3072, [3073] = 3073, [3074] = 3074, [3075] = 3075, [3076] = 3076, [3077] = 3077, - [3078] = 271, + [3078] = 3078, [3079] = 3079, - [3080] = 3080, + [3080] = 3030, [3081] = 3081, [3082] = 3082, [3083] = 3083, - [3084] = 3084, + [3084] = 271, [3085] = 3085, [3086] = 3086, [3087] = 3087, [3088] = 3088, [3089] = 3089, [3090] = 3090, - [3091] = 3090, + [3091] = 3091, [3092] = 3092, - [3093] = 3090, - [3094] = 3090, - [3095] = 3092, - [3096] = 221, - [3097] = 3092, + [3093] = 3093, + [3094] = 3094, + [3095] = 3095, + [3096] = 3096, + [3097] = 3097, [3098] = 3098, - [3099] = 3090, - [3100] = 3100, - [3101] = 223, - [3102] = 3090, + [3099] = 3097, + [3100] = 3098, + [3101] = 3101, + [3102] = 3097, [3103] = 3103, [3104] = 3104, - [3105] = 3090, - [3106] = 3090, + [3105] = 3105, + [3106] = 3098, [3107] = 3107, - [3108] = 3092, + [3108] = 3108, [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, + [3110] = 3097, + [3111] = 3111, + [3112] = 3097, + [3113] = 3097, + [3114] = 3114, + [3115] = 3115, + [3116] = 3098, + [3117] = 3117, + [3118] = 218, + [3119] = 3119, + [3120] = 3098, + [3121] = 222, + [3122] = 3122, + [3123] = 3097, + [3124] = 3124, [3125] = 3125, - [3126] = 3092, - [3127] = 3092, - [3128] = 3090, + [3126] = 3098, + [3127] = 3097, + [3128] = 3097, [3129] = 3129, - [3130] = 3130, - [3131] = 3131, - [3132] = 3090, - [3133] = 3092, + [3130] = 3098, + [3131] = 3097, + [3132] = 3132, + [3133] = 3098, [3134] = 3134, - [3135] = 3135, + [3135] = 222, [3136] = 3136, [3137] = 3137, - [3138] = 3138, - [3139] = 3090, - [3140] = 3140, - [3141] = 3141, - [3142] = 3092, - [3143] = 3092, - [3144] = 3090, + [3138] = 218, + [3139] = 3139, + [3140] = 3097, + [3141] = 3097, + [3142] = 3098, + [3143] = 3143, + [3144] = 3098, [3145] = 3145, - [3146] = 3092, - [3147] = 3092, - [3148] = 3092, - [3149] = 3092, - [3150] = 3092, - [3151] = 3090, - [3152] = 221, - [3153] = 3092, + [3146] = 3098, + [3147] = 3147, + [3148] = 3148, + [3149] = 3097, + [3150] = 3150, + [3151] = 3098, + [3152] = 3098, + [3153] = 3153, [3154] = 3154, [3155] = 3155, - [3156] = 3090, - [3157] = 3092, - [3158] = 3092, - [3159] = 223, - [3160] = 3090, - [3161] = 3161, - [3162] = 3162, - [3163] = 3163, + [3156] = 3156, + [3157] = 3098, + [3158] = 3158, + [3159] = 3159, + [3160] = 3160, + [3161] = 3097, + [3162] = 3097, + [3163] = 3097, [3164] = 3164, - [3165] = 3092, + [3165] = 3165, [3166] = 3166, - [3167] = 3090, - [3168] = 3090, + [3167] = 3098, + [3168] = 3098, [3169] = 3169, - [3170] = 3170, + [3170] = 3098, [3171] = 3171, [3172] = 3172, [3173] = 3173, - [3174] = 3090, - [3175] = 3175, + [3174] = 3174, + [3175] = 3097, [3176] = 3176, - [3177] = 3177, - [3178] = 3090, - [3179] = 3179, + [3177] = 3097, + [3178] = 3097, + [3179] = 3098, [3180] = 3180, - [3181] = 3090, + [3181] = 3097, [3182] = 3182, [3183] = 3183, - [3184] = 3184, + [3184] = 3098, [3185] = 3185, - [3186] = 3186, - [3187] = 3090, + [3186] = 3097, + [3187] = 3098, [3188] = 3188, - [3189] = 3189, - [3190] = 3092, + [3189] = 3098, + [3190] = 3097, [3191] = 3191, - [3192] = 3090, - [3193] = 3092, + [3192] = 3192, + [3193] = 3193, [3194] = 3194, [3195] = 3195, - [3196] = 3196, - [3197] = 3092, - [3198] = 3198, + [3196] = 3097, + [3197] = 3097, + [3198] = 3098, [3199] = 3199, [3200] = 3200, - [3201] = 3090, - [3202] = 3202, + [3201] = 3098, + [3202] = 3098, [3203] = 3203, - [3204] = 3090, - [3205] = 3205, - [3206] = 3206, - [3207] = 3090, - [3208] = 3090, - [3209] = 3209, + [3204] = 3097, + [3205] = 3098, + [3206] = 3098, + [3207] = 3097, + [3208] = 3098, + [3209] = 3097, [3210] = 3210, [3211] = 3211, - [3212] = 3212, - [3213] = 3213, - [3214] = 3092, - [3215] = 3092, - [3216] = 3090, - [3217] = 3217, - [3218] = 3092, - [3219] = 3219, - [3220] = 3220, - [3221] = 3090, - [3222] = 3092, - [3223] = 3092, + [3212] = 3097, + [3213] = 3097, + [3214] = 3098, + [3215] = 3098, + [3216] = 3097, + [3217] = 3097, + [3218] = 3097, + [3219] = 3098, + [3220] = 3097, + [3221] = 3221, + [3222] = 3098, + [3223] = 3223, [3224] = 3224, - [3225] = 223, + [3225] = 3225, [3226] = 3226, - [3227] = 221, - [3228] = 3228, - [3229] = 3229, - [3230] = 3228, - [3231] = 3229, + [3227] = 3097, + [3228] = 3098, + [3229] = 3098, + [3230] = 3230, + [3231] = 3098, [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, + [3233] = 3233, + [3234] = 218, + [3235] = 222, + [3236] = 3236, + [3237] = 3237, + [3238] = 3236, + [3239] = 3236, + [3240] = 3240, + [3241] = 3236, + [3242] = 3240, + [3243] = 3237, + [3244] = 3236, + [3245] = 3240, + [3246] = 3237, + [3247] = 3236, + [3248] = 3240, + [3249] = 3237, + [3250] = 3236, + [3251] = 3237, + [3252] = 3237, + [3253] = 3236, + [3254] = 3237, + [3255] = 3236, + [3256] = 3240, + [3257] = 3240, + [3258] = 3236, + [3259] = 3237, + [3260] = 3240, + [3261] = 3237, + [3262] = 3240, + [3263] = 3237, + [3264] = 3237, + [3265] = 3236, + [3266] = 3236, + [3267] = 3240, + [3268] = 3240, + [3269] = 3240, + [3270] = 3236, + [3271] = 3240, + [3272] = 3237, + [3273] = 3240, + [3274] = 3240, + [3275] = 3237, + [3276] = 3237, + [3277] = 3236, + [3278] = 3240, + [3279] = 3237, + [3280] = 3236, + [3281] = 3236, + [3282] = 3236, + [3283] = 3240, + [3284] = 3240, + [3285] = 3237, + [3286] = 3240, + [3287] = 3236, + [3288] = 3237, + [3289] = 3240, + [3290] = 3240, + [3291] = 3237, + [3292] = 3237, + [3293] = 3237, + [3294] = 3236, + [3295] = 3236, + [3296] = 3237, + [3297] = 3240, + [3298] = 3237, + [3299] = 3240, + [3300] = 3236, + [3301] = 3237, + [3302] = 3240, + [3303] = 3240, + [3304] = 3237, + [3305] = 3236, + [3306] = 3237, + [3307] = 3237, + [3308] = 3240, + [3309] = 3240, + [3310] = 3237, + [3311] = 3236, + [3312] = 3236, + [3313] = 3237, + [3314] = 3240, + [3315] = 3236, + [3316] = 3237, + [3317] = 3237, + [3318] = 3236, + [3319] = 3240, + [3320] = 3240, + [3321] = 3236, + [3322] = 3237, + [3323] = 3236, + [3324] = 3237, + [3325] = 3240, + [3326] = 3236, + [3327] = 3236, + [3328] = 3236, + [3329] = 3240, + [3330] = 3240, + [3331] = 3236, + [3332] = 3332, [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] = 3395, - [3398] = 3398, - [3399] = 3395, - [3400] = 3396, - [3401] = 3396, + [3334] = 3334, + [3335] = 3335, + [3336] = 3332, + [3337] = 3334, + [3338] = 3332, + [3339] = 3334, + [3340] = 3332, + [3341] = 3332, + [3342] = 3332, + [3343] = 3332, + [3344] = 3334, + [3345] = 3332, + [3346] = 3334, + [3347] = 3334, + [3348] = 3334, + [3349] = 3332, + [3350] = 3332, + [3351] = 3334, + [3352] = 3334, + [3353] = 3334, + [3354] = 3334, + [3355] = 3334, + [3356] = 3334, + [3357] = 3335, + [3358] = 3332, + [3359] = 3334, + [3360] = 3334, + [3361] = 3334, + [3362] = 3334, + [3363] = 3335, + [3364] = 3332, + [3365] = 3332, + [3366] = 3332, + [3367] = 3332, + [3368] = 3332, + [3369] = 3332, + [3370] = 3332, + [3371] = 3332, + [3372] = 3372, + [3373] = 3332, + [3374] = 3334, + [3375] = 3332, + [3376] = 3332, + [3377] = 3334, + [3378] = 3332, + [3379] = 3334, + [3380] = 3334, + [3381] = 3332, + [3382] = 3332, + [3383] = 3334, + [3384] = 3334, + [3385] = 3332, + [3386] = 3332, + [3387] = 3334, + [3388] = 3334, + [3389] = 3332, + [3390] = 3335, + [3391] = 3332, + [3392] = 3334, + [3393] = 3334, + [3394] = 3332, + [3395] = 3334, + [3396] = 3334, + [3397] = 3334, + [3398] = 3334, + [3399] = 3332, + [3400] = 3334, + [3401] = 3332, [3402] = 3402, [3403] = 3403, - [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, + [3404] = 3402, + [3405] = 3405, + [3406] = 3402, + [3407] = 3403, + [3408] = 3408, + [3409] = 3403, + [3410] = 3410, + [3411] = 3411, + [3412] = 3411, + [3413] = 3410, + [3414] = 3410, + [3415] = 3415, + [3416] = 3411, + [3417] = 3417, + [3418] = 3417, + [3419] = 3417, + [3420] = 228, + [3421] = 238, + [3422] = 261, + [3423] = 255, + [3424] = 267, + [3425] = 257, + [3426] = 262, + [3427] = 3427, + [3428] = 263, + [3429] = 264, + [3430] = 3430, + [3431] = 3431, + [3432] = 265, + [3433] = 258, + [3434] = 256, + [3435] = 3435, + [3436] = 266, + [3437] = 232, + [3438] = 252, + [3439] = 234, + [3440] = 253, + [3441] = 231, + [3442] = 228, + [3443] = 250, [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, + [3446] = 3430, + [3447] = 3431, + [3448] = 3427, + [3449] = 3430, + [3450] = 3427, + [3451] = 3451, + [3452] = 3452, + [3453] = 3453, + [3454] = 3454, + [3455] = 3431, + [3456] = 254, + [3457] = 230, + [3458] = 245, + [3459] = 246, + [3460] = 247, + [3461] = 248, + [3462] = 249, + [3463] = 3463, + [3464] = 465, + [3465] = 267, + [3466] = 238, + [3467] = 242, + [3468] = 237, + [3469] = 252, + [3470] = 3452, + [3471] = 3471, + [3472] = 271, + [3473] = 255, + [3474] = 236, + [3475] = 235, + [3476] = 3471, + [3477] = 3471, + [3478] = 3478, + [3479] = 251, + [3480] = 256, + [3481] = 257, + [3482] = 267, + [3483] = 258, + [3484] = 260, + [3485] = 238, + [3486] = 255, + [3487] = 256, + [3488] = 3454, + [3489] = 257, + [3490] = 3445, + [3491] = 261, + [3492] = 3492, + [3493] = 3492, + [3494] = 244, + [3495] = 3444, + [3496] = 258, + [3497] = 262, + [3498] = 262, + [3499] = 263, + [3500] = 264, + [3501] = 3453, [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] = 3428, - [3530] = 3524, + [3503] = 266, + [3504] = 263, + [3505] = 234, + [3506] = 264, + [3507] = 232, + [3508] = 265, + [3509] = 230, + [3510] = 266, + [3511] = 234, + [3512] = 252, + [3513] = 253, + [3514] = 250, + [3515] = 3492, + [3516] = 250, + [3517] = 249, + [3518] = 245, + [3519] = 246, + [3520] = 253, + [3521] = 247, + [3522] = 246, + [3523] = 247, + [3524] = 248, + [3525] = 245, + [3526] = 248, + [3527] = 249, + [3528] = 731, + [3529] = 448, + [3530] = 3530, [3531] = 3531, [3532] = 3532, - [3533] = 3533, + [3533] = 228, [3534] = 3534, - [3535] = 3535, + [3535] = 3453, [3536] = 3536, [3537] = 3537, - [3538] = 3418, + [3538] = 3538, [3539] = 3539, [3540] = 3540, - [3541] = 3541, + [3541] = 3530, [3542] = 3542, - [3543] = 3535, + [3543] = 3543, [3544] = 3544, - [3545] = 3545, + [3545] = 3530, [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, + [3547] = 3445, + [3548] = 3453, + [3549] = 3549, + [3550] = 3546, + [3551] = 3454, + [3552] = 3552, + [3553] = 3553, + [3554] = 3554, + [3555] = 3554, + [3556] = 3546, + [3557] = 3557, + [3558] = 3444, + [3559] = 3452, + [3560] = 3453, + [3561] = 3445, + [3562] = 3539, [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, + [3564] = 3564, + [3565] = 3531, + [3566] = 3531, + [3567] = 3549, + [3568] = 3543, + [3569] = 3554, + [3570] = 3552, + [3571] = 3553, + [3572] = 3553, + [3573] = 3549, + [3574] = 3552, + [3575] = 3540, + [3576] = 3543, + [3577] = 3540, + [3578] = 3539, + [3579] = 3445, [3580] = 3580, - [3581] = 1255, + [3581] = 3581, [3582] = 3582, [3583] = 3583, [3584] = 3584, [3585] = 3585, - [3586] = 3582, + [3586] = 3586, [3587] = 3587, [3588] = 3588, [3589] = 3589, - [3590] = 3590, + [3590] = 1330, [3591] = 3591, - [3592] = 3592, + [3592] = 3585, [3593] = 3593, [3594] = 3594, - [3595] = 3584, + [3595] = 3587, [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, + [3597] = 3597, + [3598] = 3598, + [3599] = 3599, + [3600] = 3600, + [3601] = 3601, + [3602] = 3598, + [3603] = 232, + [3604] = 3601, + [3605] = 3605, + [3606] = 230, + [3607] = 3599, + [3608] = 228, + [3609] = 3600, [3610] = 3610, - [3611] = 3611, + [3611] = 3599, [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, + [3613] = 3613, + [3614] = 3585, + [3615] = 3601, + [3616] = 254, + [3617] = 3617, + [3618] = 3618, + [3619] = 3619, + [3620] = 1263, + [3621] = 3621, + [3622] = 3619, + [3623] = 3619, + [3624] = 3618, + [3625] = 228, + [3626] = 3626, + [3627] = 3627, + [3628] = 3628, + [3629] = 3626, + [3630] = 3627, + [3631] = 3627, + [3632] = 3626, + [3633] = 3617, + [3634] = 3618, + [3635] = 3598, + [3636] = 3587, + [3637] = 1322, [3638] = 3638, - [3639] = 3630, + [3639] = 3639, [3640] = 3640, - [3641] = 3637, - [3642] = 3642, - [3643] = 3635, - [3644] = 3634, + [3641] = 3638, + [3642] = 3640, + [3643] = 3640, + [3644] = 3644, [3645] = 3645, - [3646] = 3646, - [3647] = 3640, + [3646] = 3644, + [3647] = 3647, [3648] = 3648, - [3649] = 3630, - [3650] = 3633, + [3649] = 3645, + [3650] = 3638, [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, + [3652] = 3644, + [3653] = 3653, + [3654] = 3638, + [3655] = 3653, + [3656] = 3651, + [3657] = 3640, + [3658] = 3658, + [3659] = 3659, + [3660] = 3660, + [3661] = 3647, + [3662] = 3662, + [3663] = 3663, + [3664] = 3664, [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, + [3666] = 3644, + [3667] = 3640, + [3668] = 3644, + [3669] = 3647, + [3670] = 3647, + [3671] = 3644, + [3672] = 3640, + [3673] = 3647, + [3674] = 3647, + [3675] = 3647, + [3676] = 3638, + [3677] = 3653, + [3678] = 3651, [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, + [3680] = 3680, + [3681] = 3647, + [3682] = 3682, + [3683] = 3651, + [3684] = 3647, + [3685] = 3653, + [3686] = 3638, + [3687] = 3644, + [3688] = 3688, + [3689] = 3640, + [3690] = 3690, + [3691] = 3644, + [3692] = 3647, + [3693] = 254, + [3694] = 3651, + [3695] = 3645, + [3696] = 3640, + [3697] = 3653, + [3698] = 2265, + [3699] = 3699, + [3700] = 3653, + [3701] = 3638, [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, + [3703] = 3653, + [3704] = 3651, + [3705] = 3640, + [3706] = 3653, + [3707] = 3645, + [3708] = 3645, + [3709] = 3651, + [3710] = 3644, + [3711] = 3711, + [3712] = 3640, + [3713] = 3640, + [3714] = 3647, + [3715] = 3644, + [3716] = 3644, + [3717] = 3640, + [3718] = 3651, + [3719] = 3644, + [3720] = 3647, + [3721] = 3651, + [3722] = 3653, + [3723] = 3638, + [3724] = 3724, + [3725] = 3651, + [3726] = 3653, + [3727] = 3644, + [3728] = 3651, + [3729] = 3651, + [3730] = 3653, + [3731] = 3638, + [3732] = 3638, + [3733] = 3640, + [3734] = 3653, + [3735] = 3638, + [3736] = 3653, + [3737] = 3638, + [3738] = 3651, + [3739] = 3638, + [3740] = 3653, + [3741] = 3741, + [3742] = 3651, + [3743] = 3640, + [3744] = 3653, + [3745] = 3640, + [3746] = 3644, + [3747] = 3644, + [3748] = 3748, + [3749] = 3651, + [3750] = 3653, + [3751] = 3647, + [3752] = 3653, + [3753] = 3647, + [3754] = 3638, + [3755] = 3647, + [3756] = 3638, + [3757] = 2257, + [3758] = 3644, + [3759] = 3647, + [3760] = 3640, + [3761] = 3644, + [3762] = 3640, + [3763] = 3644, + [3764] = 3644, + [3765] = 3640, + [3766] = 3766, + [3767] = 3638, + [3768] = 3647, + [3769] = 3651, + [3770] = 231, + [3771] = 3771, + [3772] = 3638, + [3773] = 3651, + [3774] = 3645, + [3775] = 3653, + [3776] = 3638, + [3777] = 3638, + [3778] = 3653, + [3779] = 3779, + [3780] = 3780, [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, + [3782] = 3651, + [3783] = 3783, + [3784] = 3645, + [3785] = 3653, + [3786] = 3786, + [3787] = 3787, + [3788] = 3653, + [3789] = 230, + [3790] = 3651, + [3791] = 3638, + [3792] = 3647, + [3793] = 230, + [3794] = 3638, + [3795] = 3645, + [3796] = 3653, + [3797] = 3638, + [3798] = 3653, + [3799] = 2262, + [3800] = 3651, + [3801] = 3801, + [3802] = 232, + [3803] = 231, + [3804] = 3647, + [3805] = 3651, + [3806] = 3644, + [3807] = 3640, + [3808] = 3651, + [3809] = 3647, + [3810] = 3644, + [3811] = 3640, + [3812] = 3644, + [3813] = 3647, + [3814] = 3647, + [3815] = 3644, + [3816] = 3640, + [3817] = 3640, + [3818] = 3651, + [3819] = 3644, + [3820] = 3653, + [3821] = 3638, + [3822] = 3822, + [3823] = 3647, + [3824] = 3651, + [3825] = 3640, + [3826] = 3653, + [3827] = 3638, + [3828] = 3644, [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, + [3830] = 3830, + [3831] = 3638, + [3832] = 3638, + [3833] = 3653, + [3834] = 3834, + [3835] = 3651, + [3836] = 3653, + [3837] = 3638, + [3838] = 3651, + [3839] = 3647, + [3840] = 3644, + [3841] = 3841, + [3842] = 3842, + [3843] = 3640, + [3844] = 3651, + [3845] = 3651, + [3846] = 3638, + [3847] = 3653, + [3848] = 3640, + [3849] = 3647, + [3850] = 3651, + [3851] = 3644, [3852] = 3640, - [3853] = 3640, + [3853] = 3651, [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, + [3855] = 3653, + [3856] = 3638, + [3857] = 271, + [3858] = 2264, + [3859] = 3640, + [3860] = 3644, + [3861] = 3651, + [3862] = 3647, + [3863] = 3651, + [3864] = 3653, + [3865] = 3653, + [3866] = 3638, + [3867] = 3638, + [3868] = 3868, + [3869] = 3638, + [3870] = 3653, + [3871] = 3647, + [3872] = 3647, + [3873] = 3640, + [3874] = 3647, [3875] = 3875, - [3876] = 3640, - [3877] = 271, - [3878] = 3633, - [3879] = 3630, - [3880] = 3633, - [3881] = 3633, - [3882] = 3630, - [3883] = 3630, + [3876] = 3647, + [3877] = 3644, + [3878] = 3640, + [3879] = 3644, + [3880] = 3822, + [3881] = 3644, + [3882] = 3647, + [3883] = 3644, [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, + [3885] = 3640, + [3886] = 3647, + [3887] = 3645, + [3888] = 3644, + [3889] = 3645, + [3890] = 3651, + [3891] = 3653, + [3892] = 3638, + [3893] = 3653, + [3894] = 3647, + [3895] = 3651, + [3896] = 3644, + [3897] = 3640, + [3898] = 3638, + [3899] = 3724, + [3900] = 3647, + [3901] = 237, + [3902] = 264, + [3903] = 245, + [3904] = 244, + [3905] = 246, + [3906] = 3906, + [3907] = 247, + [3908] = 3908, + [3909] = 3909, + [3910] = 248, + [3911] = 249, + [3912] = 250, + [3913] = 3908, + [3914] = 253, + [3915] = 3908, + [3916] = 234, + [3917] = 3909, + [3918] = 3909, + [3919] = 3908, + [3920] = 266, + [3921] = 3909, + [3922] = 3908, + [3923] = 265, + [3924] = 3909, + [3925] = 242, + [3926] = 3908, + [3927] = 3927, + [3928] = 263, + [3929] = 3908, [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, + [3931] = 261, + [3932] = 3908, + [3933] = 258, + [3934] = 3934, + [3935] = 3935, + [3936] = 257, + [3937] = 3909, + [3938] = 3908, + [3939] = 256, + [3940] = 3908, + [3941] = 255, + [3942] = 3909, [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, + [3944] = 3944, + [3945] = 252, + [3946] = 238, + [3947] = 267, + [3948] = 3943, + [3949] = 3927, + [3950] = 3909, + [3951] = 3909, + [3952] = 3908, + [3953] = 3908, + [3954] = 3909, + [3955] = 2281, + [3956] = 3909, + [3957] = 3927, + [3958] = 3927, + [3959] = 3908, + [3960] = 242, + [3961] = 260, + [3962] = 3909, + [3963] = 3908, + [3964] = 3909, + [3965] = 251, + [3966] = 3927, + [3967] = 235, + [3968] = 236, + [3969] = 3909, + [3970] = 3943, + [3971] = 237, + [3972] = 3908, + [3973] = 3909, + [3974] = 3927, + [3975] = 3909, + [3976] = 3909, + [3977] = 262, + [3978] = 3909, + [3979] = 3909, + [3980] = 3927, + [3981] = 3908, + [3982] = 236, + [3983] = 235, + [3984] = 251, + [3985] = 260, + [3986] = 3908, + [3987] = 3909, + [3988] = 2280, + [3989] = 3908, + [3990] = 3906, + [3991] = 3909, + [3992] = 3927, + [3993] = 3908, + [3994] = 3930, + [3995] = 3908, + [3996] = 244, + [3997] = 3909, + [3998] = 3908, + [3999] = 3909, + [4000] = 3927, + [4001] = 3908, + [4002] = 3906, + [4003] = 3927, + [4004] = 3908, + [4005] = 3909, + [4006] = 3908, + [4007] = 3908, + [4008] = 3909, + [4009] = 3908, + [4010] = 245, + [4011] = 3909, + [4012] = 2283, + [4013] = 3909, + [4014] = 3908, + [4015] = 246, + [4016] = 247, + [4017] = 3934, + [4018] = 3908, + [4019] = 248, + [4020] = 3908, + [4021] = 2278, + [4022] = 249, + [4023] = 3909, + [4024] = 267, + [4025] = 3908, + [4026] = 238, + [4027] = 252, + [4028] = 271, + [4029] = 3935, + [4030] = 250, + [4031] = 253, + [4032] = 4032, + [4033] = 3908, + [4034] = 3909, + [4035] = 3935, + [4036] = 3908, + [4037] = 3930, + [4038] = 255, + [4039] = 256, + [4040] = 3909, + [4041] = 257, + [4042] = 3908, + [4043] = 258, + [4044] = 261, + [4045] = 3909, + [4046] = 3908, + [4047] = 262, + [4048] = 263, + [4049] = 264, + [4050] = 265, + [4051] = 266, + [4052] = 234, + [4053] = 3909, + [4054] = 3909, + [4055] = 3909, [4056] = 4056, - [4057] = 4053, - [4058] = 4056, + [4057] = 4057, + [4058] = 4058, [4059] = 4059, - [4060] = 4060, + [4060] = 4058, [4061] = 4061, [4062] = 4062, - [4063] = 4055, + [4063] = 4063, [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, + [4067] = 4067, + [4068] = 4068, + [4069] = 4069, + [4070] = 4070, + [4071] = 4070, + [4072] = 4067, + [4073] = 4073, + [4074] = 4061, + [4075] = 4062, + [4076] = 4064, + [4077] = 4066, + [4078] = 4078, + [4079] = 4069, + [4080] = 4080, + [4081] = 4081, + [4082] = 4081, + [4083] = 4056, + [4084] = 4056, + [4085] = 4085, + [4086] = 4078, + [4087] = 4080, + [4088] = 4058, + [4089] = 4058, + [4090] = 4081, + [4091] = 4063, + [4092] = 4073, + [4093] = 4059, + [4094] = 4057, + [4095] = 4056, + [4096] = 4065, + [4097] = 4078, + [4098] = 4073, + [4099] = 4070, + [4100] = 4067, + [4101] = 4058, + [4102] = 4081, + [4103] = 4081, + [4104] = 4085, + [4105] = 4056, + [4106] = 4078, + [4107] = 4058, + [4108] = 4081, + [4109] = 4109, + [4110] = 4081, + [4111] = 4085, + [4112] = 4056, + [4113] = 4078, + [4114] = 4058, + [4115] = 4081, + [4116] = 4116, + [4117] = 4085, + [4118] = 4056, [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, + [4120] = 4116, + [4121] = 4078, + [4122] = 4058, + [4123] = 4123, + [4124] = 4124, + [4125] = 4081, + [4126] = 4119, + [4127] = 4085, + [4128] = 4056, + [4129] = 4078, + [4130] = 4130, + [4131] = 4078, + [4132] = 4058, + [4133] = 4056, + [4134] = 4123, + [4135] = 4085, + [4136] = 4081, + [4137] = 4081, + [4138] = 4056, + [4139] = 4058, + [4140] = 4081, + [4141] = 4085, + [4142] = 4142, + [4143] = 4085, + [4144] = 4078, + [4145] = 4058, + [4146] = 4124, + [4147] = 4058, + [4148] = 4058, + [4149] = 4130, + [4150] = 4078, + [4151] = 4151, + [4152] = 4081, + [4153] = 4078, + [4154] = 4056, + [4155] = 4085, + [4156] = 4056, + [4157] = 4059, + [4158] = 4085, + [4159] = 4085, + [4160] = 4078, + [4161] = 4057, + [4162] = 4063, + [4163] = 4058, + [4164] = 4058, + [4165] = 4058, + [4166] = 4078, + [4167] = 4081, + [4168] = 4056, + [4169] = 4085, + [4170] = 4109, + [4171] = 4081, + [4172] = 4085, + [4173] = 4065, + [4174] = 4056, + [4175] = 4078, + [4176] = 4058, + [4177] = 4058, + [4178] = 4078, + [4179] = 4056, + [4180] = 4081, + [4181] = 4085, + [4182] = 4085, + [4183] = 4056, + [4184] = 4078, + [4185] = 4058, + [4186] = 4058, + [4187] = 4081, + [4188] = 4085, + [4189] = 4056, + [4190] = 4078, + [4191] = 4078, + [4192] = 4061, + [4193] = 4062, + [4194] = 4056, + [4195] = 4058, + [4196] = 4085, + [4197] = 4081, + [4198] = 4081, + [4199] = 4085, + [4200] = 4056, + [4201] = 4081, + [4202] = 4078, + [4203] = 4056, + [4204] = 4058, + [4205] = 4081, + [4206] = 4085, + [4207] = 4056, + [4208] = 4078, + [4209] = 4078, + [4210] = 4058, + [4211] = 4056, + [4212] = 4081, + [4213] = 4081, + [4214] = 4085, + [4215] = 4056, + [4216] = 4142, + [4217] = 4078, + [4218] = 4064, + [4219] = 4056, + [4220] = 4058, + [4221] = 4085, + [4222] = 4056, + [4223] = 4085, + [4224] = 4081, + [4225] = 4081, + [4226] = 4085, + [4227] = 4056, + [4228] = 4078, + [4229] = 4058, + [4230] = 4081, + [4231] = 4085, + [4232] = 4056, + [4233] = 4058, + [4234] = 4078, + [4235] = 4116, + [4236] = 4078, + [4237] = 4058, + [4238] = 4081, + [4239] = 4119, + [4240] = 4078, + [4241] = 4123, + [4242] = 4085, + [4243] = 4056, + [4244] = 4078, + [4245] = 4151, + [4246] = 4058, + [4247] = 4056, + [4248] = 4085, + [4249] = 4081, + [4250] = 4081, + [4251] = 4058, + [4252] = 4085, + [4253] = 4058, + [4254] = 4254, + [4255] = 4078, + [4256] = 4078, + [4257] = 4066, + [4258] = 4109, + [4259] = 4056, + [4260] = 4058, + [4261] = 4085, + [4262] = 4081, + [4263] = 4081, + [4264] = 4058, + [4265] = 4085, + [4266] = 4056, + [4267] = 4267, + [4268] = 4078, + [4269] = 4151, + [4270] = 4078, + [4271] = 4056, + [4272] = 4078, + [4273] = 4080, + [4274] = 4085, + [4275] = 4058, + [4276] = 4254, + [4277] = 4277, + [4278] = 4081, + [4279] = 4081, + [4280] = 4085, + [4281] = 4056, + [4282] = 4078, + [4283] = 4058, + [4284] = 4069, + [4285] = 4142, + [4286] = 4081, + [4287] = 4254, + [4288] = 4085, + [4289] = 4056, + [4290] = 4078, }; static inline bool sym_word_character_set_1(int32_t c) { @@ -6208,18 +6216,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(112) END_STATE(); case 8: - if (lookahead == '\n') SKIP(104) + if (lookahead == '\n') SKIP(103) END_STATE(); case 9: - if (lookahead == '\n') SKIP(101) + if (lookahead == '\n') SKIP(10) END_STATE(); case 10: - if (lookahead == '\n') SKIP(103) - END_STATE(); - case 11: - if (lookahead == '\n') SKIP(12) - END_STATE(); - case 12: if (lookahead == '\n') ADVANCE(237); if (lookahead == '!') ADVANCE(294); if (lookahead == '"') ADVANCE(397); @@ -6244,18 +6246,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(159); + if (lookahead == '\\') ADVANCE(157); if (lookahead == '^') ADVANCE(373); if (lookahead == '_') ADVANCE(442); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(279); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12) + lookahead == ' ') SKIP(10) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && lookahead != '(') ADVANCE(454); END_STATE(); + case 11: + if (lookahead == '\n') SKIP(104) + END_STATE(); + case 12: + if (lookahead == '\n') SKIP(101) + END_STATE(); case 13: if (lookahead == '\n') SKIP(83) END_STATE(); @@ -6263,24 +6271,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(110) END_STATE(); case 15: - if (lookahead == '\n') SKIP(74) + if (lookahead == '\n') SKIP(72) END_STATE(); case 16: if (lookahead == '\n') SKIP(80) END_STATE(); case 17: - if (lookahead == '\n') SKIP(77) + if (lookahead == '\n') SKIP(84) END_STATE(); case 18: - if (lookahead == '\n') SKIP(84) + if (lookahead == '\n') SKIP(88) END_STATE(); case 19: - if (lookahead == '\n') SKIP(88) + if (lookahead == '\n') SKIP(20) END_STATE(); case 20: - if (lookahead == '\n') SKIP(21) - END_STATE(); - case 21: if (lookahead == '\n') ADVANCE(238); if (lookahead == '!') ADVANCE(295); if (lookahead == '"') ADVANCE(397); @@ -6300,17 +6305,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(325); if (lookahead == '?') ADVANCE(379); if (lookahead == '@') ADVANCE(437); - if (lookahead == '\\') SKIP(167) + if (lookahead == '\\') SKIP(166) if (lookahead == '^') ADVANCE(374); if (lookahead == '_') ADVANCE(444); if (lookahead == '|') ADVANCE(281); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(21) + lookahead == ' ') SKIP(20) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); - case 22: + case 21: if (lookahead == '\n') ADVANCE(238); if (lookahead == '!') ADVANCE(142); if (lookahead == '#') ADVANCE(425); @@ -6334,7 +6339,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(374); if (lookahead == '|') ADVANCE(281); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(22) + lookahead == ' ') SKIP(21) + END_STATE(); + case 22: + if (lookahead == '\n') SKIP(77) END_STATE(); case 23: if (lookahead == '\n') SKIP(90) @@ -6349,25 +6357,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(115) END_STATE(); case 27: - if (lookahead == '\n') SKIP(92) + if (lookahead == '\n') SKIP(89) END_STATE(); case 28: - if (lookahead == '\n') SKIP(89) + if (lookahead == '\n') SKIP(92) END_STATE(); case 29: if (lookahead == '\n') SKIP(91) END_STATE(); case 30: - if (lookahead == '\n') SKIP(114) + if (lookahead == '\n') SKIP(93) END_STATE(); case 31: - if (lookahead == '\n') SKIP(93) + if (lookahead == '\n') SKIP(114) END_STATE(); case 32: if (lookahead == '\n') SKIP(125) END_STATE(); case 33: - if (lookahead == '\n') SKIP(22) + if (lookahead == '\n') SKIP(21) END_STATE(); case 34: if (lookahead == '\n') SKIP(94) @@ -6376,19 +6384,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(116) END_STATE(); case 36: - if (lookahead == '\n') SKIP(117) + if (lookahead == '\n') SKIP(96) END_STATE(); case 37: - if (lookahead == '\n') SKIP(96) + if (lookahead == '\n') SKIP(117) END_STATE(); case 38: - if (lookahead == '\n') SKIP(123) + if (lookahead == '\n') SKIP(97) END_STATE(); case 39: - if (lookahead == '\n') SKIP(124) + if (lookahead == '\n') SKIP(123) END_STATE(); case 40: - if (lookahead == '\n') SKIP(97) + if (lookahead == '\n') SKIP(124) END_STATE(); case 41: if (lookahead == '\n') SKIP(118) @@ -6445,7 +6453,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(322); if (lookahead == '?') ADVANCE(379); if (lookahead == '@') ADVANCE(437); - if (lookahead == '\\') SKIP(192) + if (lookahead == '\\') SKIP(193) if (lookahead == '_') ADVANCE(444); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || @@ -6508,7 +6516,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') SKIP(197) + if (lookahead == '\\') SKIP(198) if (lookahead == 'e') ADVANCE(149); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || @@ -6528,10 +6536,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(106) END_STATE(); case 53: - if (lookahead == '\n') SKIP(47) + if (lookahead == '\n') SKIP(107) END_STATE(); case 54: - if (lookahead == '\n') SKIP(107) + if (lookahead == '\n') SKIP(47) END_STATE(); case 55: if (lookahead == '\n') SKIP(113) @@ -6540,13 +6548,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(98) END_STATE(); case 57: - if (lookahead == '\n') SKIP(99) + if (lookahead == '\n') SKIP(127) END_STATE(); case 58: - if (lookahead == '\n') SKIP(50) + if (lookahead == '\n') SKIP(99) END_STATE(); case 59: - if (lookahead == '\n') SKIP(127) + if (lookahead == '\n') SKIP(50) END_STATE(); case 60: if (lookahead == '\n') SKIP(95) @@ -6582,15 +6590,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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: + case 72: if (lookahead == '\n') ADVANCE(240); if (lookahead == '"') ADVANCE(397); if (lookahead == '#') ADVANCE(425); @@ -6611,7 +6613,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(429); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74) + lookahead == ' ') SKIP(72) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(431); @@ -6619,6 +6621,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')') ADVANCE(454); END_STATE(); + case 73: + if (lookahead == '\n') SKIP(105) + END_STATE(); + case 74: + if (lookahead == '\n') SKIP(102) + END_STATE(); case 75: if (lookahead == '\n') SKIP(87) END_STATE(); @@ -6646,7 +6654,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(164); + if (lookahead == '\\') ADVANCE(167); if (lookahead == '_') ADVANCE(442); if (lookahead == '`') ADVANCE(420); if (lookahead == 'e') ADVANCE(429); @@ -6720,7 +6728,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(215); + if (lookahead == '\\') ADVANCE(213); if (lookahead == '^') ADVANCE(373); if (lookahead == '_') ADVANCE(442); if (lookahead == '`') ADVANCE(420); @@ -6881,7 +6889,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(165); + if (lookahead == '\\') ADVANCE(164); if (lookahead == '`') ADVANCE(420); if (lookahead == 'e') ADVANCE(450); if (lookahead == '|') ADVANCE(280); @@ -7005,7 +7013,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(166); + if (lookahead == '\\') ADVANCE(165); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || @@ -7024,11 +7032,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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(270); + if (lookahead == ';') ADVANCE(271); if (lookahead == '<') ADVANCE(315); + if (lookahead == '=') ADVANCE(446); if (lookahead == '>') ADVANCE(321); if (lookahead == '?') ADVANCE(380); if (lookahead == '@') ADVANCE(438); @@ -7036,7 +7046,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(173); + if (lookahead == '\\') ADVANCE(172); if (lookahead == '_') ADVANCE(442); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); @@ -7046,8 +7056,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(454); + lookahead != '(') ADVANCE(454); END_STATE(); case 90: if (lookahead == '\n') ADVANCE(254); @@ -7084,13 +7093,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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(270); if (lookahead == '<') ADVANCE(315); - if (lookahead == '=') ADVANCE(446); if (lookahead == '>') ADVANCE(321); if (lookahead == '?') ADVANCE(380); if (lookahead == '@') ADVANCE(438); @@ -7108,7 +7115,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && - lookahead != '(') ADVANCE(454); + lookahead != '(' && + lookahead != ')') ADVANCE(454); END_STATE(); case 92: if (lookahead == '\n') ADVANCE(256); @@ -7129,7 +7137,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(172); + if (lookahead == '\\') ADVANCE(173); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || @@ -7158,7 +7166,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(176); + if (lookahead == '\\') ADVANCE(175); if (lookahead == '_') ADVANCE(442); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); @@ -7246,7 +7254,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(182); + if (lookahead == '\\') ADVANCE(181); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || @@ -7273,7 +7281,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(185); + if (lookahead == '\\') ADVANCE(183); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || @@ -7325,7 +7333,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(196); + if (lookahead == '\\') ADVANCE(197); if (lookahead == '`') ADVANCE(420); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(99) @@ -7397,7 +7405,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(157); + if (lookahead == '\\') ADVANCE(159); if (lookahead == '^') ADVANCE(373); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(281); @@ -7431,7 +7439,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(214); + if (lookahead == '\\') ADVANCE(215); if (lookahead == '^') ADVANCE(373); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(281); @@ -7465,7 +7473,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(158); + if (lookahead == '\\') ADVANCE(156); if (lookahead == '^') ADVANCE(373); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(281); @@ -7498,8 +7506,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(156); - if (lookahead == ']') ADVANCE(396); + if (lookahead == '\\') ADVANCE(158); + if (lookahead == ']') ADVANCE(299); if (lookahead == '^') ADVANCE(373); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(281); @@ -7532,8 +7540,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(213); - if (lookahead == ']') ADVANCE(299); + if (lookahead == '\\') ADVANCE(214); + if (lookahead == ']') ADVANCE(396); if (lookahead == '^') ADVANCE(373); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(281); @@ -7599,7 +7607,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(193); + if (lookahead == '\\') ADVANCE(192); if (lookahead == '_') ADVANCE(442); if (lookahead == '`') ADVANCE(420); if (('\t' <= lookahead && lookahead <= '\r') || @@ -7793,7 +7801,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(325); if (lookahead == '?') ADVANCE(379); if (lookahead == '@') ADVANCE(437); - if (lookahead == '\\') SKIP(175) + if (lookahead == '\\') SKIP(176) if (lookahead == ']') ADVANCE(299); if (lookahead == '^') ADVANCE(374); if (lookahead == '_') ADVANCE(444); @@ -7884,7 +7892,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') SKIP(181) + if (lookahead == '\\') SKIP(182) if (lookahead == '^') ADVANCE(374); if (lookahead == '|') ADVANCE(281); if (('\t' <= lookahead && lookahead <= '\r') || @@ -7991,7 +7999,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(441); if (lookahead == '?') ADVANCE(379); if (lookahead == '@') ADVANCE(437); - if (lookahead == '\\') ADVANCE(208); + if (lookahead == '\\') ADVANCE(209); if (lookahead == '_') ADVANCE(444); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(403); @@ -8021,7 +8029,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == ']' || lookahead == '{') ADVANCE(395); - if (lookahead == '\\') ADVANCE(183); + if (lookahead == '\\') ADVANCE(184); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(278); if (lookahead == '}') ADVANCE(289); @@ -8049,7 +8057,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == ']' || lookahead == '{') ADVANCE(395); - if (lookahead == '\\') ADVANCE(184); + if (lookahead == '\\') ADVANCE(185); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(278); if (lookahead == '}') ADVANCE(289); @@ -8123,7 +8131,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(198); + if (lookahead == '\\') ADVANCE(196); if (lookahead == '`') ADVANCE(420); if (lookahead == 'e') ADVANCE(450); if (('\t' <= lookahead && lookahead <= '\r') || @@ -8232,7 +8240,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(269); if (lookahead == '<') ADVANCE(316); if (lookahead == '>') ADVANCE(322); - if (lookahead == '\\') ADVANCE(209); + if (lookahead == '\\') ADVANCE(208); if (lookahead == '{') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(133) @@ -8336,26 +8344,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 156: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(104) + lookahead == ' ') SKIP(103) if (lookahead == '\r') SKIP(8) if (lookahead != 0) ADVANCE(454); END_STATE(); case 157: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(101) + lookahead == ' ') SKIP(10) if (lookahead == '\r') SKIP(9) if (lookahead != 0) ADVANCE(454); END_STATE(); case 158: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(103) - if (lookahead == '\r') SKIP(10) + lookahead == ' ') SKIP(104) + if (lookahead == '\r') SKIP(11) if (lookahead != 0) ADVANCE(454); END_STATE(); case 159: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(12) - if (lookahead == '\r') SKIP(11) + lookahead == ' ') SKIP(101) + if (lookahead == '\r') SKIP(12) if (lookahead != 0) ADVANCE(454); END_STATE(); case 160: @@ -8372,7 +8380,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 162: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(74) + lookahead == ' ') SKIP(72) if (lookahead == '\r') SKIP(15) if (lookahead != 0) ADVANCE(454); END_STATE(); @@ -8384,26 +8392,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 164: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(77) + lookahead == ' ') SKIP(84) if (lookahead == '\r') SKIP(17) if (lookahead != 0) ADVANCE(454); END_STATE(); case 165: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(84) + lookahead == ' ') SKIP(88) if (lookahead == '\r') SKIP(18) if (lookahead != 0) ADVANCE(454); END_STATE(); case 166: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(88) + lookahead == ' ') SKIP(20) if (lookahead == '\r') SKIP(19) - if (lookahead != 0) ADVANCE(454); END_STATE(); case 167: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(21) - if (lookahead == '\r') SKIP(20) + lookahead == ' ') SKIP(77) + if (lookahead == '\r') SKIP(22) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 168: if (('\t' <= lookahead && lookahead <= '\f') || @@ -8430,13 +8438,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 172: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(92) + lookahead == ' ') SKIP(89) if (lookahead == '\r') SKIP(27) if (lookahead != 0) ADVANCE(454); END_STATE(); case 173: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(89) + lookahead == ' ') SKIP(92) if (lookahead == '\r') SKIP(28) if (lookahead != 0) ADVANCE(454); END_STATE(); @@ -8448,14 +8456,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 175: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(114) + lookahead == ' ') SKIP(93) if (lookahead == '\r') SKIP(30) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 176: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(93) + lookahead == ' ') SKIP(114) if (lookahead == '\r') SKIP(31) - if (lookahead != 0) ADVANCE(454); END_STATE(); case 177: if (('\t' <= lookahead && lookahead <= '\f') || @@ -8465,7 +8473,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 178: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(22) + lookahead == ' ') SKIP(21) if (lookahead == '\r') SKIP(33) END_STATE(); case 179: @@ -8481,30 +8489,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 181: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(117) + lookahead == ' ') SKIP(96) if (lookahead == '\r') SKIP(36) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 182: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(96) + lookahead == ' ') SKIP(117) if (lookahead == '\r') SKIP(37) - if (lookahead != 0) ADVANCE(454); END_STATE(); case 183: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(123) + lookahead == ' ') SKIP(97) if (lookahead == '\r') SKIP(38) if (lookahead != 0) ADVANCE(454); END_STATE(); case 184: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(124) + lookahead == ' ') SKIP(123) if (lookahead == '\r') SKIP(39) if (lookahead != 0) ADVANCE(454); END_STATE(); case 185: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(97) + lookahead == ' ') SKIP(124) if (lookahead == '\r') SKIP(40) if (lookahead != 0) ADVANCE(454); END_STATE(); @@ -8543,14 +8551,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 192: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(47) + lookahead == ' ') SKIP(107) if (lookahead == '\r') SKIP(53) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 193: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(107) + lookahead == ' ') SKIP(47) if (lookahead == '\r') SKIP(54) - if (lookahead != 0) ADVANCE(454); END_STATE(); case 194: if (('\t' <= lookahead && lookahead <= '\f') || @@ -8566,20 +8574,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 196: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(99) + lookahead == ' ') SKIP(127) if (lookahead == '\r') SKIP(57) if (lookahead != 0) ADVANCE(454); END_STATE(); case 197: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(50) + lookahead == ' ') SKIP(99) if (lookahead == '\r') SKIP(58) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 198: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(127) + lookahead == ' ') SKIP(50) if (lookahead == '\r') SKIP(59) - if (lookahead != 0) ADVANCE(454); END_STATE(); case 199: if (('\t' <= lookahead && lookahead <= '\f') || @@ -8633,17 +8641,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(405); END_STATE(); case 208: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(403); - if (lookahead == '\r') ADVANCE(401); - if (lookahead != 0) ADVANCE(405); - END_STATE(); - case 209: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(133) if (lookahead == '\r') SKIP(67) if (lookahead != 0) ADVANCE(454); END_STATE(); + case 209: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(403); + if (lookahead == '\r') ADVANCE(401); + if (lookahead != 0) ADVANCE(405); + END_STATE(); case 210: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(132) @@ -8662,20 +8670,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 213: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(105) + lookahead == ' ') SKIP(79) if (lookahead == '\r') SKIP(71) if (lookahead != 0) ADVANCE(454); END_STATE(); case 214: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(102) - if (lookahead == '\r') SKIP(72) + lookahead == ' ') SKIP(105) + if (lookahead == '\r') SKIP(73) if (lookahead != 0) ADVANCE(454); END_STATE(); case 215: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(79) - if (lookahead == '\r') SKIP(73) + lookahead == ' ') SKIP(102) + if (lookahead == '\r') SKIP(74) if (lookahead != 0) ADVANCE(454); END_STATE(); case 216: @@ -8792,7 +8800,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(166); + if (lookahead == '\\') ADVANCE(165); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || @@ -8805,7 +8813,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 227: if (eof) ADVANCE(235); - if (lookahead == '\n') ADVANCE(255); + if (lookahead == '\n') ADVANCE(253); if (lookahead == '!') ADVANCE(296); if (lookahead == '"') ADVANCE(397); if (lookahead == '#') ADVANCE(415); @@ -8826,7 +8834,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(174); + if (lookahead == '\\') ADVANCE(172); if (lookahead == '_') ADVANCE(442); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); @@ -8858,7 +8866,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(172); + if (lookahead == '\\') ADVANCE(173); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || @@ -8888,7 +8896,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(176); + if (lookahead == '\\') ADVANCE(175); if (lookahead == '_') ADVANCE(442); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); @@ -8918,7 +8926,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(395); - if (lookahead == '\\') ADVANCE(185); + if (lookahead == '\\') ADVANCE(183); if (lookahead == '`') ADVANCE(420); if (lookahead == '|') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || @@ -8987,7 +8995,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(237); if (lookahead == '-') ADVANCE(343); - if (lookahead == '\\') ADVANCE(159); + if (lookahead == '\\') ADVANCE(157); END_STATE(); case 238: ACCEPT_TOKEN(anon_sym_LF); @@ -9008,7 +9016,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(241); if (lookahead == '-') ADVANCE(345); - if (lookahead == '\\') ADVANCE(164); + if (lookahead == '\\') ADVANCE(167); END_STATE(); case 242: ACCEPT_TOKEN(anon_sym_LF); @@ -9022,7 +9030,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(243); if (lookahead == '-') ADVANCE(343); - if (lookahead == '\\') ADVANCE(215); + if (lookahead == '\\') ADVANCE(213); END_STATE(); case 244: ACCEPT_TOKEN(anon_sym_LF); @@ -9054,7 +9062,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(248); if (lookahead == '-') ADVANCE(452); - if (lookahead == '\\') ADVANCE(165); + if (lookahead == '\\') ADVANCE(164); END_STATE(); case 249: ACCEPT_TOKEN(anon_sym_LF); @@ -9080,13 +9088,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(252); if (lookahead == '-') ADVANCE(452); - if (lookahead == '\\') ADVANCE(166); + if (lookahead == '\\') ADVANCE(165); END_STATE(); case 253: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(253); if (lookahead == '-') ADVANCE(345); - if (lookahead == '\\') ADVANCE(173); + if (lookahead == '\\') ADVANCE(172); END_STATE(); case 254: ACCEPT_TOKEN(anon_sym_LF); @@ -9104,13 +9112,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(256); if (lookahead == '-') ADVANCE(452); - if (lookahead == '\\') ADVANCE(172); + if (lookahead == '\\') ADVANCE(173); END_STATE(); case 257: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(257); if (lookahead == '-') ADVANCE(345); - if (lookahead == '\\') ADVANCE(176); + if (lookahead == '\\') ADVANCE(175); END_STATE(); case 258: ACCEPT_TOKEN(anon_sym_LF); @@ -9128,13 +9136,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(260); if (lookahead == '-') ADVANCE(452); - if (lookahead == '\\') ADVANCE(182); + if (lookahead == '\\') ADVANCE(181); END_STATE(); case 261: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(261); if (lookahead == '-') ADVANCE(452); - if (lookahead == '\\') ADVANCE(185); + if (lookahead == '\\') ADVANCE(183); END_STATE(); case 262: ACCEPT_TOKEN(anon_sym_LF); @@ -9146,7 +9154,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(263); if (lookahead == '-') ADVANCE(452); - if (lookahead == '\\') ADVANCE(196); + if (lookahead == '\\') ADVANCE(197); END_STATE(); case 264: ACCEPT_TOKEN(anon_sym_in); @@ -9798,7 +9806,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(441); if (lookahead == '?') ADVANCE(379); if (lookahead == '@') ADVANCE(437); - if (lookahead == '\\') ADVANCE(208); + if (lookahead == '\\') ADVANCE(209); if (lookahead == '_') ADVANCE(444); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(403); @@ -10491,11 +10499,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [39] = {.lex_state = 78, .external_lex_state = 3}, [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}, + [43] = {.lex_state = 231, .external_lex_state = 2}, [44] = {.lex_state = 231, .external_lex_state = 2}, [45] = {.lex_state = 111, .external_lex_state = 2}, [46] = {.lex_state = 111, .external_lex_state = 2}, @@ -10530,14 +10538,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [78] = {.lex_state = 112, .external_lex_state = 4}, [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}, + [85] = {.lex_state = 112, .external_lex_state = 4}, [86] = {.lex_state = 231, .external_lex_state = 2}, [87] = {.lex_state = 231, .external_lex_state = 2}, [88] = {.lex_state = 231, .external_lex_state = 2}, @@ -10551,11 +10559,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [99] = {.lex_state = 231, .external_lex_state = 2}, [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}, + [103] = {.lex_state = 231, .external_lex_state = 2}, [104] = {.lex_state = 231, .external_lex_state = 2}, [105] = {.lex_state = 231, .external_lex_state = 2}, [106] = {.lex_state = 231, .external_lex_state = 2}, @@ -10563,9 +10571,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [111] = {.lex_state = 112, .external_lex_state = 4}, [112] = {.lex_state = 231, .external_lex_state = 2}, - [113] = {.lex_state = 231, .external_lex_state = 2}, + [113] = {.lex_state = 112, .external_lex_state = 4}, [114] = {.lex_state = 231, .external_lex_state = 2}, [115] = {.lex_state = 231, .external_lex_state = 2}, [116] = {.lex_state = 231, .external_lex_state = 2}, @@ -10606,18 +10614,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [154] = {.lex_state = 112, .external_lex_state = 4}, [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}, + [158] = {.lex_state = 112, .external_lex_state = 4}, [159] = {.lex_state = 231, .external_lex_state = 2}, - [160] = {.lex_state = 112, .external_lex_state = 4}, - [161] = {.lex_state = 112, .external_lex_state = 4}, + [160] = {.lex_state = 231, .external_lex_state = 2}, + [161] = {.lex_state = 231, .external_lex_state = 2}, [162] = {.lex_state = 231, .external_lex_state = 2}, - [163] = {.lex_state = 231, .external_lex_state = 2}, + [163] = {.lex_state = 112, .external_lex_state = 4}, [164] = {.lex_state = 231, .external_lex_state = 2}, - [165] = {.lex_state = 112, .external_lex_state = 4}, + [165] = {.lex_state = 231, .external_lex_state = 2}, [166] = {.lex_state = 231, .external_lex_state = 2}, [167] = {.lex_state = 231, .external_lex_state = 2}, [168] = {.lex_state = 231, .external_lex_state = 2}, @@ -10632,14 +10640,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [180] = {.lex_state = 231, .external_lex_state = 2}, [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}, + [187] = {.lex_state = 231, .external_lex_state = 2}, [188] = {.lex_state = 231, .external_lex_state = 2}, [189] = {.lex_state = 231, .external_lex_state = 2}, [190] = {.lex_state = 231, .external_lex_state = 2}, @@ -10669,81 +10677,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [217] = {.lex_state = 103, .external_lex_state = 6}, + [218] = {.lex_state = 10, .external_lex_state = 7}, + [219] = {.lex_state = 104, .external_lex_state = 8}, + [220] = {.lex_state = 105, .external_lex_state = 6}, + [221] = {.lex_state = 101, .external_lex_state = 6}, + [222] = {.lex_state = 10, .external_lex_state = 7}, + [223] = {.lex_state = 102, .external_lex_state = 6}, + [224] = {.lex_state = 79, .external_lex_state = 7}, + [225] = {.lex_state = 79, .external_lex_state = 7}, [226] = {.lex_state = 83, .external_lex_state = 3}, - [227] = {.lex_state = 83, .external_lex_state = 3}, + [227] = {.lex_state = 87, .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}, + [231] = {.lex_state = 83, .external_lex_state = 3}, [232] = {.lex_state = 83, .external_lex_state = 3}, - [233] = {.lex_state = 83, .external_lex_state = 3}, + [233] = {.lex_state = 87, .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}, + [239] = {.lex_state = 87, .external_lex_state = 3}, + [240] = {.lex_state = 87, .external_lex_state = 3}, + [241] = {.lex_state = 87, .external_lex_state = 3}, [242] = {.lex_state = 83, .external_lex_state = 3}, - [243] = {.lex_state = 83, .external_lex_state = 8}, + [243] = {.lex_state = 87, .external_lex_state = 3}, [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}, + [247] = {.lex_state = 83, .external_lex_state = 3}, + [248] = {.lex_state = 83, .external_lex_state = 3}, + [249] = {.lex_state = 83, .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}, + [254] = {.lex_state = 83, .external_lex_state = 7}, [255] = {.lex_state = 83, .external_lex_state = 3}, - [256] = {.lex_state = 87, .external_lex_state = 3}, + [256] = {.lex_state = 83, .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}, + [259] = {.lex_state = 83, .external_lex_state = 7}, [260] = {.lex_state = 83, .external_lex_state = 3}, [261] = {.lex_state = 83, .external_lex_state = 3}, - [262] = {.lex_state = 87, .external_lex_state = 3}, + [262] = {.lex_state = 83, .external_lex_state = 3}, [263] = {.lex_state = 83, .external_lex_state = 3}, - [264] = {.lex_state = 83, .external_lex_state = 8}, + [264] = {.lex_state = 83, .external_lex_state = 3}, [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}, + [269] = {.lex_state = 87, .external_lex_state = 3}, [270] = {.lex_state = 87, .external_lex_state = 3}, - [271] = {.lex_state = 83, .external_lex_state = 8}, + [271] = {.lex_state = 83, .external_lex_state = 7}, [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}, + [278] = {.lex_state = 83, .external_lex_state = 7}, [279] = {.lex_state = 87, .external_lex_state = 3}, [280] = {.lex_state = 87, .external_lex_state = 3}, - [281] = {.lex_state = 83, .external_lex_state = 8}, + [281] = {.lex_state = 87, .external_lex_state = 3}, [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}, + [287] = {.lex_state = 87, .external_lex_state = 7}, [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}, + [290] = {.lex_state = 87, .external_lex_state = 3}, + [291] = {.lex_state = 87, .external_lex_state = 7}, [292] = {.lex_state = 87, .external_lex_state = 3}, [293] = {.lex_state = 87, .external_lex_state = 3}, [294] = {.lex_state = 87, .external_lex_state = 3}, @@ -10752,748 +10760,748 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [300] = {.lex_state = 87, .external_lex_state = 7}, + [301] = {.lex_state = 87, .external_lex_state = 7}, [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}, + [304] = {.lex_state = 111, .external_lex_state = 9}, + [305] = {.lex_state = 111, .external_lex_state = 9}, + [306] = {.lex_state = 72, .external_lex_state = 10}, + [307] = {.lex_state = 72, .external_lex_state = 10}, + [308] = {.lex_state = 231, .external_lex_state = 9}, + [309] = {.lex_state = 72, .external_lex_state = 10}, + [310] = {.lex_state = 231, .external_lex_state = 9}, + [311] = {.lex_state = 80, .external_lex_state = 10}, + [312] = {.lex_state = 80, .external_lex_state = 10}, + [313] = {.lex_state = 80, .external_lex_state = 10}, + [314] = {.lex_state = 231, .external_lex_state = 9}, + [315] = {.lex_state = 84, .external_lex_state = 7}, + [316] = {.lex_state = 84, .external_lex_state = 7}, + [317] = {.lex_state = 84, .external_lex_state = 7}, + [318] = {.lex_state = 226, .external_lex_state = 10}, + [319] = {.lex_state = 226, .external_lex_state = 10}, + [320] = {.lex_state = 20, .external_lex_state = 11}, + [321] = {.lex_state = 77, .external_lex_state = 7}, + [322] = {.lex_state = 20, .external_lex_state = 11}, + [323] = {.lex_state = 226, .external_lex_state = 10}, + [324] = {.lex_state = 226, .external_lex_state = 10}, + [325] = {.lex_state = 226, .external_lex_state = 10}, + [326] = {.lex_state = 77, .external_lex_state = 7}, + [327] = {.lex_state = 84, .external_lex_state = 7}, + [328] = {.lex_state = 84, .external_lex_state = 7}, + [329] = {.lex_state = 226, .external_lex_state = 10}, + [330] = {.lex_state = 90, .external_lex_state = 7}, [331] = {.lex_state = 111, .external_lex_state = 2}, - [332] = {.lex_state = 231, .external_lex_state = 10}, + [332] = {.lex_state = 231, .external_lex_state = 2}, [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}, + [334] = {.lex_state = 226, .external_lex_state = 10}, + [335] = {.lex_state = 231, .external_lex_state = 2}, + [336] = {.lex_state = 81, .external_lex_state = 7}, + [337] = {.lex_state = 81, .external_lex_state = 7}, + [338] = {.lex_state = 85, .external_lex_state = 10}, + [339] = {.lex_state = 226, .external_lex_state = 10}, + [340] = {.lex_state = 85, .external_lex_state = 10}, + [341] = {.lex_state = 231, .external_lex_state = 9}, + [342] = {.lex_state = 72, .external_lex_state = 7}, + [343] = {.lex_state = 72, .external_lex_state = 7}, + [344] = {.lex_state = 231, .external_lex_state = 9}, + [345] = {.lex_state = 72, .external_lex_state = 7}, + [346] = {.lex_state = 85, .external_lex_state = 10}, [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}, + [348] = {.lex_state = 85, .external_lex_state = 10}, + [349] = {.lex_state = 231, .external_lex_state = 9}, + [350] = {.lex_state = 231, .external_lex_state = 9}, + [351] = {.lex_state = 231, .external_lex_state = 2}, + [352] = {.lex_state = 115, .external_lex_state = 12}, + [353] = {.lex_state = 90, .external_lex_state = 7}, + [354] = {.lex_state = 90, .external_lex_state = 7}, + [355] = {.lex_state = 111, .external_lex_state = 2}, [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}, + [357] = {.lex_state = 112, .external_lex_state = 13}, + [358] = {.lex_state = 90, .external_lex_state = 7}, + [359] = {.lex_state = 115, .external_lex_state = 12}, + [360] = {.lex_state = 90, .external_lex_state = 7}, + [361] = {.lex_state = 231, .external_lex_state = 2}, + [362] = {.lex_state = 111, .external_lex_state = 2}, + [363] = {.lex_state = 227, .external_lex_state = 7}, + [364] = {.lex_state = 231, .external_lex_state = 9}, + [365] = {.lex_state = 228, .external_lex_state = 7}, + [366] = {.lex_state = 228, .external_lex_state = 7}, + [367] = {.lex_state = 228, .external_lex_state = 7}, + [368] = {.lex_state = 227, .external_lex_state = 7}, + [369] = {.lex_state = 91, .external_lex_state = 10}, + [370] = {.lex_state = 228, .external_lex_state = 7}, + [371] = {.lex_state = 228, .external_lex_state = 7}, + [372] = {.lex_state = 228, .external_lex_state = 7}, + [373] = {.lex_state = 80, .external_lex_state = 7}, + [374] = {.lex_state = 228, .external_lex_state = 7}, + [375] = {.lex_state = 80, .external_lex_state = 7}, + [376] = {.lex_state = 91, .external_lex_state = 10}, + [377] = {.lex_state = 231, .external_lex_state = 9}, + [378] = {.lex_state = 228, .external_lex_state = 7}, + [379] = {.lex_state = 227, .external_lex_state = 7}, + [380] = {.lex_state = 231, .external_lex_state = 9}, + [381] = {.lex_state = 80, .external_lex_state = 7}, + [382] = {.lex_state = 91, .external_lex_state = 10}, + [383] = {.lex_state = 85, .external_lex_state = 7}, + [384] = {.lex_state = 91, .external_lex_state = 10}, + [385] = {.lex_state = 228, .external_lex_state = 7}, + [386] = {.lex_state = 227, .external_lex_state = 7}, + [387] = {.lex_state = 228, .external_lex_state = 7}, + [388] = {.lex_state = 85, .external_lex_state = 7}, + [389] = {.lex_state = 229, .external_lex_state = 10}, + [390] = {.lex_state = 226, .external_lex_state = 7}, + [391] = {.lex_state = 226, .external_lex_state = 7}, + [392] = {.lex_state = 226, .external_lex_state = 7}, + [393] = {.lex_state = 229, .external_lex_state = 10}, [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}, + [395] = {.lex_state = 228, .external_lex_state = 7}, + [396] = {.lex_state = 229, .external_lex_state = 10}, + [397] = {.lex_state = 226, .external_lex_state = 7}, + [398] = {.lex_state = 226, .external_lex_state = 7}, + [399] = {.lex_state = 229, .external_lex_state = 10}, + [400] = {.lex_state = 114, .external_lex_state = 12}, + [401] = {.lex_state = 226, .external_lex_state = 7}, + [402] = {.lex_state = 229, .external_lex_state = 10}, + [403] = {.lex_state = 91, .external_lex_state = 7}, + [404] = {.lex_state = 228, .external_lex_state = 7}, + [405] = {.lex_state = 229, .external_lex_state = 10}, + [406] = {.lex_state = 229, .external_lex_state = 10}, + [407] = {.lex_state = 91, .external_lex_state = 7}, + [408] = {.lex_state = 228, .external_lex_state = 7}, + [409] = {.lex_state = 228, .external_lex_state = 7}, + [410] = {.lex_state = 114, .external_lex_state = 14}, + [411] = {.lex_state = 114, .external_lex_state = 14}, + [412] = {.lex_state = 229, .external_lex_state = 10}, [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}, + [414] = {.lex_state = 229, .external_lex_state = 7}, + [415] = {.lex_state = 229, .external_lex_state = 7}, + [416] = {.lex_state = 231, .external_lex_state = 2}, + [417] = {.lex_state = 226, .external_lex_state = 7}, + [418] = {.lex_state = 231, .external_lex_state = 2}, + [419] = {.lex_state = 125, .external_lex_state = 2}, + [420] = {.lex_state = 229, .external_lex_state = 7}, + [421] = {.lex_state = 229, .external_lex_state = 7}, + [422] = {.lex_state = 112, .external_lex_state = 4}, + [423] = {.lex_state = 125, .external_lex_state = 2}, [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}, + [425] = {.lex_state = 125, .external_lex_state = 2}, + [426] = {.lex_state = 226, .external_lex_state = 7}, + [427] = {.lex_state = 231, .external_lex_state = 2}, + [428] = {.lex_state = 231, .external_lex_state = 2}, + [429] = {.lex_state = 112, .external_lex_state = 4}, [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}, + [436] = {.lex_state = 21, .external_lex_state = 5}, + [437] = {.lex_state = 21, .external_lex_state = 11}, + [438] = {.lex_state = 94, .external_lex_state = 10}, + [439] = {.lex_state = 94, .external_lex_state = 10}, + [440] = {.lex_state = 94, .external_lex_state = 10}, + [441] = {.lex_state = 21, .external_lex_state = 5}, + [442] = {.lex_state = 21, .external_lex_state = 5}, + [443] = {.lex_state = 21, .external_lex_state = 11}, + [444] = {.lex_state = 21, .external_lex_state = 5}, + [445] = {.lex_state = 84, .external_lex_state = 3}, + [446] = {.lex_state = 21, .external_lex_state = 5}, + [447] = {.lex_state = 94, .external_lex_state = 10}, + [448] = {.lex_state = 72, .external_lex_state = 15}, + [449] = {.lex_state = 21, .external_lex_state = 5}, + [450] = {.lex_state = 84, .external_lex_state = 3}, [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}, + [452] = {.lex_state = 84, .external_lex_state = 3}, + [453] = {.lex_state = 84, .external_lex_state = 3}, + [454] = {.lex_state = 116, .external_lex_state = 6}, + [455] = {.lex_state = 84, .external_lex_state = 3}, + [456] = {.lex_state = 84, .external_lex_state = 3}, + [457] = {.lex_state = 84, .external_lex_state = 3}, + [458] = {.lex_state = 84, .external_lex_state = 3}, + [459] = {.lex_state = 72, .external_lex_state = 15}, + [460] = {.lex_state = 21, .external_lex_state = 5}, + [461] = {.lex_state = 96, .external_lex_state = 10}, + [462] = {.lex_state = 96, .external_lex_state = 10}, + [463] = {.lex_state = 96, .external_lex_state = 10}, + [464] = {.lex_state = 96, .external_lex_state = 10}, + [465] = {.lex_state = 72, .external_lex_state = 15}, + [466] = {.lex_state = 116, .external_lex_state = 6}, + [467] = {.lex_state = 72, .external_lex_state = 15}, + [468] = {.lex_state = 21, .external_lex_state = 5}, + [469] = {.lex_state = 72, .external_lex_state = 15}, + [470] = {.lex_state = 21, .external_lex_state = 5}, + [471] = {.lex_state = 72, .external_lex_state = 15}, + [472] = {.lex_state = 21, .external_lex_state = 5}, + [473] = {.lex_state = 21, .external_lex_state = 5}, + [474] = {.lex_state = 84, .external_lex_state = 3}, + [475] = {.lex_state = 21, .external_lex_state = 5}, + [476] = {.lex_state = 21, .external_lex_state = 5}, + [477] = {.lex_state = 72, .external_lex_state = 15}, [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}, + [479] = {.lex_state = 21, .external_lex_state = 5}, + [480] = {.lex_state = 72, .external_lex_state = 15}, + [481] = {.lex_state = 21, .external_lex_state = 5}, + [482] = {.lex_state = 21, .external_lex_state = 5}, + [483] = {.lex_state = 21, .external_lex_state = 11}, + [484] = {.lex_state = 84, .external_lex_state = 3}, + [485] = {.lex_state = 116, .external_lex_state = 6}, + [486] = {.lex_state = 116, .external_lex_state = 6}, + [487] = {.lex_state = 21, .external_lex_state = 5}, + [488] = {.lex_state = 21, .external_lex_state = 5}, + [489] = {.lex_state = 21, .external_lex_state = 5}, + [490] = {.lex_state = 21, .external_lex_state = 5}, + [491] = {.lex_state = 21, .external_lex_state = 5}, + [492] = {.lex_state = 21, .external_lex_state = 5}, + [493] = {.lex_state = 117, .external_lex_state = 6}, + [494] = {.lex_state = 21, .external_lex_state = 5}, + [495] = {.lex_state = 21, .external_lex_state = 5}, + [496] = {.lex_state = 21, .external_lex_state = 5}, + [497] = {.lex_state = 21, .external_lex_state = 5}, + [498] = {.lex_state = 21, .external_lex_state = 5}, + [499] = {.lex_state = 21, .external_lex_state = 5}, + [500] = {.lex_state = 21, .external_lex_state = 5}, + [501] = {.lex_state = 21, .external_lex_state = 5}, + [502] = {.lex_state = 21, .external_lex_state = 5}, + [503] = {.lex_state = 21, .external_lex_state = 5}, + [504] = {.lex_state = 21, .external_lex_state = 5}, + [505] = {.lex_state = 230, .external_lex_state = 10}, [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}, + [508] = {.lex_state = 123, .external_lex_state = 16}, + [509] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [513] = {.lex_state = 123, .external_lex_state = 16}, + [514] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [516] = {.lex_state = 123, .external_lex_state = 16}, + [517] = {.lex_state = 123, .external_lex_state = 16}, + [518] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [522] = {.lex_state = 124, .external_lex_state = 17}, + [523] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [526] = {.lex_state = 124, .external_lex_state = 17}, + [527] = {.lex_state = 124, .external_lex_state = 17}, [528] = {.lex_state = 124, .external_lex_state = 17}, - [529] = {.lex_state = 124, .external_lex_state = 17}, - [530] = {.lex_state = 123, .external_lex_state = 16}, + [529] = {.lex_state = 123, .external_lex_state = 16}, + [530] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [532] = {.lex_state = 123, .external_lex_state = 16}, + [533] = {.lex_state = 123, .external_lex_state = 16}, + [534] = {.lex_state = 123, .external_lex_state = 16}, + [535] = {.lex_state = 123, .external_lex_state = 16}, + [536] = {.lex_state = 123, .external_lex_state = 16}, + [537] = {.lex_state = 124, .external_lex_state = 17}, + [538] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [541] = {.lex_state = 124, .external_lex_state = 17}, + [542] = {.lex_state = 123, .external_lex_state = 16}, + [543] = {.lex_state = 124, .external_lex_state = 17}, + [544] = {.lex_state = 123, .external_lex_state = 16}, + [545] = {.lex_state = 123, .external_lex_state = 16}, + [546] = {.lex_state = 123, .external_lex_state = 16}, + [547] = {.lex_state = 123, .external_lex_state = 16}, + [548] = {.lex_state = 230, .external_lex_state = 10}, + [549] = {.lex_state = 124, .external_lex_state = 17}, + [550] = {.lex_state = 230, .external_lex_state = 10}, + [551] = {.lex_state = 124, .external_lex_state = 17}, + [552] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [554] = {.lex_state = 124, .external_lex_state = 17}, + [555] = {.lex_state = 123, .external_lex_state = 16}, + [556] = {.lex_state = 124, .external_lex_state = 17}, + [557] = {.lex_state = 124, .external_lex_state = 17}, + [558] = {.lex_state = 124, .external_lex_state = 17}, + [559] = {.lex_state = 123, .external_lex_state = 16}, + [560] = {.lex_state = 123, .external_lex_state = 16}, + [561] = {.lex_state = 123, .external_lex_state = 16}, + [562] = {.lex_state = 123, .external_lex_state = 16}, + [563] = {.lex_state = 124, .external_lex_state = 17}, + [564] = {.lex_state = 124, .external_lex_state = 17}, + [565] = {.lex_state = 124, .external_lex_state = 17}, + [566] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [568] = {.lex_state = 123, .external_lex_state = 16}, + [569] = {.lex_state = 124, .external_lex_state = 17}, + [570] = {.lex_state = 124, .external_lex_state = 17}, + [571] = {.lex_state = 123, .external_lex_state = 16}, + [572] = {.lex_state = 123, .external_lex_state = 16}, + [573] = {.lex_state = 123, .external_lex_state = 16}, + [574] = {.lex_state = 123, .external_lex_state = 16}, + [575] = {.lex_state = 123, .external_lex_state = 16}, + [576] = {.lex_state = 124, .external_lex_state = 17}, + [577] = {.lex_state = 124, .external_lex_state = 17}, + [578] = {.lex_state = 123, .external_lex_state = 16}, + [579] = {.lex_state = 123, .external_lex_state = 16}, + [580] = {.lex_state = 124, .external_lex_state = 17}, + [581] = {.lex_state = 124, .external_lex_state = 17}, + [582] = {.lex_state = 124, .external_lex_state = 17}, + [583] = {.lex_state = 124, .external_lex_state = 17}, + [584] = {.lex_state = 123, .external_lex_state = 16}, + [585] = {.lex_state = 123, .external_lex_state = 16}, + [586] = {.lex_state = 124, .external_lex_state = 17}, + [587] = {.lex_state = 123, .external_lex_state = 16}, + [588] = {.lex_state = 123, .external_lex_state = 16}, + [589] = {.lex_state = 123, .external_lex_state = 16}, + [590] = {.lex_state = 124, .external_lex_state = 17}, + [591] = {.lex_state = 124, .external_lex_state = 17}, + [592] = {.lex_state = 123, .external_lex_state = 16}, + [593] = {.lex_state = 124, .external_lex_state = 17}, + [594] = {.lex_state = 123, .external_lex_state = 16}, + [595] = {.lex_state = 123, .external_lex_state = 16}, + [596] = {.lex_state = 123, .external_lex_state = 16}, + [597] = {.lex_state = 124, .external_lex_state = 17}, + [598] = {.lex_state = 124, .external_lex_state = 17}, + [599] = {.lex_state = 118, .external_lex_state = 6}, [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}, + [602] = {.lex_state = 124, .external_lex_state = 17}, + [603] = {.lex_state = 123, .external_lex_state = 16}, [604] = {.lex_state = 124, .external_lex_state = 17}, - [605] = {.lex_state = 124, .external_lex_state = 17}, + [605] = {.lex_state = 228, .external_lex_state = 3}, [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}, + [607] = {.lex_state = 124, .external_lex_state = 17}, + [608] = {.lex_state = 123, .external_lex_state = 16}, + [609] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [611] = {.lex_state = 124, .external_lex_state = 17}, + [612] = {.lex_state = 124, .external_lex_state = 17}, + [613] = {.lex_state = 230, .external_lex_state = 10}, + [614] = {.lex_state = 123, .external_lex_state = 16}, + [615] = {.lex_state = 124, .external_lex_state = 17}, + [616] = {.lex_state = 123, .external_lex_state = 16}, + [617] = {.lex_state = 124, .external_lex_state = 17}, + [618] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [620] = {.lex_state = 123, .external_lex_state = 16}, + [621] = {.lex_state = 123, .external_lex_state = 16}, + [622] = {.lex_state = 84, .external_lex_state = 3}, + [623] = {.lex_state = 84, .external_lex_state = 3}, + [624] = {.lex_state = 124, .external_lex_state = 17}, [625] = {.lex_state = 123, .external_lex_state = 16}, - [626] = {.lex_state = 84, .external_lex_state = 3}, + [626] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [629] = {.lex_state = 84, .external_lex_state = 3}, + [630] = {.lex_state = 124, .external_lex_state = 17}, + [631] = {.lex_state = 124, .external_lex_state = 17}, + [632] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [636] = {.lex_state = 116, .external_lex_state = 6}, + [637] = {.lex_state = 228, .external_lex_state = 3}, + [638] = {.lex_state = 116, .external_lex_state = 6}, + [639] = {.lex_state = 116, .external_lex_state = 6}, + [640] = {.lex_state = 84, .external_lex_state = 3}, + [641] = {.lex_state = 123, .external_lex_state = 16}, + [642] = {.lex_state = 123, .external_lex_state = 16}, + [643] = {.lex_state = 84, .external_lex_state = 3}, + [644] = {.lex_state = 123, .external_lex_state = 16}, + [645] = {.lex_state = 21, .external_lex_state = 11}, [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}, + [647] = {.lex_state = 124, .external_lex_state = 17}, + [648] = {.lex_state = 123, .external_lex_state = 16}, + [649] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [652] = {.lex_state = 124, .external_lex_state = 17}, + [653] = {.lex_state = 230, .external_lex_state = 10}, + [654] = {.lex_state = 123, .external_lex_state = 16}, + [655] = {.lex_state = 124, .external_lex_state = 17}, + [656] = {.lex_state = 117, .external_lex_state = 12}, [657] = {.lex_state = 124, .external_lex_state = 17}, - [658] = {.lex_state = 124, .external_lex_state = 17}, + [658] = {.lex_state = 123, .external_lex_state = 16}, [659] = {.lex_state = 123, .external_lex_state = 16}, [660] = {.lex_state = 123, .external_lex_state = 16}, - [661] = {.lex_state = 124, .external_lex_state = 17}, + [661] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [663] = {.lex_state = 72, .external_lex_state = 15}, + [664] = {.lex_state = 80, .external_lex_state = 15}, + [665] = {.lex_state = 80, .external_lex_state = 15}, + [666] = {.lex_state = 72, .external_lex_state = 15}, + [667] = {.lex_state = 124, .external_lex_state = 17}, + [668] = {.lex_state = 124, .external_lex_state = 17}, [669] = {.lex_state = 124, .external_lex_state = 17}, - [670] = {.lex_state = 124, .external_lex_state = 17}, + [670] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [674] = {.lex_state = 84, .external_lex_state = 7}, + [675] = {.lex_state = 124, .external_lex_state = 17}, + [676] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [681] = {.lex_state = 124, .external_lex_state = 17}, + [682] = {.lex_state = 124, .external_lex_state = 17}, + [683] = {.lex_state = 72, .external_lex_state = 15}, + [684] = {.lex_state = 72, .external_lex_state = 15}, + [685] = {.lex_state = 116, .external_lex_state = 6}, [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}, + [688] = {.lex_state = 123, .external_lex_state = 16}, + [689] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [691] = {.lex_state = 116, .external_lex_state = 6}, + [692] = {.lex_state = 116, .external_lex_state = 6}, + [693] = {.lex_state = 116, .external_lex_state = 6}, + [694] = {.lex_state = 116, .external_lex_state = 6}, + [695] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [697] = {.lex_state = 123, .external_lex_state = 16}, + [698] = {.lex_state = 124, .external_lex_state = 17}, + [699] = {.lex_state = 230, .external_lex_state = 10}, + [700] = {.lex_state = 124, .external_lex_state = 17}, + [701] = {.lex_state = 230, .external_lex_state = 10}, + [702] = {.lex_state = 124, .external_lex_state = 17}, + [703] = {.lex_state = 72, .external_lex_state = 15}, + [704] = {.lex_state = 72, .external_lex_state = 15}, + [705] = {.lex_state = 84, .external_lex_state = 3}, + [706] = {.lex_state = 72, .external_lex_state = 15}, [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}, + [708] = {.lex_state = 123, .external_lex_state = 16}, + [709] = {.lex_state = 123, .external_lex_state = 16}, + [710] = {.lex_state = 124, .external_lex_state = 17}, + [711] = {.lex_state = 124, .external_lex_state = 17}, + [712] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [715] = {.lex_state = 124, .external_lex_state = 17}, + [716] = {.lex_state = 123, .external_lex_state = 16}, + [717] = {.lex_state = 123, .external_lex_state = 16}, + [718] = {.lex_state = 124, .external_lex_state = 17}, + [719] = {.lex_state = 124, .external_lex_state = 17}, + [720] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [722] = {.lex_state = 84, .external_lex_state = 3}, + [723] = {.lex_state = 84, .external_lex_state = 3}, + [724] = {.lex_state = 72, .external_lex_state = 3}, + [725] = {.lex_state = 84, .external_lex_state = 3}, + [726] = {.lex_state = 123, .external_lex_state = 16}, + [727] = {.lex_state = 72, .external_lex_state = 3}, + [728] = {.lex_state = 72, .external_lex_state = 10}, + [729] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [731] = {.lex_state = 72, .external_lex_state = 10}, + [732] = {.lex_state = 116, .external_lex_state = 6}, + [733] = {.lex_state = 116, .external_lex_state = 6}, + [734] = {.lex_state = 116, .external_lex_state = 6}, + [735] = {.lex_state = 116, .external_lex_state = 6}, [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}, + [737] = {.lex_state = 123, .external_lex_state = 16}, + [738] = {.lex_state = 84, .external_lex_state = 3}, + [739] = {.lex_state = 124, .external_lex_state = 17}, + [740] = {.lex_state = 72, .external_lex_state = 3}, [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}, + [745] = {.lex_state = 123, .external_lex_state = 16}, + [746] = {.lex_state = 84, .external_lex_state = 3}, [747] = {.lex_state = 123, .external_lex_state = 16}, [748] = {.lex_state = 123, .external_lex_state = 16}, - [749] = {.lex_state = 124, .external_lex_state = 17}, + [749] = {.lex_state = 84, .external_lex_state = 3}, [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}, + [751] = {.lex_state = 84, .external_lex_state = 3}, + [752] = {.lex_state = 124, .external_lex_state = 17}, + [753] = {.lex_state = 72, .external_lex_state = 15}, + [754] = {.lex_state = 84, .external_lex_state = 3}, + [755] = {.lex_state = 84, .external_lex_state = 3}, + [756] = {.lex_state = 84, .external_lex_state = 3}, + [757] = {.lex_state = 84, .external_lex_state = 3}, + [758] = {.lex_state = 84, .external_lex_state = 3}, + [759] = {.lex_state = 116, .external_lex_state = 6}, + [760] = {.lex_state = 116, .external_lex_state = 6}, + [761] = {.lex_state = 116, .external_lex_state = 6}, + [762] = {.lex_state = 116, .external_lex_state = 6}, + [763] = {.lex_state = 84, .external_lex_state = 3}, + [764] = {.lex_state = 84, .external_lex_state = 3}, + [765] = {.lex_state = 84, .external_lex_state = 3}, + [766] = {.lex_state = 84, .external_lex_state = 3}, + [767] = {.lex_state = 84, .external_lex_state = 3}, + [768] = {.lex_state = 124, .external_lex_state = 17}, + [769] = {.lex_state = 84, .external_lex_state = 3}, + [770] = {.lex_state = 84, .external_lex_state = 3}, + [771] = {.lex_state = 124, .external_lex_state = 17}, + [772] = {.lex_state = 84, .external_lex_state = 3}, + [773] = {.lex_state = 116, .external_lex_state = 6}, + [774] = {.lex_state = 116, .external_lex_state = 6}, + [775] = {.lex_state = 116, .external_lex_state = 6}, + [776] = {.lex_state = 116, .external_lex_state = 6}, + [777] = {.lex_state = 72, .external_lex_state = 3}, + [778] = {.lex_state = 72, .external_lex_state = 15}, + [779] = {.lex_state = 72, .external_lex_state = 15}, + [780] = {.lex_state = 123, .external_lex_state = 16}, + [781] = {.lex_state = 123, .external_lex_state = 16}, + [782] = {.lex_state = 94, .external_lex_state = 15}, + [783] = {.lex_state = 124, .external_lex_state = 17}, + [784] = {.lex_state = 116, .external_lex_state = 6}, + [785] = {.lex_state = 116, .external_lex_state = 6}, + [786] = {.lex_state = 72, .external_lex_state = 15}, + [787] = {.lex_state = 124, .external_lex_state = 17}, + [788] = {.lex_state = 94, .external_lex_state = 15}, + [789] = {.lex_state = 123, .external_lex_state = 16}, + [790] = {.lex_state = 123, .external_lex_state = 16}, + [791] = {.lex_state = 72, .external_lex_state = 15}, + [792] = {.lex_state = 94, .external_lex_state = 15}, + [793] = {.lex_state = 94, .external_lex_state = 15}, + [794] = {.lex_state = 94, .external_lex_state = 15}, + [795] = {.lex_state = 72, .external_lex_state = 15}, + [796] = {.lex_state = 72, .external_lex_state = 15}, + [797] = {.lex_state = 72, .external_lex_state = 15}, [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}, + [799] = {.lex_state = 72, .external_lex_state = 15}, + [800] = {.lex_state = 72, .external_lex_state = 15}, + [801] = {.lex_state = 72, .external_lex_state = 15}, [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}, + [803] = {.lex_state = 117, .external_lex_state = 12}, + [804] = {.lex_state = 124, .external_lex_state = 17}, + [805] = {.lex_state = 72, .external_lex_state = 15}, + [806] = {.lex_state = 72, .external_lex_state = 15}, + [807] = {.lex_state = 72, .external_lex_state = 15}, + [808] = {.lex_state = 72, .external_lex_state = 15}, + [809] = {.lex_state = 72, .external_lex_state = 15}, + [810] = {.lex_state = 72, .external_lex_state = 15}, + [811] = {.lex_state = 84, .external_lex_state = 7}, + [812] = {.lex_state = 72, .external_lex_state = 15}, + [813] = {.lex_state = 72, .external_lex_state = 15}, + [814] = {.lex_state = 21, .external_lex_state = 11}, + [815] = {.lex_state = 72, .external_lex_state = 15}, + [816] = {.lex_state = 72, .external_lex_state = 15}, + [817] = {.lex_state = 124, .external_lex_state = 17}, + [818] = {.lex_state = 94, .external_lex_state = 15}, + [819] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [821] = {.lex_state = 124, .external_lex_state = 17}, + [822] = {.lex_state = 124, .external_lex_state = 17}, + [823] = {.lex_state = 72, .external_lex_state = 10}, + [824] = {.lex_state = 72, .external_lex_state = 3}, + [825] = {.lex_state = 72, .external_lex_state = 3}, + [826] = {.lex_state = 21, .external_lex_state = 11}, + [827] = {.lex_state = 123, .external_lex_state = 16}, + [828] = {.lex_state = 123, .external_lex_state = 16}, + [829] = {.lex_state = 116, .external_lex_state = 6}, + [830] = {.lex_state = 90, .external_lex_state = 3}, + [831] = {.lex_state = 123, .external_lex_state = 16}, + [832] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [834] = {.lex_state = 90, .external_lex_state = 3}, + [835] = {.lex_state = 124, .external_lex_state = 17}, + [836] = {.lex_state = 90, .external_lex_state = 3}, + [837] = {.lex_state = 124, .external_lex_state = 17}, + [838] = {.lex_state = 90, .external_lex_state = 3}, + [839] = {.lex_state = 123, .external_lex_state = 16}, + [840] = {.lex_state = 80, .external_lex_state = 15}, [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}, + [842] = {.lex_state = 119, .external_lex_state = 8}, + [843] = {.lex_state = 123, .external_lex_state = 16}, + [844] = {.lex_state = 123, .external_lex_state = 16}, + [845] = {.lex_state = 80, .external_lex_state = 15}, [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}, + [847] = {.lex_state = 123, .external_lex_state = 16}, + [848] = {.lex_state = 84, .external_lex_state = 7}, + [849] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [852] = {.lex_state = 124, .external_lex_state = 17}, + [853] = {.lex_state = 124, .external_lex_state = 17}, + [854] = {.lex_state = 123, .external_lex_state = 16}, + [855] = {.lex_state = 21, .external_lex_state = 11}, + [856] = {.lex_state = 124, .external_lex_state = 17}, + [857] = {.lex_state = 123, .external_lex_state = 16}, [858] = {.lex_state = 123, .external_lex_state = 16}, - [859] = {.lex_state = 123, .external_lex_state = 16}, + [859] = {.lex_state = 80, .external_lex_state = 15}, [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}, + [861] = {.lex_state = 124, .external_lex_state = 17}, + [862] = {.lex_state = 21, .external_lex_state = 11}, + [863] = {.lex_state = 21, .external_lex_state = 11}, [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}, + [866] = {.lex_state = 124, .external_lex_state = 17}, + [867] = {.lex_state = 21, .external_lex_state = 11}, + [868] = {.lex_state = 230, .external_lex_state = 10}, + [869] = {.lex_state = 123, .external_lex_state = 16}, [870] = {.lex_state = 123, .external_lex_state = 16}, [871] = {.lex_state = 123, .external_lex_state = 16}, - [872] = {.lex_state = 124, .external_lex_state = 17}, + [872] = {.lex_state = 21, .external_lex_state = 11}, [873] = {.lex_state = 124, .external_lex_state = 17}, - [874] = {.lex_state = 123, .external_lex_state = 16}, - [875] = {.lex_state = 119, .external_lex_state = 7}, + [874] = {.lex_state = 90, .external_lex_state = 3}, + [875] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [877] = {.lex_state = 90, .external_lex_state = 3}, + [878] = {.lex_state = 124, .external_lex_state = 17}, + [879] = {.lex_state = 123, .external_lex_state = 16}, + [880] = {.lex_state = 123, .external_lex_state = 16}, + [881] = {.lex_state = 124, .external_lex_state = 17}, + [882] = {.lex_state = 124, .external_lex_state = 17}, + [883] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [885] = {.lex_state = 21, .external_lex_state = 11}, + [886] = {.lex_state = 123, .external_lex_state = 16}, + [887] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [890] = {.lex_state = 80, .external_lex_state = 15}, + [891] = {.lex_state = 123, .external_lex_state = 16}, [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}, + [893] = {.lex_state = 124, .external_lex_state = 17}, + [894] = {.lex_state = 90, .external_lex_state = 3}, + [895] = {.lex_state = 90, .external_lex_state = 3}, + [896] = {.lex_state = 21, .external_lex_state = 11}, + [897] = {.lex_state = 124, .external_lex_state = 17}, + [898] = {.lex_state = 124, .external_lex_state = 17}, + [899] = {.lex_state = 124, .external_lex_state = 17}, + [900] = {.lex_state = 84, .external_lex_state = 7}, + [901] = {.lex_state = 80, .external_lex_state = 15}, + [902] = {.lex_state = 80, .external_lex_state = 15}, + [903] = {.lex_state = 124, .external_lex_state = 17}, + [904] = {.lex_state = 21, .external_lex_state = 11}, + [905] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [907] = {.lex_state = 21, .external_lex_state = 11}, + [908] = {.lex_state = 21, .external_lex_state = 11}, + [909] = {.lex_state = 21, .external_lex_state = 11}, + [910] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [913] = {.lex_state = 90, .external_lex_state = 3}, + [914] = {.lex_state = 123, .external_lex_state = 16}, + [915] = {.lex_state = 123, .external_lex_state = 16}, + [916] = {.lex_state = 124, .external_lex_state = 17}, + [917] = {.lex_state = 124, .external_lex_state = 17}, + [918] = {.lex_state = 123, .external_lex_state = 16}, + [919] = {.lex_state = 90, .external_lex_state = 3}, + [920] = {.lex_state = 123, .external_lex_state = 16}, + [921] = {.lex_state = 124, .external_lex_state = 17}, [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}, + [924] = {.lex_state = 123, .external_lex_state = 16}, + [925] = {.lex_state = 123, .external_lex_state = 16}, + [926] = {.lex_state = 123, .external_lex_state = 16}, + [927] = {.lex_state = 80, .external_lex_state = 15}, [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}, + [929] = {.lex_state = 124, .external_lex_state = 16}, + [930] = {.lex_state = 124, .external_lex_state = 16}, + [931] = {.lex_state = 124, .external_lex_state = 16}, + [932] = {.lex_state = 124, .external_lex_state = 16}, + [933] = {.lex_state = 124, .external_lex_state = 16}, + [934] = {.lex_state = 96, .external_lex_state = 15}, + [935] = {.lex_state = 80, .external_lex_state = 15}, + [936] = {.lex_state = 80, .external_lex_state = 15}, + [937] = {.lex_state = 80, .external_lex_state = 15}, + [938] = {.lex_state = 124, .external_lex_state = 16}, + [939] = {.lex_state = 80, .external_lex_state = 15}, + [940] = {.lex_state = 124, .external_lex_state = 16}, + [941] = {.lex_state = 80, .external_lex_state = 15}, + [942] = {.lex_state = 80, .external_lex_state = 15}, + [943] = {.lex_state = 80, .external_lex_state = 15}, + [944] = {.lex_state = 80, .external_lex_state = 15}, + [945] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [947] = {.lex_state = 80, .external_lex_state = 15}, + [948] = {.lex_state = 124, .external_lex_state = 16}, + [949] = {.lex_state = 80, .external_lex_state = 15}, + [950] = {.lex_state = 80, .external_lex_state = 15}, + [951] = {.lex_state = 80, .external_lex_state = 15}, + [952] = {.lex_state = 80, .external_lex_state = 15}, + [953] = {.lex_state = 80, .external_lex_state = 15}, + [954] = {.lex_state = 124, .external_lex_state = 16}, + [955] = {.lex_state = 124, .external_lex_state = 16}, + [956] = {.lex_state = 80, .external_lex_state = 15}, + [957] = {.lex_state = 124, .external_lex_state = 16}, + [958] = {.lex_state = 124, .external_lex_state = 16}, + [959] = {.lex_state = 124, .external_lex_state = 16}, + [960] = {.lex_state = 96, .external_lex_state = 15}, + [961] = {.lex_state = 124, .external_lex_state = 16}, + [962] = {.lex_state = 80, .external_lex_state = 15}, + [963] = {.lex_state = 96, .external_lex_state = 15}, + [964] = {.lex_state = 124, .external_lex_state = 16}, + [965] = {.lex_state = 124, .external_lex_state = 16}, + [966] = {.lex_state = 124, .external_lex_state = 16}, + [967] = {.lex_state = 124, .external_lex_state = 16}, + [968] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [970] = {.lex_state = 96, .external_lex_state = 15}, + [971] = {.lex_state = 124, .external_lex_state = 16}, + [972] = {.lex_state = 124, .external_lex_state = 16}, + [973] = {.lex_state = 124, .external_lex_state = 16}, + [974] = {.lex_state = 124, .external_lex_state = 16}, + [975] = {.lex_state = 80, .external_lex_state = 15}, + [976] = {.lex_state = 124, .external_lex_state = 16}, + [977] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [979] = {.lex_state = 80, .external_lex_state = 3}, + [980] = {.lex_state = 124, .external_lex_state = 16}, + [981] = {.lex_state = 90, .external_lex_state = 3}, + [982] = {.lex_state = 90, .external_lex_state = 3}, [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}, + [984] = {.lex_state = 90, .external_lex_state = 3}, + [985] = {.lex_state = 90, .external_lex_state = 3}, + [986] = {.lex_state = 90, .external_lex_state = 3}, + [987] = {.lex_state = 90, .external_lex_state = 7}, + [988] = {.lex_state = 118, .external_lex_state = 6}, + [989] = {.lex_state = 90, .external_lex_state = 3}, + [990] = {.lex_state = 90, .external_lex_state = 3}, + [991] = {.lex_state = 90, .external_lex_state = 3}, + [992] = {.lex_state = 90, .external_lex_state = 3}, + [993] = {.lex_state = 124, .external_lex_state = 16}, + [994] = {.lex_state = 124, .external_lex_state = 16}, + [995] = {.lex_state = 86, .external_lex_state = 18}, + [996] = {.lex_state = 80, .external_lex_state = 10}, + [997] = {.lex_state = 80, .external_lex_state = 3}, + [998] = {.lex_state = 80, .external_lex_state = 3}, + [999] = {.lex_state = 90, .external_lex_state = 3}, + [1000] = {.lex_state = 90, .external_lex_state = 3}, + [1001] = {.lex_state = 90, .external_lex_state = 3}, + [1002] = {.lex_state = 80, .external_lex_state = 15}, + [1003] = {.lex_state = 124, .external_lex_state = 16}, + [1004] = {.lex_state = 230, .external_lex_state = 10}, + [1005] = {.lex_state = 124, .external_lex_state = 16}, + [1006] = {.lex_state = 124, .external_lex_state = 16}, + [1007] = {.lex_state = 124, .external_lex_state = 16}, + [1008] = {.lex_state = 124, .external_lex_state = 16}, + [1009] = {.lex_state = 124, .external_lex_state = 16}, + [1010] = {.lex_state = 124, .external_lex_state = 16}, + [1011] = {.lex_state = 124, .external_lex_state = 16}, + [1012] = {.lex_state = 90, .external_lex_state = 3}, + [1013] = {.lex_state = 84, .external_lex_state = 7}, [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}, + [1016] = {.lex_state = 124, .external_lex_state = 16}, + [1017] = {.lex_state = 124, .external_lex_state = 16}, + [1018] = {.lex_state = 80, .external_lex_state = 3}, [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}, + [1020] = {.lex_state = 90, .external_lex_state = 7}, + [1021] = {.lex_state = 90, .external_lex_state = 3}, + [1022] = {.lex_state = 80, .external_lex_state = 10}, + [1023] = {.lex_state = 80, .external_lex_state = 3}, + [1024] = {.lex_state = 124, .external_lex_state = 16}, + [1025] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1027] = {.lex_state = 80, .external_lex_state = 3}, + [1028] = {.lex_state = 124, .external_lex_state = 16}, + [1029] = {.lex_state = 90, .external_lex_state = 3}, [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}, + [1031] = {.lex_state = 90, .external_lex_state = 3}, + [1032] = {.lex_state = 228, .external_lex_state = 3}, + [1033] = {.lex_state = 230, .external_lex_state = 10}, + [1034] = {.lex_state = 230, .external_lex_state = 10}, [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}, + [1041] = {.lex_state = 124, .external_lex_state = 16}, [1042] = {.lex_state = 124, .external_lex_state = 16}, [1043] = {.lex_state = 124, .external_lex_state = 16}, [1044] = {.lex_state = 124, .external_lex_state = 16}, @@ -11501,25 +11509,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1049] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1052] = {.lex_state = 124, .external_lex_state = 16}, + [1053] = {.lex_state = 124, .external_lex_state = 16}, + [1054] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1056] = {.lex_state = 124, .external_lex_state = 16}, + [1057] = {.lex_state = 228, .external_lex_state = 3}, + [1058] = {.lex_state = 124, .external_lex_state = 16}, + [1059] = {.lex_state = 90, .external_lex_state = 7}, + [1060] = {.lex_state = 124, .external_lex_state = 16}, + [1061] = {.lex_state = 80, .external_lex_state = 15}, + [1062] = {.lex_state = 90, .external_lex_state = 3}, [1063] = {.lex_state = 124, .external_lex_state = 16}, - [1064] = {.lex_state = 124, .external_lex_state = 16}, + [1064] = {.lex_state = 21, .external_lex_state = 11}, [1065] = {.lex_state = 124, .external_lex_state = 16}, [1066] = {.lex_state = 124, .external_lex_state = 16}, - [1067] = {.lex_state = 74, .external_lex_state = 3}, + [1067] = {.lex_state = 124, .external_lex_state = 16}, [1068] = {.lex_state = 124, .external_lex_state = 16}, [1069] = {.lex_state = 124, .external_lex_state = 16}, [1070] = {.lex_state = 124, .external_lex_state = 16}, @@ -11527,166 +11535,166 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1075] = {.lex_state = 80, .external_lex_state = 15}, [1076] = {.lex_state = 124, .external_lex_state = 16}, - [1077] = {.lex_state = 124, .external_lex_state = 16}, + [1077] = {.lex_state = 226, .external_lex_state = 15}, [1078] = {.lex_state = 124, .external_lex_state = 16}, [1079] = {.lex_state = 124, .external_lex_state = 16}, - [1080] = {.lex_state = 124, .external_lex_state = 16}, + [1080] = {.lex_state = 226, .external_lex_state = 15}, [1081] = {.lex_state = 124, .external_lex_state = 16}, - [1082] = {.lex_state = 74, .external_lex_state = 3}, - [1083] = {.lex_state = 124, .external_lex_state = 16}, + [1082] = {.lex_state = 124, .external_lex_state = 16}, + [1083] = {.lex_state = 80, .external_lex_state = 15}, [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}, + [1085] = {.lex_state = 124, .external_lex_state = 16}, + [1086] = {.lex_state = 124, .external_lex_state = 16}, + [1087] = {.lex_state = 124, .external_lex_state = 16}, + [1088] = {.lex_state = 80, .external_lex_state = 15}, + [1089] = {.lex_state = 230, .external_lex_state = 10}, + [1090] = {.lex_state = 124, .external_lex_state = 16}, + [1091] = {.lex_state = 90, .external_lex_state = 7}, + [1092] = {.lex_state = 84, .external_lex_state = 7}, + [1093] = {.lex_state = 124, .external_lex_state = 16}, + [1094] = {.lex_state = 124, .external_lex_state = 16}, + [1095] = {.lex_state = 124, .external_lex_state = 16}, + [1096] = {.lex_state = 124, .external_lex_state = 16}, + [1097] = {.lex_state = 80, .external_lex_state = 15}, + [1098] = {.lex_state = 118, .external_lex_state = 12}, + [1099] = {.lex_state = 124, .external_lex_state = 16}, + [1100] = {.lex_state = 124, .external_lex_state = 16}, [1101] = {.lex_state = 80, .external_lex_state = 15}, - [1102] = {.lex_state = 80, .external_lex_state = 15}, + [1102] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1104] = {.lex_state = 94, .external_lex_state = 15}, + [1105] = {.lex_state = 119, .external_lex_state = 8}, + [1106] = {.lex_state = 94, .external_lex_state = 15}, + [1107] = {.lex_state = 94, .external_lex_state = 15}, + [1108] = {.lex_state = 119, .external_lex_state = 8}, + [1109] = {.lex_state = 94, .external_lex_state = 15}, + [1110] = {.lex_state = 94, .external_lex_state = 15}, + [1111] = {.lex_state = 94, .external_lex_state = 15}, + [1112] = {.lex_state = 94, .external_lex_state = 15}, [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}, + [1115] = {.lex_state = 94, .external_lex_state = 15}, + [1116] = {.lex_state = 119, .external_lex_state = 14}, + [1117] = {.lex_state = 124, .external_lex_state = 16}, + [1118] = {.lex_state = 124, .external_lex_state = 16}, + [1119] = {.lex_state = 124, .external_lex_state = 16}, + [1120] = {.lex_state = 124, .external_lex_state = 16}, + [1121] = {.lex_state = 94, .external_lex_state = 15}, + [1122] = {.lex_state = 94, .external_lex_state = 15}, + [1123] = {.lex_state = 94, .external_lex_state = 15}, + [1124] = {.lex_state = 94, .external_lex_state = 15}, + [1125] = {.lex_state = 94, .external_lex_state = 15}, [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}, + [1127] = {.lex_state = 119, .external_lex_state = 8}, + [1128] = {.lex_state = 90, .external_lex_state = 3}, + [1129] = {.lex_state = 124, .external_lex_state = 16}, + [1130] = {.lex_state = 124, .external_lex_state = 16}, + [1131] = {.lex_state = 90, .external_lex_state = 3}, + [1132] = {.lex_state = 94, .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}, + [1134] = {.lex_state = 94, .external_lex_state = 15}, + [1135] = {.lex_state = 94, .external_lex_state = 15}, + [1136] = {.lex_state = 90, .external_lex_state = 3}, + [1137] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1139] = {.lex_state = 124, .external_lex_state = 16}, + [1140] = {.lex_state = 90, .external_lex_state = 3}, + [1141] = {.lex_state = 90, .external_lex_state = 3}, + [1142] = {.lex_state = 94, .external_lex_state = 15}, + [1143] = {.lex_state = 124, .external_lex_state = 16}, + [1144] = {.lex_state = 228, .external_lex_state = 3}, [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}, + [1146] = {.lex_state = 90, .external_lex_state = 3}, + [1147] = {.lex_state = 124, .external_lex_state = 16}, + [1148] = {.lex_state = 124, .external_lex_state = 16}, + [1149] = {.lex_state = 90, .external_lex_state = 3}, + [1150] = {.lex_state = 94, .external_lex_state = 15}, + [1151] = {.lex_state = 94, .external_lex_state = 15}, + [1152] = {.lex_state = 72, .external_lex_state = 3}, + [1153] = {.lex_state = 72, .external_lex_state = 3}, + [1154] = {.lex_state = 72, .external_lex_state = 3}, + [1155] = {.lex_state = 72, .external_lex_state = 3}, + [1156] = {.lex_state = 72, .external_lex_state = 3}, + [1157] = {.lex_state = 72, .external_lex_state = 3}, + [1158] = {.lex_state = 72, .external_lex_state = 3}, + [1159] = {.lex_state = 72, .external_lex_state = 3}, + [1160] = {.lex_state = 124, .external_lex_state = 16}, + [1161] = {.lex_state = 72, .external_lex_state = 3}, + [1162] = {.lex_state = 72, .external_lex_state = 3}, + [1163] = {.lex_state = 72, .external_lex_state = 3}, + [1164] = {.lex_state = 72, .external_lex_state = 3}, [1165] = {.lex_state = 226, .external_lex_state = 15}, - [1166] = {.lex_state = 228, .external_lex_state = 3}, + [1166] = {.lex_state = 72, .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}, + [1168] = {.lex_state = 226, .external_lex_state = 15}, + [1169] = {.lex_state = 94, .external_lex_state = 15}, + [1170] = {.lex_state = 116, .external_lex_state = 12}, [1171] = {.lex_state = 124, .external_lex_state = 16}, - [1172] = {.lex_state = 124, .external_lex_state = 16}, + [1172] = {.lex_state = 226, .external_lex_state = 15}, [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}, + [1175] = {.lex_state = 72, .external_lex_state = 3}, + [1176] = {.lex_state = 72, .external_lex_state = 3}, + [1177] = {.lex_state = 72, .external_lex_state = 3}, [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}, + [1181] = {.lex_state = 226, .external_lex_state = 15}, [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}, + [1183] = {.lex_state = 72, .external_lex_state = 7}, + [1184] = {.lex_state = 72, .external_lex_state = 3}, + [1185] = {.lex_state = 94, .external_lex_state = 10}, + [1186] = {.lex_state = 72, .external_lex_state = 3}, [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}, + [1190] = {.lex_state = 124, .external_lex_state = 16}, + [1191] = {.lex_state = 72, .external_lex_state = 3}, + [1192] = {.lex_state = 72, .external_lex_state = 3}, + [1193] = {.lex_state = 124, .external_lex_state = 16}, + [1194] = {.lex_state = 124, .external_lex_state = 16}, + [1195] = {.lex_state = 124, .external_lex_state = 16}, [1196] = {.lex_state = 124, .external_lex_state = 16}, - [1197] = {.lex_state = 124, .external_lex_state = 16}, + [1197] = {.lex_state = 116, .external_lex_state = 12}, [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}, + [1201] = {.lex_state = 124, .external_lex_state = 16}, + [1202] = {.lex_state = 84, .external_lex_state = 7}, + [1203] = {.lex_state = 230, .external_lex_state = 10}, [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}, + [1207] = {.lex_state = 228, .external_lex_state = 3}, [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}, + [1209] = {.lex_state = 226, .external_lex_state = 15}, + [1210] = {.lex_state = 94, .external_lex_state = 15}, + [1211] = {.lex_state = 21, .external_lex_state = 11}, + [1212] = {.lex_state = 72, .external_lex_state = 3}, [1213] = {.lex_state = 124, .external_lex_state = 16}, - [1214] = {.lex_state = 94, .external_lex_state = 9}, + [1214] = {.lex_state = 94, .external_lex_state = 15}, [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}, + [1217] = {.lex_state = 124, .external_lex_state = 16}, + [1218] = {.lex_state = 94, .external_lex_state = 15}, [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}, + [1222] = {.lex_state = 94, .external_lex_state = 10}, [1223] = {.lex_state = 124, .external_lex_state = 16}, - [1224] = {.lex_state = 124, .external_lex_state = 16}, - [1225] = {.lex_state = 124, .external_lex_state = 16}, + [1224] = {.lex_state = 94, .external_lex_state = 15}, + [1225] = {.lex_state = 94, .external_lex_state = 15}, [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}, + [1228] = {.lex_state = 72, .external_lex_state = 7}, + [1229] = {.lex_state = 124, .external_lex_state = 16}, [1230] = {.lex_state = 124, .external_lex_state = 16}, - [1231] = {.lex_state = 124, .external_lex_state = 16}, + [1231] = {.lex_state = 94, .external_lex_state = 15}, [1232] = {.lex_state = 124, .external_lex_state = 16}, [1233] = {.lex_state = 124, .external_lex_state = 16}, - [1234] = {.lex_state = 124, .external_lex_state = 16}, + [1234] = {.lex_state = 94, .external_lex_state = 15}, [1235] = {.lex_state = 124, .external_lex_state = 16}, [1236] = {.lex_state = 124, .external_lex_state = 16}, [1237] = {.lex_state = 124, .external_lex_state = 16}, @@ -11703,36 +11711,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1251] = {.lex_state = 72, .external_lex_state = 3}, + [1252] = {.lex_state = 230, .external_lex_state = 10}, [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}, + [1255] = {.lex_state = 72, .external_lex_state = 3}, + [1256] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1258] = {.lex_state = 124, .external_lex_state = 16}, + [1259] = {.lex_state = 72, .external_lex_state = 3}, + [1260] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1262] = {.lex_state = 72, .external_lex_state = 3}, + [1263] = {.lex_state = 72, .external_lex_state = 10}, + [1264] = {.lex_state = 72, .external_lex_state = 3}, [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}, + [1268] = {.lex_state = 72, .external_lex_state = 10}, [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}, + [1272] = {.lex_state = 72, .external_lex_state = 3}, [1273] = {.lex_state = 124, .external_lex_state = 16}, - [1274] = {.lex_state = 116, .external_lex_state = 12}, + [1274] = {.lex_state = 72, .external_lex_state = 3}, [1275] = {.lex_state = 124, .external_lex_state = 16}, - [1276] = {.lex_state = 124, .external_lex_state = 16}, + [1276] = {.lex_state = 21, .external_lex_state = 11}, [1277] = {.lex_state = 124, .external_lex_state = 16}, - [1278] = {.lex_state = 124, .external_lex_state = 16}, + [1278] = {.lex_state = 230, .external_lex_state = 10}, [1279] = {.lex_state = 124, .external_lex_state = 16}, - [1280] = {.lex_state = 116, .external_lex_state = 12}, + [1280] = {.lex_state = 124, .external_lex_state = 16}, [1281] = {.lex_state = 124, .external_lex_state = 16}, [1282] = {.lex_state = 124, .external_lex_state = 16}, [1283] = {.lex_state = 124, .external_lex_state = 16}, @@ -11740,8 +11748,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1288] = {.lex_state = 228, .external_lex_state = 3}, + [1289] = {.lex_state = 228, .external_lex_state = 3}, [1290] = {.lex_state = 124, .external_lex_state = 16}, [1291] = {.lex_state = 124, .external_lex_state = 16}, [1292] = {.lex_state = 124, .external_lex_state = 16}, @@ -11752,21 +11760,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1300] = {.lex_state = 124, .external_lex_state = 16}, + [1301] = {.lex_state = 124, .external_lex_state = 16}, + [1302] = {.lex_state = 228, .external_lex_state = 3}, + [1303] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1308] = {.lex_state = 96, .external_lex_state = 15}, + [1309] = {.lex_state = 96, .external_lex_state = 15}, [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}, + [1314] = {.lex_state = 124, .external_lex_state = 16}, [1315] = {.lex_state = 124, .external_lex_state = 16}, [1316] = {.lex_state = 124, .external_lex_state = 16}, [1317] = {.lex_state = 124, .external_lex_state = 16}, @@ -11774,7 +11782,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1322] = {.lex_state = 72, .external_lex_state = 10}, [1323] = {.lex_state = 124, .external_lex_state = 16}, [1324] = {.lex_state = 124, .external_lex_state = 16}, [1325] = {.lex_state = 124, .external_lex_state = 16}, @@ -11782,7 +11790,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1330] = {.lex_state = 72, .external_lex_state = 10}, [1331] = {.lex_state = 124, .external_lex_state = 16}, [1332] = {.lex_state = 124, .external_lex_state = 16}, [1333] = {.lex_state = 124, .external_lex_state = 16}, @@ -11796,17 +11804,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1344] = {.lex_state = 84, .external_lex_state = 7}, + [1345] = {.lex_state = 226, .external_lex_state = 15}, + [1346] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1351] = {.lex_state = 116, .external_lex_state = 12}, [1352] = {.lex_state = 124, .external_lex_state = 16}, [1353] = {.lex_state = 124, .external_lex_state = 16}, - [1354] = {.lex_state = 124, .external_lex_state = 16}, + [1354] = {.lex_state = 80, .external_lex_state = 10}, [1355] = {.lex_state = 124, .external_lex_state = 16}, [1356] = {.lex_state = 124, .external_lex_state = 16}, [1357] = {.lex_state = 124, .external_lex_state = 16}, @@ -11823,7 +11831,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1371] = {.lex_state = 117, .external_lex_state = 12}, [1372] = {.lex_state = 124, .external_lex_state = 16}, [1373] = {.lex_state = 124, .external_lex_state = 16}, [1374] = {.lex_state = 124, .external_lex_state = 16}, @@ -11832,14 +11840,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1380] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1383] = {.lex_state = 228, .external_lex_state = 3}, + [1384] = {.lex_state = 124, .external_lex_state = 16}, [1385] = {.lex_state = 124, .external_lex_state = 16}, - [1386] = {.lex_state = 124, .external_lex_state = 16}, - [1387] = {.lex_state = 228, .external_lex_state = 3}, + [1386] = {.lex_state = 228, .external_lex_state = 3}, + [1387] = {.lex_state = 124, .external_lex_state = 16}, [1388] = {.lex_state = 124, .external_lex_state = 16}, [1389] = {.lex_state = 124, .external_lex_state = 16}, [1390] = {.lex_state = 124, .external_lex_state = 16}, @@ -11848,50 +11856,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1396] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [1400] = {.lex_state = 21, .external_lex_state = 11}, [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}, + [1403] = {.lex_state = 228, .external_lex_state = 3}, + [1404] = {.lex_state = 21, .external_lex_state = 11}, + [1405] = {.lex_state = 124, .external_lex_state = 16}, + [1406] = {.lex_state = 228, .external_lex_state = 3}, [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}, + [1410] = {.lex_state = 21, .external_lex_state = 11}, + [1411] = {.lex_state = 226, .external_lex_state = 15}, [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}, + [1415] = {.lex_state = 228, .external_lex_state = 3}, + [1416] = {.lex_state = 226, .external_lex_state = 15}, [1417] = {.lex_state = 124, .external_lex_state = 16}, - [1418] = {.lex_state = 84, .external_lex_state = 8}, - [1419] = {.lex_state = 230, .external_lex_state = 9}, + [1418] = {.lex_state = 21, .external_lex_state = 11}, + [1419] = {.lex_state = 228, .external_lex_state = 3}, [1420] = {.lex_state = 124, .external_lex_state = 16}, - [1421] = {.lex_state = 118, .external_lex_state = 6}, + [1421] = {.lex_state = 228, .external_lex_state = 3}, [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}, + [1423] = {.lex_state = 228, .external_lex_state = 3}, + [1424] = {.lex_state = 124, .external_lex_state = 16}, + [1425] = {.lex_state = 124, .external_lex_state = 16}, + [1426] = {.lex_state = 119, .external_lex_state = 14}, [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}, + [1429] = {.lex_state = 118, .external_lex_state = 6}, + [1430] = {.lex_state = 119, .external_lex_state = 8}, + [1431] = {.lex_state = 124, .external_lex_state = 16}, + [1432] = {.lex_state = 118, .external_lex_state = 6}, [1433] = {.lex_state = 124, .external_lex_state = 16}, [1434] = {.lex_state = 124, .external_lex_state = 16}, - [1435] = {.lex_state = 124, .external_lex_state = 16}, + [1435] = {.lex_state = 86, .external_lex_state = 18}, [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}, + [1439] = {.lex_state = 118, .external_lex_state = 6}, [1440] = {.lex_state = 124, .external_lex_state = 16}, [1441] = {.lex_state = 124, .external_lex_state = 16}, [1442] = {.lex_state = 124, .external_lex_state = 16}, @@ -11899,10 +11907,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1447] = {.lex_state = 228, .external_lex_state = 3}, [1448] = {.lex_state = 124, .external_lex_state = 16}, [1449] = {.lex_state = 124, .external_lex_state = 16}, - [1450] = {.lex_state = 124, .external_lex_state = 16}, + [1450] = {.lex_state = 228, .external_lex_state = 3}, [1451] = {.lex_state = 124, .external_lex_state = 16}, [1452] = {.lex_state = 124, .external_lex_state = 16}, [1453] = {.lex_state = 124, .external_lex_state = 16}, @@ -11911,25 +11919,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1459] = {.lex_state = 124, .external_lex_state = 16}, + [1460] = {.lex_state = 116, .external_lex_state = 12}, + [1461] = {.lex_state = 116, .external_lex_state = 12}, + [1462] = {.lex_state = 116, .external_lex_state = 12}, [1463] = {.lex_state = 124, .external_lex_state = 16}, - [1464] = {.lex_state = 118, .external_lex_state = 12}, + [1464] = {.lex_state = 226, .external_lex_state = 15}, [1465] = {.lex_state = 124, .external_lex_state = 16}, [1466] = {.lex_state = 124, .external_lex_state = 16}, - [1467] = {.lex_state = 124, .external_lex_state = 16}, + [1467] = {.lex_state = 226, .external_lex_state = 15}, [1468] = {.lex_state = 124, .external_lex_state = 16}, - [1469] = {.lex_state = 226, .external_lex_state = 15}, - [1470] = {.lex_state = 124, .external_lex_state = 16}, + [1469] = {.lex_state = 124, .external_lex_state = 16}, + [1470] = {.lex_state = 226, .external_lex_state = 15}, [1471] = {.lex_state = 124, .external_lex_state = 16}, - [1472] = {.lex_state = 124, .external_lex_state = 16}, + [1472] = {.lex_state = 118, .external_lex_state = 12}, [1473] = {.lex_state = 124, .external_lex_state = 16}, - [1474] = {.lex_state = 124, .external_lex_state = 16}, - [1475] = {.lex_state = 124, .external_lex_state = 16}, + [1474] = {.lex_state = 21, .external_lex_state = 11}, + [1475] = {.lex_state = 21, .external_lex_state = 11}, [1476] = {.lex_state = 124, .external_lex_state = 16}, - [1477] = {.lex_state = 124, .external_lex_state = 16}, + [1477] = {.lex_state = 226, .external_lex_state = 15}, [1478] = {.lex_state = 124, .external_lex_state = 16}, [1479] = {.lex_state = 124, .external_lex_state = 16}, [1480] = {.lex_state = 124, .external_lex_state = 16}, @@ -11945,7 +11953,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1493] = {.lex_state = 124, .external_lex_state = 16}, [1494] = {.lex_state = 124, .external_lex_state = 16}, [1495] = {.lex_state = 124, .external_lex_state = 16}, [1496] = {.lex_state = 124, .external_lex_state = 16}, @@ -11953,7 +11961,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1501] = {.lex_state = 226, .external_lex_state = 15}, [1502] = {.lex_state = 124, .external_lex_state = 16}, [1503] = {.lex_state = 124, .external_lex_state = 16}, [1504] = {.lex_state = 124, .external_lex_state = 16}, @@ -11977,10 +11985,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1525] = {.lex_state = 86, .external_lex_state = 18}, [1526] = {.lex_state = 124, .external_lex_state = 16}, [1527] = {.lex_state = 124, .external_lex_state = 16}, - [1528] = {.lex_state = 124, .external_lex_state = 16}, + [1528] = {.lex_state = 21, .external_lex_state = 11}, [1529] = {.lex_state = 124, .external_lex_state = 16}, [1530] = {.lex_state = 124, .external_lex_state = 16}, [1531] = {.lex_state = 124, .external_lex_state = 16}, @@ -11996,21 +12004,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1544] = {.lex_state = 230, .external_lex_state = 10}, [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}, + [1550] = {.lex_state = 228, .external_lex_state = 3}, + [1551] = {.lex_state = 228, .external_lex_state = 3}, [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}, + [1558] = {.lex_state = 124, .external_lex_state = 16}, [1559] = {.lex_state = 124, .external_lex_state = 16}, [1560] = {.lex_state = 124, .external_lex_state = 16}, [1561] = {.lex_state = 124, .external_lex_state = 16}, @@ -12022,7 +12030,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1570] = {.lex_state = 124, .external_lex_state = 16}, [1571] = {.lex_state = 124, .external_lex_state = 16}, [1572] = {.lex_state = 124, .external_lex_state = 16}, [1573] = {.lex_state = 124, .external_lex_state = 16}, @@ -12058,14 +12066,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1606] = {.lex_state = 228, .external_lex_state = 3}, [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}, + [1613] = {.lex_state = 116, .external_lex_state = 12}, [1614] = {.lex_state = 124, .external_lex_state = 16}, [1615] = {.lex_state = 124, .external_lex_state = 16}, [1616] = {.lex_state = 124, .external_lex_state = 16}, @@ -12076,600 +12084,600 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1624] = {.lex_state = 118, .external_lex_state = 12}, + [1625] = {.lex_state = 80, .external_lex_state = 3}, + [1626] = {.lex_state = 126, .external_lex_state = 2}, + [1627] = {.lex_state = 228, .external_lex_state = 7}, + [1628] = {.lex_state = 226, .external_lex_state = 10}, [1629] = {.lex_state = 228, .external_lex_state = 3}, - [1630] = {.lex_state = 228, .external_lex_state = 3}, - [1631] = {.lex_state = 228, .external_lex_state = 3}, + [1630] = {.lex_state = 124, .external_lex_state = 16}, + [1631] = {.lex_state = 226, .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}, + [1635] = {.lex_state = 228, .external_lex_state = 3}, + [1636] = {.lex_state = 226, .external_lex_state = 3}, + [1637] = {.lex_state = 228, .external_lex_state = 3}, + [1638] = {.lex_state = 228, .external_lex_state = 3}, + [1639] = {.lex_state = 126, .external_lex_state = 2}, + [1640] = {.lex_state = 228, .external_lex_state = 7}, + [1641] = {.lex_state = 230, .external_lex_state = 15}, + [1642] = {.lex_state = 230, .external_lex_state = 15}, + [1643] = {.lex_state = 228, .external_lex_state = 7}, [1644] = {.lex_state = 228, .external_lex_state = 3}, - [1645] = {.lex_state = 80, .external_lex_state = 9}, - [1646] = {.lex_state = 80, .external_lex_state = 3}, + [1645] = {.lex_state = 126, .external_lex_state = 2}, + [1646] = {.lex_state = 228, .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}, + [1648] = {.lex_state = 228, .external_lex_state = 3}, + [1649] = {.lex_state = 228, .external_lex_state = 3}, + [1650] = {.lex_state = 228, .external_lex_state = 3}, + [1651] = {.lex_state = 228, .external_lex_state = 3}, + [1652] = {.lex_state = 228, .external_lex_state = 7}, + [1653] = {.lex_state = 226, .external_lex_state = 10}, + [1654] = {.lex_state = 126, .external_lex_state = 2}, [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}, + [1657] = {.lex_state = 228, .external_lex_state = 3}, + [1658] = {.lex_state = 228, .external_lex_state = 3}, + [1659] = {.lex_state = 228, .external_lex_state = 3}, + [1660] = {.lex_state = 228, .external_lex_state = 3}, + [1661] = {.lex_state = 228, .external_lex_state = 3}, + [1662] = {.lex_state = 228, .external_lex_state = 3}, + [1663] = {.lex_state = 228, .external_lex_state = 3}, + [1664] = {.lex_state = 228, .external_lex_state = 3}, + [1665] = {.lex_state = 228, .external_lex_state = 3}, + [1666] = {.lex_state = 228, .external_lex_state = 3}, + [1667] = {.lex_state = 228, .external_lex_state = 7}, + [1668] = {.lex_state = 226, .external_lex_state = 3}, + [1669] = {.lex_state = 96, .external_lex_state = 15}, + [1670] = {.lex_state = 96, .external_lex_state = 15}, + [1671] = {.lex_state = 96, .external_lex_state = 15}, + [1672] = {.lex_state = 96, .external_lex_state = 15}, + [1673] = {.lex_state = 96, .external_lex_state = 15}, + [1674] = {.lex_state = 96, .external_lex_state = 15}, + [1675] = {.lex_state = 228, .external_lex_state = 3}, + [1676] = {.lex_state = 96, .external_lex_state = 15}, + [1677] = {.lex_state = 96, .external_lex_state = 15}, + [1678] = {.lex_state = 96, .external_lex_state = 15}, + [1679] = {.lex_state = 96, .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}, + [1681] = {.lex_state = 228, .external_lex_state = 3}, + [1682] = {.lex_state = 96, .external_lex_state = 15}, + [1683] = {.lex_state = 96, .external_lex_state = 15}, + [1684] = {.lex_state = 96, .external_lex_state = 15}, + [1685] = {.lex_state = 96, .external_lex_state = 15}, + [1686] = {.lex_state = 96, .external_lex_state = 15}, + [1687] = {.lex_state = 96, .external_lex_state = 15}, + [1688] = {.lex_state = 96, .external_lex_state = 15}, + [1689] = {.lex_state = 96, .external_lex_state = 15}, [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}, + [1691] = {.lex_state = 96, .external_lex_state = 15}, + [1692] = {.lex_state = 80, .external_lex_state = 3}, + [1693] = {.lex_state = 80, .external_lex_state = 3}, + [1694] = {.lex_state = 80, .external_lex_state = 3}, + [1695] = {.lex_state = 80, .external_lex_state = 3}, + [1696] = {.lex_state = 80, .external_lex_state = 3}, + [1697] = {.lex_state = 80, .external_lex_state = 3}, + [1698] = {.lex_state = 80, .external_lex_state = 3}, + [1699] = {.lex_state = 80, .external_lex_state = 3}, + [1700] = {.lex_state = 80, .external_lex_state = 3}, + [1701] = {.lex_state = 80, .external_lex_state = 3}, + [1702] = {.lex_state = 80, .external_lex_state = 3}, + [1703] = {.lex_state = 80, .external_lex_state = 3}, + [1704] = {.lex_state = 96, .external_lex_state = 15}, + [1705] = {.lex_state = 80, .external_lex_state = 3}, + [1706] = {.lex_state = 80, .external_lex_state = 3}, + [1707] = {.lex_state = 228, .external_lex_state = 7}, + [1708] = {.lex_state = 80, .external_lex_state = 3}, + [1709] = {.lex_state = 80, .external_lex_state = 3}, + [1710] = {.lex_state = 96, .external_lex_state = 10}, + [1711] = {.lex_state = 80, .external_lex_state = 3}, + [1712] = {.lex_state = 80, .external_lex_state = 3}, + [1713] = {.lex_state = 80, .external_lex_state = 3}, + [1714] = {.lex_state = 228, .external_lex_state = 3}, + [1715] = {.lex_state = 118, .external_lex_state = 6}, + [1716] = {.lex_state = 226, .external_lex_state = 15}, [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}, + [1718] = {.lex_state = 228, .external_lex_state = 3}, + [1719] = {.lex_state = 226, .external_lex_state = 15}, + [1720] = {.lex_state = 226, .external_lex_state = 15}, [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}, + [1724] = {.lex_state = 226, .external_lex_state = 15}, + [1725] = {.lex_state = 226, .external_lex_state = 15}, + [1726] = {.lex_state = 226, .external_lex_state = 15}, + [1727] = {.lex_state = 226, .external_lex_state = 15}, + [1728] = {.lex_state = 226, .external_lex_state = 15}, + [1729] = {.lex_state = 226, .external_lex_state = 15}, + [1730] = {.lex_state = 228, .external_lex_state = 3}, + [1731] = {.lex_state = 228, .external_lex_state = 3}, + [1732] = {.lex_state = 228, .external_lex_state = 3}, + [1733] = {.lex_state = 230, .external_lex_state = 15}, + [1734] = {.lex_state = 228, .external_lex_state = 3}, + [1735] = {.lex_state = 226, .external_lex_state = 15}, + [1736] = {.lex_state = 230, .external_lex_state = 15}, + [1737] = {.lex_state = 96, .external_lex_state = 15}, + [1738] = {.lex_state = 80, .external_lex_state = 3}, + [1739] = {.lex_state = 226, .external_lex_state = 15}, [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}, + [1741] = {.lex_state = 96, .external_lex_state = 15}, + [1742] = {.lex_state = 226, .external_lex_state = 15}, + [1743] = {.lex_state = 230, .external_lex_state = 15}, + [1744] = {.lex_state = 228, .external_lex_state = 3}, + [1745] = {.lex_state = 226, .external_lex_state = 15}, + [1746] = {.lex_state = 96, .external_lex_state = 15}, + [1747] = {.lex_state = 226, .external_lex_state = 3}, + [1748] = {.lex_state = 228, .external_lex_state = 3}, + [1749] = {.lex_state = 228, .external_lex_state = 3}, + [1750] = {.lex_state = 96, .external_lex_state = 15}, + [1751] = {.lex_state = 96, .external_lex_state = 15}, [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}, + [1753] = {.lex_state = 226, .external_lex_state = 15}, + [1754] = {.lex_state = 226, .external_lex_state = 10}, + [1755] = {.lex_state = 80, .external_lex_state = 7}, [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}, + [1757] = {.lex_state = 226, .external_lex_state = 3}, + [1758] = {.lex_state = 226, .external_lex_state = 15}, + [1759] = {.lex_state = 228, .external_lex_state = 3}, + [1760] = {.lex_state = 226, .external_lex_state = 3}, [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}, + [1762] = {.lex_state = 226, .external_lex_state = 15}, + [1763] = {.lex_state = 226, .external_lex_state = 15}, + [1764] = {.lex_state = 118, .external_lex_state = 6}, + [1765] = {.lex_state = 118, .external_lex_state = 6}, + [1766] = {.lex_state = 118, .external_lex_state = 6}, + [1767] = {.lex_state = 230, .external_lex_state = 15}, + [1768] = {.lex_state = 96, .external_lex_state = 15}, + [1769] = {.lex_state = 90, .external_lex_state = 7}, + [1770] = {.lex_state = 118, .external_lex_state = 6}, + [1771] = {.lex_state = 118, .external_lex_state = 6}, + [1772] = {.lex_state = 94, .external_lex_state = 10}, + [1773] = {.lex_state = 80, .external_lex_state = 7}, + [1774] = {.lex_state = 118, .external_lex_state = 6}, + [1775] = {.lex_state = 80, .external_lex_state = 3}, + [1776] = {.lex_state = 80, .external_lex_state = 3}, + [1777] = {.lex_state = 90, .external_lex_state = 7}, + [1778] = {.lex_state = 118, .external_lex_state = 6}, + [1779] = {.lex_state = 118, .external_lex_state = 6}, + [1780] = {.lex_state = 118, .external_lex_state = 6}, + [1781] = {.lex_state = 118, .external_lex_state = 6}, + [1782] = {.lex_state = 80, .external_lex_state = 3}, + [1783] = {.lex_state = 80, .external_lex_state = 3}, + [1784] = {.lex_state = 80, .external_lex_state = 3}, + [1785] = {.lex_state = 80, .external_lex_state = 10}, + [1786] = {.lex_state = 118, .external_lex_state = 6}, + [1787] = {.lex_state = 118, .external_lex_state = 6}, + [1788] = {.lex_state = 126, .external_lex_state = 2}, + [1789] = {.lex_state = 118, .external_lex_state = 6}, + [1790] = {.lex_state = 226, .external_lex_state = 15}, [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}, + [1793] = {.lex_state = 90, .external_lex_state = 7}, + [1794] = {.lex_state = 90, .external_lex_state = 7}, + [1795] = {.lex_state = 228, .external_lex_state = 3}, + [1796] = {.lex_state = 119, .external_lex_state = 8}, + [1797] = {.lex_state = 119, .external_lex_state = 8}, + [1798] = {.lex_state = 119, .external_lex_state = 8}, + [1799] = {.lex_state = 119, .external_lex_state = 8}, + [1800] = {.lex_state = 119, .external_lex_state = 8}, + [1801] = {.lex_state = 119, .external_lex_state = 14}, + [1802] = {.lex_state = 119, .external_lex_state = 8}, + [1803] = {.lex_state = 119, .external_lex_state = 8}, + [1804] = {.lex_state = 119, .external_lex_state = 8}, + [1805] = {.lex_state = 119, .external_lex_state = 8}, + [1806] = {.lex_state = 119, .external_lex_state = 8}, + [1807] = {.lex_state = 226, .external_lex_state = 15}, + [1808] = {.lex_state = 119, .external_lex_state = 8}, + [1809] = {.lex_state = 119, .external_lex_state = 8}, + [1810] = {.lex_state = 119, .external_lex_state = 8}, + [1811] = {.lex_state = 118, .external_lex_state = 6}, + [1812] = {.lex_state = 228, .external_lex_state = 3}, + [1813] = {.lex_state = 118, .external_lex_state = 6}, + [1814] = {.lex_state = 118, .external_lex_state = 6}, + [1815] = {.lex_state = 226, .external_lex_state = 15}, + [1816] = {.lex_state = 228, .external_lex_state = 3}, + [1817] = {.lex_state = 226, .external_lex_state = 15}, + [1818] = {.lex_state = 226, .external_lex_state = 15}, [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}, + [1820] = {.lex_state = 119, .external_lex_state = 8}, + [1821] = {.lex_state = 118, .external_lex_state = 6}, + [1822] = {.lex_state = 118, .external_lex_state = 6}, + [1823] = {.lex_state = 226, .external_lex_state = 15}, + [1824] = {.lex_state = 230, .external_lex_state = 15}, + [1825] = {.lex_state = 226, .external_lex_state = 15}, + [1826] = {.lex_state = 119, .external_lex_state = 8}, + [1827] = {.lex_state = 230, .external_lex_state = 15}, + [1828] = {.lex_state = 118, .external_lex_state = 6}, + [1829] = {.lex_state = 118, .external_lex_state = 6}, + [1830] = {.lex_state = 119, .external_lex_state = 8}, + [1831] = {.lex_state = 119, .external_lex_state = 8}, + [1832] = {.lex_state = 119, .external_lex_state = 8}, + [1833] = {.lex_state = 119, .external_lex_state = 8}, + [1834] = {.lex_state = 119, .external_lex_state = 8}, + [1835] = {.lex_state = 119, .external_lex_state = 8}, + [1836] = {.lex_state = 119, .external_lex_state = 8}, + [1837] = {.lex_state = 119, .external_lex_state = 8}, + [1838] = {.lex_state = 228, .external_lex_state = 3}, + [1839] = {.lex_state = 228, .external_lex_state = 3}, + [1840] = {.lex_state = 228, .external_lex_state = 3}, + [1841] = {.lex_state = 118, .external_lex_state = 6}, + [1842] = {.lex_state = 228, .external_lex_state = 3}, + [1843] = {.lex_state = 119, .external_lex_state = 8}, + [1844] = {.lex_state = 119, .external_lex_state = 8}, + [1845] = {.lex_state = 228, .external_lex_state = 7}, + [1846] = {.lex_state = 118, .external_lex_state = 6}, + [1847] = {.lex_state = 118, .external_lex_state = 6}, + [1848] = {.lex_state = 118, .external_lex_state = 6}, + [1849] = {.lex_state = 119, .external_lex_state = 8}, + [1850] = {.lex_state = 118, .external_lex_state = 6}, + [1851] = {.lex_state = 119, .external_lex_state = 8}, + [1852] = {.lex_state = 228, .external_lex_state = 3}, + [1853] = {.lex_state = 226, .external_lex_state = 15}, + [1854] = {.lex_state = 118, .external_lex_state = 6}, + [1855] = {.lex_state = 118, .external_lex_state = 6}, + [1856] = {.lex_state = 226, .external_lex_state = 15}, + [1857] = {.lex_state = 226, .external_lex_state = 15}, + [1858] = {.lex_state = 226, .external_lex_state = 15}, + [1859] = {.lex_state = 228, .external_lex_state = 7}, + [1860] = {.lex_state = 226, .external_lex_state = 15}, + [1861] = {.lex_state = 116, .external_lex_state = 12}, + [1862] = {.lex_state = 226, .external_lex_state = 10}, + [1863] = {.lex_state = 119, .external_lex_state = 8}, + [1864] = {.lex_state = 226, .external_lex_state = 15}, + [1865] = {.lex_state = 226, .external_lex_state = 15}, + [1866] = {.lex_state = 226, .external_lex_state = 15}, + [1867] = {.lex_state = 226, .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}, + [1870] = {.lex_state = 226, .external_lex_state = 15}, + [1871] = {.lex_state = 226, .external_lex_state = 15}, + [1872] = {.lex_state = 228, .external_lex_state = 3}, + [1873] = {.lex_state = 228, .external_lex_state = 3}, + [1874] = {.lex_state = 94, .external_lex_state = 10}, + [1875] = {.lex_state = 228, .external_lex_state = 3}, + [1876] = {.lex_state = 228, .external_lex_state = 3}, + [1877] = {.lex_state = 228, .external_lex_state = 3}, [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}, + [1882] = {.lex_state = 80, .external_lex_state = 10}, + [1883] = {.lex_state = 226, .external_lex_state = 15}, + [1884] = {.lex_state = 226, .external_lex_state = 15}, + [1885] = {.lex_state = 226, .external_lex_state = 15}, + [1886] = {.lex_state = 80, .external_lex_state = 10}, [1887] = {.lex_state = 226, .external_lex_state = 15}, - [1888] = {.lex_state = 226, .external_lex_state = 15}, - [1889] = {.lex_state = 94, .external_lex_state = 9}, + [1888] = {.lex_state = 226, .external_lex_state = 3}, + [1889] = {.lex_state = 226, .external_lex_state = 15}, [1890] = {.lex_state = 226, .external_lex_state = 15}, [1891] = {.lex_state = 226, .external_lex_state = 15}, - [1892] = {.lex_state = 226, .external_lex_state = 9}, + [1892] = {.lex_state = 80, .external_lex_state = 10}, [1893] = {.lex_state = 226, .external_lex_state = 15}, - [1894] = {.lex_state = 226, .external_lex_state = 3}, - [1895] = {.lex_state = 226, .external_lex_state = 15}, + [1894] = {.lex_state = 226, .external_lex_state = 15}, + [1895] = {.lex_state = 226, .external_lex_state = 3}, [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}, + [1897] = {.lex_state = 226, .external_lex_state = 15}, + [1898] = {.lex_state = 226, .external_lex_state = 3}, + [1899] = {.lex_state = 226, .external_lex_state = 3}, + [1900] = {.lex_state = 226, .external_lex_state = 10}, + [1901] = {.lex_state = 94, .external_lex_state = 10}, + [1902] = {.lex_state = 226, .external_lex_state = 3}, + [1903] = {.lex_state = 72, .external_lex_state = 7}, + [1904] = {.lex_state = 226, .external_lex_state = 3}, + [1905] = {.lex_state = 94, .external_lex_state = 10}, + [1906] = {.lex_state = 94, .external_lex_state = 10}, + [1907] = {.lex_state = 96, .external_lex_state = 10}, + [1908] = {.lex_state = 230, .external_lex_state = 15}, + [1909] = {.lex_state = 230, .external_lex_state = 15}, + [1910] = {.lex_state = 230, .external_lex_state = 15}, + [1911] = {.lex_state = 230, .external_lex_state = 15}, + [1912] = {.lex_state = 226, .external_lex_state = 10}, + [1913] = {.lex_state = 116, .external_lex_state = 12}, + [1914] = {.lex_state = 230, .external_lex_state = 15}, + [1915] = {.lex_state = 230, .external_lex_state = 15}, [1916] = {.lex_state = 116, .external_lex_state = 12}, - [1917] = {.lex_state = 119, .external_lex_state = 14}, - [1918] = {.lex_state = 116, .external_lex_state = 12}, + [1917] = {.lex_state = 96, .external_lex_state = 10}, + [1918] = {.lex_state = 230, .external_lex_state = 15}, [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}, + [1920] = {.lex_state = 230, .external_lex_state = 15}, + [1921] = {.lex_state = 96, .external_lex_state = 10}, + [1922] = {.lex_state = 230, .external_lex_state = 15}, + [1923] = {.lex_state = 230, .external_lex_state = 15}, + [1924] = {.lex_state = 116, .external_lex_state = 12}, + [1925] = {.lex_state = 116, .external_lex_state = 12}, + [1926] = {.lex_state = 230, .external_lex_state = 15}, + [1927] = {.lex_state = 230, .external_lex_state = 15}, + [1928] = {.lex_state = 230, .external_lex_state = 15}, [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}, + [1930] = {.lex_state = 230, .external_lex_state = 15}, + [1931] = {.lex_state = 96, .external_lex_state = 10}, + [1932] = {.lex_state = 118, .external_lex_state = 12}, + [1933] = {.lex_state = 116, .external_lex_state = 12}, + [1934] = {.lex_state = 116, .external_lex_state = 12}, [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}, + [1936] = {.lex_state = 116, .external_lex_state = 12}, + [1937] = {.lex_state = 116, .external_lex_state = 12}, + [1938] = {.lex_state = 116, .external_lex_state = 12}, + [1939] = {.lex_state = 119, .external_lex_state = 14}, + [1940] = {.lex_state = 116, .external_lex_state = 12}, + [1941] = {.lex_state = 119, .external_lex_state = 14}, [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}, + [1943] = {.lex_state = 116, .external_lex_state = 12}, + [1944] = {.lex_state = 228, .external_lex_state = 7}, + [1945] = {.lex_state = 119, .external_lex_state = 14}, [1946] = {.lex_state = 116, .external_lex_state = 12}, - [1947] = {.lex_state = 226, .external_lex_state = 3}, - [1948] = {.lex_state = 118, .external_lex_state = 12}, + [1947] = {.lex_state = 116, .external_lex_state = 12}, + [1948] = {.lex_state = 226, .external_lex_state = 7}, [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}, + [1950] = {.lex_state = 116, .external_lex_state = 12}, + [1951] = {.lex_state = 228, .external_lex_state = 7}, + [1952] = {.lex_state = 230, .external_lex_state = 10}, [1953] = {.lex_state = 119, .external_lex_state = 14}, - [1954] = {.lex_state = 226, .external_lex_state = 3}, - [1955] = {.lex_state = 116, .external_lex_state = 12}, + [1954] = {.lex_state = 119, .external_lex_state = 14}, + [1955] = {.lex_state = 119, .external_lex_state = 14}, [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}, + [1957] = {.lex_state = 228, .external_lex_state = 7}, + [1958] = {.lex_state = 118, .external_lex_state = 12}, + [1959] = {.lex_state = 116, .external_lex_state = 12}, [1960] = {.lex_state = 119, .external_lex_state = 14}, - [1961] = {.lex_state = 116, .external_lex_state = 12}, + [1961] = {.lex_state = 119, .external_lex_state = 14}, [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}, + [1963] = {.lex_state = 116, .external_lex_state = 12}, + [1964] = {.lex_state = 116, .external_lex_state = 12}, + [1965] = {.lex_state = 119, .external_lex_state = 14}, + [1966] = {.lex_state = 116, .external_lex_state = 12}, + [1967] = {.lex_state = 116, .external_lex_state = 12}, + [1968] = {.lex_state = 116, .external_lex_state = 12}, + [1969] = {.lex_state = 228, .external_lex_state = 7}, + [1970] = {.lex_state = 226, .external_lex_state = 7}, + [1971] = {.lex_state = 226, .external_lex_state = 10}, + [1972] = {.lex_state = 116, .external_lex_state = 12}, + [1973] = {.lex_state = 116, .external_lex_state = 12}, + [1974] = {.lex_state = 116, .external_lex_state = 12}, + [1975] = {.lex_state = 228, .external_lex_state = 7}, + [1976] = {.lex_state = 116, .external_lex_state = 12}, + [1977] = {.lex_state = 118, .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}, + [1979] = {.lex_state = 230, .external_lex_state = 15}, + [1980] = {.lex_state = 226, .external_lex_state = 3}, + [1981] = {.lex_state = 226, .external_lex_state = 3}, + [1982] = {.lex_state = 226, .external_lex_state = 3}, + [1983] = {.lex_state = 226, .external_lex_state = 3}, + [1984] = {.lex_state = 116, .external_lex_state = 12}, + [1985] = {.lex_state = 226, .external_lex_state = 3}, + [1986] = {.lex_state = 226, .external_lex_state = 3}, + [1987] = {.lex_state = 226, .external_lex_state = 3}, + [1988] = {.lex_state = 226, .external_lex_state = 3}, + [1989] = {.lex_state = 226, .external_lex_state = 3}, + [1990] = {.lex_state = 226, .external_lex_state = 3}, + [1991] = {.lex_state = 226, .external_lex_state = 10}, + [1992] = {.lex_state = 116, .external_lex_state = 12}, + [1993] = {.lex_state = 226, .external_lex_state = 3}, + [1994] = {.lex_state = 226, .external_lex_state = 3}, + [1995] = {.lex_state = 226, .external_lex_state = 3}, + [1996] = {.lex_state = 226, .external_lex_state = 3}, + [1997] = {.lex_state = 119, .external_lex_state = 14}, + [1998] = {.lex_state = 226, .external_lex_state = 3}, + [1999] = {.lex_state = 226, .external_lex_state = 10}, + [2000] = {.lex_state = 226, .external_lex_state = 3}, + [2001] = {.lex_state = 226, .external_lex_state = 3}, + [2002] = {.lex_state = 226, .external_lex_state = 3}, + [2003] = {.lex_state = 116, .external_lex_state = 12}, + [2004] = {.lex_state = 226, .external_lex_state = 3}, + [2005] = {.lex_state = 226, .external_lex_state = 3}, + [2006] = {.lex_state = 116, .external_lex_state = 12}, + [2007] = {.lex_state = 226, .external_lex_state = 3}, + [2008] = {.lex_state = 226, .external_lex_state = 3}, + [2009] = {.lex_state = 226, .external_lex_state = 3}, + [2010] = {.lex_state = 230, .external_lex_state = 10}, [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}, + [2012] = {.lex_state = 226, .external_lex_state = 10}, + [2013] = {.lex_state = 226, .external_lex_state = 3}, + [2014] = {.lex_state = 226, .external_lex_state = 3}, + [2015] = {.lex_state = 226, .external_lex_state = 3}, + [2016] = {.lex_state = 226, .external_lex_state = 3}, + [2017] = {.lex_state = 226, .external_lex_state = 3}, + [2018] = {.lex_state = 226, .external_lex_state = 3}, + [2019] = {.lex_state = 226, .external_lex_state = 3}, + [2020] = {.lex_state = 226, .external_lex_state = 3}, + [2021] = {.lex_state = 230, .external_lex_state = 15}, + [2022] = {.lex_state = 230, .external_lex_state = 15}, + [2023] = {.lex_state = 230, .external_lex_state = 15}, [2024] = {.lex_state = 230, .external_lex_state = 15}, - [2025] = {.lex_state = 230, .external_lex_state = 15}, + [2025] = {.lex_state = 226, .external_lex_state = 3}, [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}, + [2028] = {.lex_state = 230, .external_lex_state = 15}, + [2029] = {.lex_state = 226, .external_lex_state = 7}, [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}, + [2031] = {.lex_state = 226, .external_lex_state = 3}, + [2032] = {.lex_state = 116, .external_lex_state = 12}, + [2033] = {.lex_state = 226, .external_lex_state = 3}, + [2034] = {.lex_state = 230, .external_lex_state = 15}, + [2035] = {.lex_state = 226, .external_lex_state = 3}, + [2036] = {.lex_state = 226, .external_lex_state = 3}, + [2037] = {.lex_state = 226, .external_lex_state = 3}, + [2038] = {.lex_state = 226, .external_lex_state = 3}, + [2039] = {.lex_state = 116, .external_lex_state = 12}, + [2040] = {.lex_state = 226, .external_lex_state = 3}, [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}, + [2046] = {.lex_state = 226, .external_lex_state = 3}, + [2047] = {.lex_state = 226, .external_lex_state = 3}, + [2048] = {.lex_state = 226, .external_lex_state = 3}, [2049] = {.lex_state = 230, .external_lex_state = 15}, [2050] = {.lex_state = 230, .external_lex_state = 15}, - [2051] = {.lex_state = 116, .external_lex_state = 12}, + [2051] = {.lex_state = 226, .external_lex_state = 3}, [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}, + [2054] = {.lex_state = 226, .external_lex_state = 10}, + [2055] = {.lex_state = 226, .external_lex_state = 3}, + [2056] = {.lex_state = 230, .external_lex_state = 15}, + [2057] = {.lex_state = 228, .external_lex_state = 7}, + [2058] = {.lex_state = 116, .external_lex_state = 12}, + [2059] = {.lex_state = 228, .external_lex_state = 7}, [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}, + [2061] = {.lex_state = 226, .external_lex_state = 3}, + [2062] = {.lex_state = 226, .external_lex_state = 7}, + [2063] = {.lex_state = 226, .external_lex_state = 3}, [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}, + [2065] = {.lex_state = 228, .external_lex_state = 7}, + [2066] = {.lex_state = 96, .external_lex_state = 10}, + [2067] = {.lex_state = 226, .external_lex_state = 3}, + [2068] = {.lex_state = 226, .external_lex_state = 3}, + [2069] = {.lex_state = 226, .external_lex_state = 3}, + [2070] = {.lex_state = 118, .external_lex_state = 12}, + [2071] = {.lex_state = 116, .external_lex_state = 12}, + [2072] = {.lex_state = 116, .external_lex_state = 12}, + [2073] = {.lex_state = 230, .external_lex_state = 15}, + [2074] = {.lex_state = 230, .external_lex_state = 15}, + [2075] = {.lex_state = 226, .external_lex_state = 3}, [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}, + [2077] = {.lex_state = 116, .external_lex_state = 12}, + [2078] = {.lex_state = 230, .external_lex_state = 15}, + [2079] = {.lex_state = 230, .external_lex_state = 15}, + [2080] = {.lex_state = 116, .external_lex_state = 12}, [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}, + [2082] = {.lex_state = 116, .external_lex_state = 12}, + [2083] = {.lex_state = 230, .external_lex_state = 15}, + [2084] = {.lex_state = 230, .external_lex_state = 10}, [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}, + [2086] = {.lex_state = 230, .external_lex_state = 15}, + [2087] = {.lex_state = 118, .external_lex_state = 12}, + [2088] = {.lex_state = 226, .external_lex_state = 3}, [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}, + [2091] = {.lex_state = 226, .external_lex_state = 3}, + [2092] = {.lex_state = 230, .external_lex_state = 15}, + [2093] = {.lex_state = 226, .external_lex_state = 10}, + [2094] = {.lex_state = 230, .external_lex_state = 15}, + [2095] = {.lex_state = 80, .external_lex_state = 7}, + [2096] = {.lex_state = 230, .external_lex_state = 15}, + [2097] = {.lex_state = 230, .external_lex_state = 15}, [2098] = {.lex_state = 116, .external_lex_state = 12}, - [2099] = {.lex_state = 226, .external_lex_state = 3}, - [2100] = {.lex_state = 118, .external_lex_state = 12}, + [2099] = {.lex_state = 230, .external_lex_state = 15}, + [2100] = {.lex_state = 226, .external_lex_state = 3}, [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}, + [2102] = {.lex_state = 230, .external_lex_state = 15}, + [2103] = {.lex_state = 116, .external_lex_state = 12}, + [2104] = {.lex_state = 230, .external_lex_state = 15}, + [2105] = {.lex_state = 116, .external_lex_state = 12}, + [2106] = {.lex_state = 230, .external_lex_state = 15}, + [2107] = {.lex_state = 230, .external_lex_state = 15}, + [2108] = {.lex_state = 230, .external_lex_state = 15}, + [2109] = {.lex_state = 230, .external_lex_state = 15}, + [2110] = {.lex_state = 116, .external_lex_state = 12}, + [2111] = {.lex_state = 230, .external_lex_state = 15}, + [2112] = {.lex_state = 230, .external_lex_state = 15}, + [2113] = {.lex_state = 116, .external_lex_state = 12}, + [2114] = {.lex_state = 96, .external_lex_state = 10}, + [2115] = {.lex_state = 230, .external_lex_state = 15}, + [2116] = {.lex_state = 116, .external_lex_state = 12}, + [2117] = {.lex_state = 118, .external_lex_state = 12}, + [2118] = {.lex_state = 116, .external_lex_state = 12}, + [2119] = {.lex_state = 226, .external_lex_state = 3}, + [2120] = {.lex_state = 230, .external_lex_state = 15}, [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}, + [2122] = {.lex_state = 116, .external_lex_state = 12}, + [2123] = {.lex_state = 230, .external_lex_state = 10}, + [2124] = {.lex_state = 226, .external_lex_state = 10}, + [2125] = {.lex_state = 230, .external_lex_state = 15}, + [2126] = {.lex_state = 118, .external_lex_state = 12}, + [2127] = {.lex_state = 118, .external_lex_state = 12}, + [2128] = {.lex_state = 118, .external_lex_state = 12}, + [2129] = {.lex_state = 226, .external_lex_state = 10}, + [2130] = {.lex_state = 230, .external_lex_state = 15}, + [2131] = {.lex_state = 230, .external_lex_state = 15}, + [2132] = {.lex_state = 230, .external_lex_state = 15}, + [2133] = {.lex_state = 116, .external_lex_state = 12}, + [2134] = {.lex_state = 230, .external_lex_state = 15}, + [2135] = {.lex_state = 116, .external_lex_state = 12}, + [2136] = {.lex_state = 230, .external_lex_state = 15}, + [2137] = {.lex_state = 230, .external_lex_state = 15}, + [2138] = {.lex_state = 230, .external_lex_state = 15}, + [2139] = {.lex_state = 116, .external_lex_state = 12}, + [2140] = {.lex_state = 118, .external_lex_state = 12}, + [2141] = {.lex_state = 118, .external_lex_state = 12}, + [2142] = {.lex_state = 118, .external_lex_state = 12}, + [2143] = {.lex_state = 116, .external_lex_state = 12}, + [2144] = {.lex_state = 86, .external_lex_state = 19}, + [2145] = {.lex_state = 230, .external_lex_state = 10}, + [2146] = {.lex_state = 86, .external_lex_state = 19}, + [2147] = {.lex_state = 46, .external_lex_state = 7}, + [2148] = {.lex_state = 230, .external_lex_state = 10}, + [2149] = {.lex_state = 46, .external_lex_state = 7}, + [2150] = {.lex_state = 226, .external_lex_state = 7}, + [2151] = {.lex_state = 230, .external_lex_state = 10}, + [2152] = {.lex_state = 226, .external_lex_state = 7}, + [2153] = {.lex_state = 230, .external_lex_state = 10}, + [2154] = {.lex_state = 230, .external_lex_state = 10}, + [2155] = {.lex_state = 86, .external_lex_state = 19}, + [2156] = {.lex_state = 230, .external_lex_state = 10}, + [2157] = {.lex_state = 86, .external_lex_state = 19}, [2158] = {.lex_state = 86, .external_lex_state = 19}, - [2159] = {.lex_state = 86, .external_lex_state = 19}, + [2159] = {.lex_state = 106, .external_lex_state = 16}, [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}, + [2161] = {.lex_state = 230, .external_lex_state = 10}, + [2162] = {.lex_state = 86, .external_lex_state = 19}, + [2163] = {.lex_state = 230, .external_lex_state = 10}, [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}, + [2165] = {.lex_state = 230, .external_lex_state = 10}, + [2166] = {.lex_state = 86, .external_lex_state = 19}, + [2167] = {.lex_state = 86, .external_lex_state = 19}, + [2168] = {.lex_state = 230, .external_lex_state = 10}, + [2169] = {.lex_state = 230, .external_lex_state = 10}, + [2170] = {.lex_state = 107, .external_lex_state = 2}, + [2171] = {.lex_state = 47, .external_lex_state = 7}, + [2172] = {.lex_state = 220, .external_lex_state = 7}, + [2173] = {.lex_state = 107, .external_lex_state = 2}, + [2174] = {.lex_state = 47, .external_lex_state = 7}, + [2175] = {.lex_state = 220, .external_lex_state = 7}, + [2176] = {.lex_state = 220, .external_lex_state = 7}, + [2177] = {.lex_state = 220, .external_lex_state = 7}, [2178] = {.lex_state = 113}, [2179] = {.lex_state = 113}, - [2180] = {.lex_state = 113, .external_lex_state = 20}, + [2180] = {.lex_state = 113}, [2181] = {.lex_state = 113}, - [2182] = {.lex_state = 113}, + [2182] = {.lex_state = 113, .external_lex_state = 20}, [2183] = {.lex_state = 113}, [2184] = {.lex_state = 113}, - [2185] = {.lex_state = 113, .external_lex_state = 20}, + [2185] = {.lex_state = 113}, [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}, + [2192] = {.lex_state = 113}, [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}, + [2195] = {.lex_state = 113}, + [2196] = {.lex_state = 113, .external_lex_state = 20}, + [2197] = {.lex_state = 113, .external_lex_state = 20}, + [2198] = {.lex_state = 113, .external_lex_state = 20}, + [2199] = {.lex_state = 113, .external_lex_state = 20}, [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}, + [2204] = {.lex_state = 113}, + [2205] = {.lex_state = 113}, [2206] = {.lex_state = 113}, - [2207] = {.lex_state = 98, .external_lex_state = 19}, - [2208] = {.lex_state = 98, .external_lex_state = 19}, + [2207] = {.lex_state = 113}, + [2208] = {.lex_state = 113}, [2209] = {.lex_state = 113}, [2210] = {.lex_state = 113}, - [2211] = {.lex_state = 113}, + [2211] = {.lex_state = 98, .external_lex_state = 19}, [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}, + [2217] = {.lex_state = 113}, [2218] = {.lex_state = 113}, [2219] = {.lex_state = 113}, [2220] = {.lex_state = 113}, @@ -12678,46 +12686,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2223] = {.lex_state = 113}, [2224] = {.lex_state = 113}, [2225] = {.lex_state = 113}, - [2226] = {.lex_state = 113}, + [2226] = {.lex_state = 98, .external_lex_state = 19}, [2227] = {.lex_state = 113}, - [2228] = {.lex_state = 98, .external_lex_state = 19}, - [2229] = {.lex_state = 98, .external_lex_state = 19}, - [2230] = {.lex_state = 113}, + [2228] = {.lex_state = 113}, + [2229] = {.lex_state = 113}, + [2230] = {.lex_state = 98, .external_lex_state = 19}, [2231] = {.lex_state = 113}, [2232] = {.lex_state = 113}, [2233] = {.lex_state = 98, .external_lex_state = 19}, - [2234] = {.lex_state = 113}, - [2235] = {.lex_state = 113}, + [2234] = {.lex_state = 98, .external_lex_state = 19}, + [2235] = {.lex_state = 98, .external_lex_state = 19}, [2236] = {.lex_state = 98, .external_lex_state = 19}, - [2237] = {.lex_state = 113}, + [2237] = {.lex_state = 98, .external_lex_state = 19}, [2238] = {.lex_state = 113}, [2239] = {.lex_state = 113}, [2240] = {.lex_state = 113}, - [2241] = {.lex_state = 113}, + [2241] = {.lex_state = 98, .external_lex_state = 19}, [2242] = {.lex_state = 113}, [2243] = {.lex_state = 113}, [2244] = {.lex_state = 113}, - [2245] = {.lex_state = 113}, + [2245] = {.lex_state = 98, .external_lex_state = 19}, [2246] = {.lex_state = 113}, - [2247] = {.lex_state = 113}, + [2247] = {.lex_state = 98, .external_lex_state = 19}, [2248] = {.lex_state = 113}, - [2249] = {.lex_state = 98, .external_lex_state = 19}, + [2249] = {.lex_state = 113}, [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}, + [2251] = {.lex_state = 113}, + [2252] = {.lex_state = 113}, + [2253] = {.lex_state = 98, .external_lex_state = 19}, + [2254] = {.lex_state = 113}, + [2255] = {.lex_state = 113}, + [2256] = {.lex_state = 113}, + [2257] = {.lex_state = 123, .external_lex_state = 21}, + [2258] = {.lex_state = 124, .external_lex_state = 21}, [2259] = {.lex_state = 124, .external_lex_state = 21}, - [2260] = {.lex_state = 123, .external_lex_state = 21}, + [2260] = {.lex_state = 124, .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}, + [2262] = {.lex_state = 123, .external_lex_state = 21}, + [2263] = {.lex_state = 124, .external_lex_state = 21}, + [2264] = {.lex_state = 123, .external_lex_state = 21}, + [2265] = {.lex_state = 123, .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}, @@ -12729,633 +12737,633 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2277] = {.lex_state = 124, .external_lex_state = 16}, [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}, + [2280] = {.lex_state = 123, .external_lex_state = 16}, + [2281] = {.lex_state = 123, .external_lex_state = 16}, [2282] = {.lex_state = 124, .external_lex_state = 21}, - [2283] = {.lex_state = 124, .external_lex_state = 21}, + [2283] = {.lex_state = 123, .external_lex_state = 16}, [2284] = {.lex_state = 124, .external_lex_state = 21}, - [2285] = {.lex_state = 124, .external_lex_state = 16}, - [2286] = {.lex_state = 124, .external_lex_state = 21}, + [2285] = {.lex_state = 124, .external_lex_state = 21}, + [2286] = {.lex_state = 124, .external_lex_state = 16}, [2287] = {.lex_state = 124, .external_lex_state = 21}, [2288] = {.lex_state = 124, .external_lex_state = 21}, - [2289] = {.lex_state = 124, .external_lex_state = 16}, + [2289] = {.lex_state = 124, .external_lex_state = 21}, [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}, + [2294] = {.lex_state = 124, .external_lex_state = 21}, + [2295] = {.lex_state = 124, .external_lex_state = 21}, + [2296] = {.lex_state = 124, .external_lex_state = 21}, + [2297] = {.lex_state = 124, .external_lex_state = 21}, + [2298] = {.lex_state = 124, .external_lex_state = 21}, + [2299] = {.lex_state = 124, .external_lex_state = 21}, + [2300] = {.lex_state = 124, .external_lex_state = 21}, [2301] = {.lex_state = 127}, - [2302] = {.lex_state = 127}, + [2302] = {.lex_state = 99, .external_lex_state = 19}, [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}, + [2304] = {.lex_state = 127}, + [2305] = {.lex_state = 50, .external_lex_state = 7}, + [2306] = {.lex_state = 50, .external_lex_state = 7}, + [2307] = {.lex_state = 50, .external_lex_state = 7}, + [2308] = {.lex_state = 50, .external_lex_state = 7}, + [2309] = {.lex_state = 124, .external_lex_state = 16}, + [2310] = {.lex_state = 127}, [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}, + [2313] = {.lex_state = 99, .external_lex_state = 19}, + [2314] = {.lex_state = 95, .external_lex_state = 19}, + [2315] = {.lex_state = 124, .external_lex_state = 16}, + [2316] = {.lex_state = 127}, + [2317] = {.lex_state = 99, .external_lex_state = 19}, + [2318] = {.lex_state = 95, .external_lex_state = 19}, + [2319] = {.lex_state = 124, .external_lex_state = 16}, + [2320] = {.lex_state = 50, .external_lex_state = 7}, [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}, + [2322] = {.lex_state = 127}, + [2323] = {.lex_state = 127}, + [2324] = {.lex_state = 127}, + [2325] = {.lex_state = 127}, + [2326] = {.lex_state = 127}, + [2327] = {.lex_state = 50, .external_lex_state = 7}, + [2328] = {.lex_state = 99, .external_lex_state = 19}, + [2329] = {.lex_state = 221, .external_lex_state = 7}, + [2330] = {.lex_state = 129, .external_lex_state = 22}, + [2331] = {.lex_state = 126, .external_lex_state = 23}, [2332] = {.lex_state = 126}, - [2333] = {.lex_state = 221, .external_lex_state = 8}, - [2334] = {.lex_state = 129, .external_lex_state = 23}, + [2333] = {.lex_state = 50, .external_lex_state = 7}, + [2334] = {.lex_state = 50, .external_lex_state = 7}, [2335] = {.lex_state = 126}, - [2336] = {.lex_state = 126}, + [2336] = {.lex_state = 50, .external_lex_state = 7}, [2337] = {.lex_state = 126}, - [2338] = {.lex_state = 126}, - [2339] = {.lex_state = 126, .external_lex_state = 22}, - [2340] = {.lex_state = 129, .external_lex_state = 23}, + [2338] = {.lex_state = 126, .external_lex_state = 23}, + [2339] = {.lex_state = 129, .external_lex_state = 22}, + [2340] = {.lex_state = 126}, [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}, + [2342] = {.lex_state = 126}, + [2343] = {.lex_state = 126}, + [2344] = {.lex_state = 50, .external_lex_state = 7}, + [2345] = {.lex_state = 126}, + [2346] = {.lex_state = 129, .external_lex_state = 22}, [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}, + [2348] = {.lex_state = 129, .external_lex_state = 22}, + [2349] = {.lex_state = 126}, + [2350] = {.lex_state = 129, .external_lex_state = 22}, + [2351] = {.lex_state = 126}, + [2352] = {.lex_state = 129, .external_lex_state = 22}, + [2353] = {.lex_state = 126}, + [2354] = {.lex_state = 126, .external_lex_state = 23}, [2355] = {.lex_state = 126}, - [2356] = {.lex_state = 126}, - [2357] = {.lex_state = 129, .external_lex_state = 23}, - [2358] = {.lex_state = 126, .external_lex_state = 22}, + [2356] = {.lex_state = 129, .external_lex_state = 22}, + [2357] = {.lex_state = 126, .external_lex_state = 23}, + [2358] = {.lex_state = 126, .external_lex_state = 23}, [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}, + [2360] = {.lex_state = 126}, + [2361] = {.lex_state = 126}, + [2362] = {.lex_state = 50, .external_lex_state = 3}, + [2363] = {.lex_state = 50, .external_lex_state = 7}, + [2364] = {.lex_state = 126, .external_lex_state = 23}, + [2365] = {.lex_state = 129, .external_lex_state = 22}, + [2366] = {.lex_state = 129, .external_lex_state = 22}, + [2367] = {.lex_state = 126, .external_lex_state = 23}, + [2368] = {.lex_state = 221, .external_lex_state = 7}, + [2369] = {.lex_state = 221, .external_lex_state = 7}, + [2370] = {.lex_state = 126}, + [2371] = {.lex_state = 129, .external_lex_state = 22}, + [2372] = {.lex_state = 126, .external_lex_state = 23}, + [2373] = {.lex_state = 126}, + [2374] = {.lex_state = 50, .external_lex_state = 7}, + [2375] = {.lex_state = 126, .external_lex_state = 2}, + [2376] = {.lex_state = 50, .external_lex_state = 3}, + [2377] = {.lex_state = 50, .external_lex_state = 7}, + [2378] = {.lex_state = 126, .external_lex_state = 23}, + [2379] = {.lex_state = 50, .external_lex_state = 3}, + [2380] = {.lex_state = 221, .external_lex_state = 7}, + [2381] = {.lex_state = 126, .external_lex_state = 23}, + [2382] = {.lex_state = 126, .external_lex_state = 2}, + [2383] = {.lex_state = 126, .external_lex_state = 23}, + [2384] = {.lex_state = 50, .external_lex_state = 7}, + [2385] = {.lex_state = 126, .external_lex_state = 23}, + [2386] = {.lex_state = 126, .external_lex_state = 23}, + [2387] = {.lex_state = 126, .external_lex_state = 23}, + [2388] = {.lex_state = 50, .external_lex_state = 7}, + [2389] = {.lex_state = 126, .external_lex_state = 23}, + [2390] = {.lex_state = 126, .external_lex_state = 23}, + [2391] = {.lex_state = 50, .external_lex_state = 3}, + [2392] = {.lex_state = 50, .external_lex_state = 3}, + [2393] = {.lex_state = 126, .external_lex_state = 23}, + [2394] = {.lex_state = 221, .external_lex_state = 7}, + [2395] = {.lex_state = 221, .external_lex_state = 3}, + [2396] = {.lex_state = 126, .external_lex_state = 23}, + [2397] = {.lex_state = 221, .external_lex_state = 7}, + [2398] = {.lex_state = 50, .external_lex_state = 3}, + [2399] = {.lex_state = 221, .external_lex_state = 7}, + [2400] = {.lex_state = 221, .external_lex_state = 7}, + [2401] = {.lex_state = 50, .external_lex_state = 3}, + [2402] = {.lex_state = 221, .external_lex_state = 7}, + [2403] = {.lex_state = 221, .external_lex_state = 7}, + [2404] = {.lex_state = 126, .external_lex_state = 23}, + [2405] = {.lex_state = 50, .external_lex_state = 3}, + [2406] = {.lex_state = 126}, + [2407] = {.lex_state = 126, .external_lex_state = 23}, + [2408] = {.lex_state = 126, .external_lex_state = 23}, + [2409] = {.lex_state = 221, .external_lex_state = 7}, + [2410] = {.lex_state = 221, .external_lex_state = 7}, + [2411] = {.lex_state = 50, .external_lex_state = 3}, + [2412] = {.lex_state = 221, .external_lex_state = 7}, + [2413] = {.lex_state = 126, .external_lex_state = 23}, + [2414] = {.lex_state = 50, .external_lex_state = 3}, + [2415] = {.lex_state = 50, .external_lex_state = 3}, + [2416] = {.lex_state = 50, .external_lex_state = 7}, + [2417] = {.lex_state = 126, .external_lex_state = 23}, + [2418] = {.lex_state = 126, .external_lex_state = 23}, + [2419] = {.lex_state = 50, .external_lex_state = 3}, + [2420] = {.lex_state = 126, .external_lex_state = 23}, + [2421] = {.lex_state = 126, .external_lex_state = 23}, + [2422] = {.lex_state = 126, .external_lex_state = 23}, + [2423] = {.lex_state = 126, .external_lex_state = 23}, + [2424] = {.lex_state = 50, .external_lex_state = 3}, + [2425] = {.lex_state = 126, .external_lex_state = 23}, + [2426] = {.lex_state = 126, .external_lex_state = 23}, + [2427] = {.lex_state = 126, .external_lex_state = 23}, + [2428] = {.lex_state = 126, .external_lex_state = 23}, + [2429] = {.lex_state = 221, .external_lex_state = 7}, + [2430] = {.lex_state = 126, .external_lex_state = 23}, + [2431] = {.lex_state = 126, .external_lex_state = 23}, + [2432] = {.lex_state = 50, .external_lex_state = 7}, + [2433] = {.lex_state = 126, .external_lex_state = 23}, + [2434] = {.lex_state = 126, .external_lex_state = 23}, + [2435] = {.lex_state = 221, .external_lex_state = 7}, + [2436] = {.lex_state = 126, .external_lex_state = 2}, + [2437] = {.lex_state = 126, .external_lex_state = 23}, + [2438] = {.lex_state = 126, .external_lex_state = 23}, + [2439] = {.lex_state = 50, .external_lex_state = 3}, + [2440] = {.lex_state = 126}, + [2441] = {.lex_state = 126, .external_lex_state = 2}, + [2442] = {.lex_state = 126, .external_lex_state = 2}, + [2443] = {.lex_state = 107}, + [2444] = {.lex_state = 126}, + [2445] = {.lex_state = 107}, + [2446] = {.lex_state = 126, .external_lex_state = 2}, + [2447] = {.lex_state = 126, .external_lex_state = 2}, + [2448] = {.lex_state = 50, .external_lex_state = 3}, + [2449] = {.lex_state = 50, .external_lex_state = 3}, [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}, + [2453] = {.lex_state = 50, .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}, + [2456] = {.lex_state = 221, .external_lex_state = 3}, + [2457] = {.lex_state = 50, .external_lex_state = 3}, + [2458] = {.lex_state = 221, .external_lex_state = 3}, + [2459] = {.lex_state = 221, .external_lex_state = 3}, + [2460] = {.lex_state = 126, .external_lex_state = 2}, + [2461] = {.lex_state = 221, .external_lex_state = 7}, [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}, + [2464] = {.lex_state = 221, .external_lex_state = 7}, + [2465] = {.lex_state = 126}, + [2466] = {.lex_state = 126, .external_lex_state = 2}, + [2467] = {.lex_state = 126}, + [2468] = {.lex_state = 126, .external_lex_state = 2}, + [2469] = {.lex_state = 126, .external_lex_state = 2}, + [2470] = {.lex_state = 126, .external_lex_state = 2}, + [2471] = {.lex_state = 221, .external_lex_state = 7}, [2472] = {.lex_state = 126, .external_lex_state = 2}, [2473] = {.lex_state = 126}, - [2474] = {.lex_state = 126, .external_lex_state = 2}, + [2474] = {.lex_state = 126}, [2475] = {.lex_state = 126, .external_lex_state = 2}, - [2476] = {.lex_state = 50, .external_lex_state = 3}, + [2476] = {.lex_state = 126, .external_lex_state = 2}, [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}, + [2478] = {.lex_state = 126, .external_lex_state = 2}, + [2479] = {.lex_state = 126, .external_lex_state = 2}, + [2480] = {.lex_state = 126, .external_lex_state = 2}, + [2481] = {.lex_state = 126, .external_lex_state = 2}, [2482] = {.lex_state = 126, .external_lex_state = 2}, - [2483] = {.lex_state = 221, .external_lex_state = 8}, + [2483] = {.lex_state = 126}, [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}, + [2485] = {.lex_state = 126}, + [2486] = {.lex_state = 126, .external_lex_state = 2}, + [2487] = {.lex_state = 126, .external_lex_state = 2}, + [2488] = {.lex_state = 126, .external_lex_state = 2}, + [2489] = {.lex_state = 126}, + [2490] = {.lex_state = 221, .external_lex_state = 7}, + [2491] = {.lex_state = 126}, + [2492] = {.lex_state = 221, .external_lex_state = 3}, + [2493] = {.lex_state = 221, .external_lex_state = 3}, + [2494] = {.lex_state = 221, .external_lex_state = 7}, [2495] = {.lex_state = 221, .external_lex_state = 3}, - [2496] = {.lex_state = 126}, + [2496] = {.lex_state = 221, .external_lex_state = 3}, [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}, + [2498] = {.lex_state = 126, .external_lex_state = 2}, + [2499] = {.lex_state = 50, .external_lex_state = 3}, + [2500] = {.lex_state = 221, .external_lex_state = 7}, + [2501] = {.lex_state = 50, .external_lex_state = 3}, [2502] = {.lex_state = 50, .external_lex_state = 3}, - [2503] = {.lex_state = 107}, + [2503] = {.lex_state = 126}, [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}, + [2506] = {.lex_state = 126}, + [2507] = {.lex_state = 50, .external_lex_state = 3}, + [2508] = {.lex_state = 50, .external_lex_state = 7}, [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}, + [2511] = {.lex_state = 50, .external_lex_state = 3}, + [2512] = {.lex_state = 126}, + [2513] = {.lex_state = 50, .external_lex_state = 3}, + [2514] = {.lex_state = 50, .external_lex_state = 3}, [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}, + [2516] = {.lex_state = 50, .external_lex_state = 3}, + [2517] = {.lex_state = 50, .external_lex_state = 3}, + [2518] = {.lex_state = 126}, + [2519] = {.lex_state = 50, .external_lex_state = 3}, + [2520] = {.lex_state = 50, .external_lex_state = 3}, + [2521] = {.lex_state = 50, .external_lex_state = 3}, [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}, + [2525] = {.lex_state = 50, .external_lex_state = 3}, + [2526] = {.lex_state = 50, .external_lex_state = 3}, + [2527] = {.lex_state = 50, .external_lex_state = 3}, [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}, + [2530] = {.lex_state = 50, .external_lex_state = 3}, + [2531] = {.lex_state = 126}, + [2532] = {.lex_state = 50, .external_lex_state = 3}, [2533] = {.lex_state = 50, .external_lex_state = 3}, - [2534] = {.lex_state = 126, .external_lex_state = 2}, + [2534] = {.lex_state = 50, .external_lex_state = 3}, [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}, + [2538] = {.lex_state = 221, .external_lex_state = 7}, + [2539] = {.lex_state = 221, .external_lex_state = 3}, + [2540] = {.lex_state = 221, .external_lex_state = 3}, + [2541] = {.lex_state = 126, .external_lex_state = 2}, + [2542] = {.lex_state = 221, .external_lex_state = 7}, + [2543] = {.lex_state = 126, .external_lex_state = 2}, + [2544] = {.lex_state = 126, .external_lex_state = 2}, + [2545] = {.lex_state = 221, .external_lex_state = 7}, + [2546] = {.lex_state = 221, .external_lex_state = 3}, + [2547] = {.lex_state = 221, .external_lex_state = 3}, + [2548] = {.lex_state = 126, .external_lex_state = 2}, + [2549] = {.lex_state = 126}, + [2550] = {.lex_state = 126, .external_lex_state = 2}, + [2551] = {.lex_state = 126}, + [2552] = {.lex_state = 126}, + [2553] = {.lex_state = 126}, + [2554] = {.lex_state = 126, .external_lex_state = 2}, + [2555] = {.lex_state = 126, .external_lex_state = 2}, + [2556] = {.lex_state = 126}, + [2557] = {.lex_state = 126, .external_lex_state = 2}, + [2558] = {.lex_state = 126, .external_lex_state = 2}, + [2559] = {.lex_state = 126, .external_lex_state = 2}, + [2560] = {.lex_state = 126, .external_lex_state = 2}, + [2561] = {.lex_state = 221, .external_lex_state = 3}, + [2562] = {.lex_state = 221, .external_lex_state = 3}, [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}, + [2569] = {.lex_state = 126}, + [2570] = {.lex_state = 128, .external_lex_state = 16}, + [2571] = {.lex_state = 128, .external_lex_state = 16}, + [2572] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [2574] = {.lex_state = 128, .external_lex_state = 16}, + [2575] = {.lex_state = 128, .external_lex_state = 16}, + [2576] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [2579] = {.lex_state = 221, .external_lex_state = 7}, + [2580] = {.lex_state = 128, .external_lex_state = 16}, [2581] = {.lex_state = 128, .external_lex_state = 16}, - [2582] = {.lex_state = 126, .external_lex_state = 2}, + [2582] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [2584] = {.lex_state = 221, .external_lex_state = 3}, + [2585] = {.lex_state = 221, .external_lex_state = 3}, + [2586] = {.lex_state = 128, .external_lex_state = 16}, [2587] = {.lex_state = 128, .external_lex_state = 16}, - [2588] = {.lex_state = 221, .external_lex_state = 8}, + [2588] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [2592] = {.lex_state = 221, .external_lex_state = 3}, [2593] = {.lex_state = 221, .external_lex_state = 3}, - [2594] = {.lex_state = 128, .external_lex_state = 16}, + [2594] = {.lex_state = 126}, [2595] = {.lex_state = 221, .external_lex_state = 3}, - [2596] = {.lex_state = 50, .external_lex_state = 8}, + [2596] = {.lex_state = 221, .external_lex_state = 3}, [2597] = {.lex_state = 221, .external_lex_state = 3}, [2598] = {.lex_state = 221, .external_lex_state = 3}, - [2599] = {.lex_state = 128, .external_lex_state = 16}, + [2599] = {.lex_state = 221, .external_lex_state = 3}, [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}, + [2601] = {.lex_state = 221, .external_lex_state = 3}, + [2602] = {.lex_state = 221, .external_lex_state = 7}, + [2603] = {.lex_state = 128, .external_lex_state = 16}, + [2604] = {.lex_state = 221, .external_lex_state = 3}, [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}, + [2606] = {.lex_state = 221, .external_lex_state = 3}, + [2607] = {.lex_state = 221, .external_lex_state = 3}, + [2608] = {.lex_state = 128, .external_lex_state = 16}, + [2609] = {.lex_state = 221, .external_lex_state = 7}, + [2610] = {.lex_state = 128, .external_lex_state = 16}, + [2611] = {.lex_state = 128, .external_lex_state = 16}, + [2612] = {.lex_state = 221, .external_lex_state = 7}, + [2613] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [2615] = {.lex_state = 221, .external_lex_state = 3}, + [2616] = {.lex_state = 221, .external_lex_state = 3}, + [2617] = {.lex_state = 221, .external_lex_state = 3}, + [2618] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [2620] = {.lex_state = 128, .external_lex_state = 16}, + [2621] = {.lex_state = 126, .external_lex_state = 20}, + [2622] = {.lex_state = 221, .external_lex_state = 3}, [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}, + [2624] = {.lex_state = 128, .external_lex_state = 16}, + [2625] = {.lex_state = 128, .external_lex_state = 16}, + [2626] = {.lex_state = 221, .external_lex_state = 3}, + [2627] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [2629] = {.lex_state = 221, .external_lex_state = 3}, + [2630] = {.lex_state = 221, .external_lex_state = 3}, + [2631] = {.lex_state = 221, .external_lex_state = 3}, + [2632] = {.lex_state = 221, .external_lex_state = 3}, + [2633] = {.lex_state = 128, .external_lex_state = 16}, + [2634] = {.lex_state = 128, .external_lex_state = 16}, + [2635] = {.lex_state = 221, .external_lex_state = 3}, + [2636] = {.lex_state = 221, .external_lex_state = 3}, + [2637] = {.lex_state = 221, .external_lex_state = 3}, [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}, + [2639] = {.lex_state = 128, .external_lex_state = 16}, + [2640] = {.lex_state = 221, .external_lex_state = 3}, + [2641] = {.lex_state = 128, .external_lex_state = 16}, + [2642] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [2644] = {.lex_state = 128, .external_lex_state = 16}, + [2645] = {.lex_state = 128, .external_lex_state = 16}, + [2646] = {.lex_state = 126, .external_lex_state = 2}, + [2647] = {.lex_state = 128, .external_lex_state = 16}, + [2648] = {.lex_state = 126, .external_lex_state = 2}, [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}, + [2652] = {.lex_state = 50, .external_lex_state = 7}, + [2653] = {.lex_state = 128, .external_lex_state = 16}, + [2654] = {.lex_state = 126, .external_lex_state = 20}, + [2655] = {.lex_state = 126, .external_lex_state = 2}, + [2656] = {.lex_state = 50, .external_lex_state = 7}, + [2657] = {.lex_state = 128, .external_lex_state = 16}, + [2658] = {.lex_state = 50, .external_lex_state = 7}, + [2659] = {.lex_state = 128, .external_lex_state = 16}, + [2660] = {.lex_state = 50, .external_lex_state = 7}, + [2661] = {.lex_state = 126}, + [2662] = {.lex_state = 50, .external_lex_state = 7}, + [2663] = {.lex_state = 50, .external_lex_state = 7}, + [2664] = {.lex_state = 50, .external_lex_state = 7}, [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}, + [2666] = {.lex_state = 126, .external_lex_state = 20}, + [2667] = {.lex_state = 128, .external_lex_state = 16}, + [2668] = {.lex_state = 50, .external_lex_state = 7}, + [2669] = {.lex_state = 50, .external_lex_state = 7}, + [2670] = {.lex_state = 50, .external_lex_state = 7}, + [2671] = {.lex_state = 50, .external_lex_state = 7}, + [2672] = {.lex_state = 50, .external_lex_state = 7}, + [2673] = {.lex_state = 50, .external_lex_state = 7}, + [2674] = {.lex_state = 126, .external_lex_state = 20}, + [2675] = {.lex_state = 50, .external_lex_state = 7}, + [2676] = {.lex_state = 128, .external_lex_state = 16}, + [2677] = {.lex_state = 50, .external_lex_state = 7}, + [2678] = {.lex_state = 50, .external_lex_state = 7}, + [2679] = {.lex_state = 50, .external_lex_state = 7}, [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}, + [2681] = {.lex_state = 50, .external_lex_state = 7}, + [2682] = {.lex_state = 128, .external_lex_state = 16}, + [2683] = {.lex_state = 50, .external_lex_state = 7}, + [2684] = {.lex_state = 50, .external_lex_state = 7}, + [2685] = {.lex_state = 128, .external_lex_state = 16}, + [2686] = {.lex_state = 50, .external_lex_state = 7}, + [2687] = {.lex_state = 50, .external_lex_state = 7}, + [2688] = {.lex_state = 50, .external_lex_state = 7}, + [2689] = {.lex_state = 50, .external_lex_state = 7}, + [2690] = {.lex_state = 221, .external_lex_state = 7}, + [2691] = {.lex_state = 50, .external_lex_state = 7}, + [2692] = {.lex_state = 50, .external_lex_state = 7}, + [2693] = {.lex_state = 50, .external_lex_state = 7}, + [2694] = {.lex_state = 50, .external_lex_state = 7}, + [2695] = {.lex_state = 50, .external_lex_state = 7}, + [2696] = {.lex_state = 128, .external_lex_state = 16}, + [2697] = {.lex_state = 50, .external_lex_state = 7}, + [2698] = {.lex_state = 50, .external_lex_state = 7}, + [2699] = {.lex_state = 50, .external_lex_state = 7}, + [2700] = {.lex_state = 221, .external_lex_state = 3}, + [2701] = {.lex_state = 221, .external_lex_state = 3}, + [2702] = {.lex_state = 50, .external_lex_state = 7}, + [2703] = {.lex_state = 50, .external_lex_state = 7}, + [2704] = {.lex_state = 50, .external_lex_state = 7}, + [2705] = {.lex_state = 50, .external_lex_state = 7}, + [2706] = {.lex_state = 50, .external_lex_state = 7}, + [2707] = {.lex_state = 128, .external_lex_state = 16}, + [2708] = {.lex_state = 128, .external_lex_state = 16}, + [2709] = {.lex_state = 128, .external_lex_state = 16}, + [2710] = {.lex_state = 50, .external_lex_state = 7}, [2711] = {.lex_state = 221, .external_lex_state = 3}, - [2712] = {.lex_state = 221, .external_lex_state = 3}, - [2713] = {.lex_state = 221, .external_lex_state = 3}, + [2712] = {.lex_state = 50, .external_lex_state = 7}, + [2713] = {.lex_state = 50, .external_lex_state = 7}, [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}, + [2715] = {.lex_state = 50, .external_lex_state = 7}, + [2716] = {.lex_state = 128, .external_lex_state = 16}, + [2717] = {.lex_state = 50, .external_lex_state = 7}, + [2718] = {.lex_state = 50, .external_lex_state = 7}, + [2719] = {.lex_state = 50, .external_lex_state = 7}, + [2720] = {.lex_state = 50, .external_lex_state = 7}, [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}, + [2722] = {.lex_state = 50, .external_lex_state = 7}, + [2723] = {.lex_state = 50, .external_lex_state = 7}, + [2724] = {.lex_state = 128, .external_lex_state = 16}, + [2725] = {.lex_state = 128, .external_lex_state = 16}, + [2726] = {.lex_state = 128, .external_lex_state = 16}, + [2727] = {.lex_state = 221, .external_lex_state = 3}, + [2728] = {.lex_state = 221, .external_lex_state = 3}, + [2729] = {.lex_state = 128, .external_lex_state = 16}, + [2730] = {.lex_state = 221, .external_lex_state = 7}, + [2731] = {.lex_state = 50, .external_lex_state = 7}, + [2732] = {.lex_state = 50, .external_lex_state = 7}, + [2733] = {.lex_state = 50, .external_lex_state = 7}, + [2734] = {.lex_state = 221, .external_lex_state = 7}, [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}, + [2737] = {.lex_state = 221, .external_lex_state = 7}, + [2738] = {.lex_state = 221, .external_lex_state = 7}, + [2739] = {.lex_state = 221, .external_lex_state = 7}, + [2740] = {.lex_state = 221, .external_lex_state = 7}, + [2741] = {.lex_state = 221, .external_lex_state = 7}, + [2742] = {.lex_state = 221, .external_lex_state = 7}, + [2743] = {.lex_state = 221, .external_lex_state = 7}, + [2744] = {.lex_state = 126}, + [2745] = {.lex_state = 221, .external_lex_state = 3}, [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}, + [2747] = {.lex_state = 130, .external_lex_state = 24}, + [2748] = {.lex_state = 130, .external_lex_state = 24}, + [2749] = {.lex_state = 221, .external_lex_state = 7}, + [2750] = {.lex_state = 126}, [2751] = {.lex_state = 221, .external_lex_state = 3}, - [2752] = {.lex_state = 126}, + [2752] = {.lex_state = 221, .external_lex_state = 3}, [2753] = {.lex_state = 221, .external_lex_state = 3}, - [2754] = {.lex_state = 221, .external_lex_state = 3}, - [2755] = {.lex_state = 126}, + [2754] = {.lex_state = 221, .external_lex_state = 7}, + [2755] = {.lex_state = 221, .external_lex_state = 3}, [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}, + [2760] = {.lex_state = 221, .external_lex_state = 3}, + [2761] = {.lex_state = 221, .external_lex_state = 7}, + [2762] = {.lex_state = 221, .external_lex_state = 7}, + [2763] = {.lex_state = 221, .external_lex_state = 3}, [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}, + [2767] = {.lex_state = 221, .external_lex_state = 3}, + [2768] = {.lex_state = 221, .external_lex_state = 7}, [2769] = {.lex_state = 221, .external_lex_state = 3}, - [2770] = {.lex_state = 221, .external_lex_state = 3}, - [2771] = {.lex_state = 221, .external_lex_state = 8}, + [2770] = {.lex_state = 221, .external_lex_state = 7}, + [2771] = {.lex_state = 126}, [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}, + [2773] = {.lex_state = 126}, + [2774] = {.lex_state = 221, .external_lex_state = 7}, + [2775] = {.lex_state = 221, .external_lex_state = 3}, + [2776] = {.lex_state = 221, .external_lex_state = 3}, + [2777] = {.lex_state = 221, .external_lex_state = 3}, + [2778] = {.lex_state = 221, .external_lex_state = 7}, + [2779] = {.lex_state = 221, .external_lex_state = 3}, + [2780] = {.lex_state = 126}, + [2781] = {.lex_state = 221, .external_lex_state = 7}, + [2782] = {.lex_state = 221, .external_lex_state = 7}, + [2783] = {.lex_state = 221, .external_lex_state = 7}, + [2784] = {.lex_state = 221, .external_lex_state = 7}, + [2785] = {.lex_state = 221, .external_lex_state = 7}, + [2786] = {.lex_state = 126}, + [2787] = {.lex_state = 221, .external_lex_state = 3}, + [2788] = {.lex_state = 221, .external_lex_state = 7}, + [2789] = {.lex_state = 221, .external_lex_state = 3}, + [2790] = {.lex_state = 221, .external_lex_state = 7}, + [2791] = {.lex_state = 221, .external_lex_state = 7}, + [2792] = {.lex_state = 221, .external_lex_state = 3}, + [2793] = {.lex_state = 126}, + [2794] = {.lex_state = 221, .external_lex_state = 7}, + [2795] = {.lex_state = 221, .external_lex_state = 7}, + [2796] = {.lex_state = 221, .external_lex_state = 7}, + [2797] = {.lex_state = 221, .external_lex_state = 3}, + [2798] = {.lex_state = 130, .external_lex_state = 24}, + [2799] = {.lex_state = 130, .external_lex_state = 24}, + [2800] = {.lex_state = 126}, + [2801] = {.lex_state = 221, .external_lex_state = 7}, + [2802] = {.lex_state = 221, .external_lex_state = 7}, + [2803] = {.lex_state = 221, .external_lex_state = 7}, + [2804] = {.lex_state = 221, .external_lex_state = 7}, + [2805] = {.lex_state = 126}, + [2806] = {.lex_state = 221, .external_lex_state = 3}, + [2807] = {.lex_state = 221, .external_lex_state = 3}, + [2808] = {.lex_state = 126}, + [2809] = {.lex_state = 221, .external_lex_state = 7}, + [2810] = {.lex_state = 221, .external_lex_state = 7}, + [2811] = {.lex_state = 126}, [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}, + [2813] = {.lex_state = 126}, + [2814] = {.lex_state = 221, .external_lex_state = 7}, + [2815] = {.lex_state = 221, .external_lex_state = 7}, + [2816] = {.lex_state = 221, .external_lex_state = 7}, + [2817] = {.lex_state = 221, .external_lex_state = 7}, + [2818] = {.lex_state = 126}, + [2819] = {.lex_state = 126}, + [2820] = {.lex_state = 126}, + [2821] = {.lex_state = 221, .external_lex_state = 7}, [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}, + [2823] = {.lex_state = 221, .external_lex_state = 7}, + [2824] = {.lex_state = 126}, + [2825] = {.lex_state = 221, .external_lex_state = 7}, + [2826] = {.lex_state = 126}, + [2827] = {.lex_state = 126}, + [2828] = {.lex_state = 221, .external_lex_state = 7}, + [2829] = {.lex_state = 221, .external_lex_state = 7}, [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}, + [2831] = {.lex_state = 221, .external_lex_state = 7}, + [2832] = {.lex_state = 221, .external_lex_state = 7}, + [2833] = {.lex_state = 221, .external_lex_state = 7}, + [2834] = {.lex_state = 221, .external_lex_state = 7}, + [2835] = {.lex_state = 221, .external_lex_state = 7}, + [2836] = {.lex_state = 221, .external_lex_state = 7}, + [2837] = {.lex_state = 126}, + [2838] = {.lex_state = 221, .external_lex_state = 7}, + [2839] = {.lex_state = 221, .external_lex_state = 7}, + [2840] = {.lex_state = 126}, + [2841] = {.lex_state = 221, .external_lex_state = 7}, + [2842] = {.lex_state = 126}, [2843] = {.lex_state = 129}, [2844] = {.lex_state = 129}, [2845] = {.lex_state = 129}, [2846] = {.lex_state = 129}, - [2847] = {.lex_state = 221, .external_lex_state = 8}, + [2847] = {.lex_state = 129}, [2848] = {.lex_state = 129}, - [2849] = {.lex_state = 221, .external_lex_state = 8}, + [2849] = {.lex_state = 129}, [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}, + [2851] = {.lex_state = 129}, + [2852] = {.lex_state = 221, .external_lex_state = 7}, + [2853] = {.lex_state = 129}, + [2854] = {.lex_state = 129}, [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}, + [2858] = {.lex_state = 129}, + [2859] = {.lex_state = 129}, + [2860] = {.lex_state = 129}, [2861] = {.lex_state = 129}, [2862] = {.lex_state = 129}, - [2863] = {.lex_state = 221, .external_lex_state = 8}, - [2864] = {.lex_state = 129}, + [2863] = {.lex_state = 129}, + [2864] = {.lex_state = 221, .external_lex_state = 7}, [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}, + [2870] = {.lex_state = 129}, + [2871] = {.lex_state = 221, .external_lex_state = 7}, + [2872] = {.lex_state = 221, .external_lex_state = 7}, [2873] = {.lex_state = 129}, [2874] = {.lex_state = 129}, [2875] = {.lex_state = 129}, - [2876] = {.lex_state = 221, .external_lex_state = 8}, - [2877] = {.lex_state = 129}, + [2876] = {.lex_state = 129}, + [2877] = {.lex_state = 221, .external_lex_state = 7}, [2878] = {.lex_state = 129}, - [2879] = {.lex_state = 129}, + [2879] = {.lex_state = 221, .external_lex_state = 7}, [2880] = {.lex_state = 129}, - [2881] = {.lex_state = 221, .external_lex_state = 8}, - [2882] = {.lex_state = 129}, - [2883] = {.lex_state = 221, .external_lex_state = 8}, + [2881] = {.lex_state = 129}, + [2882] = {.lex_state = 221, .external_lex_state = 7}, + [2883] = {.lex_state = 129}, [2884] = {.lex_state = 129}, [2885] = {.lex_state = 129}, - [2886] = {.lex_state = 221, .external_lex_state = 8}, + [2886] = {.lex_state = 129}, [2887] = {.lex_state = 129}, - [2888] = {.lex_state = 221, .external_lex_state = 8}, - [2889] = {.lex_state = 221, .external_lex_state = 8}, + [2888] = {.lex_state = 129}, + [2889] = {.lex_state = 129}, [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}, + [2891] = {.lex_state = 129}, + [2892] = {.lex_state = 129}, + [2893] = {.lex_state = 221, .external_lex_state = 7}, [2894] = {.lex_state = 129}, - [2895] = {.lex_state = 221, .external_lex_state = 8}, + [2895] = {.lex_state = 129}, [2896] = {.lex_state = 129}, [2897] = {.lex_state = 129}, [2898] = {.lex_state = 129}, - [2899] = {.lex_state = 221, .external_lex_state = 8}, + [2899] = {.lex_state = 129}, [2900] = {.lex_state = 129}, [2901] = {.lex_state = 129}, [2902] = {.lex_state = 129}, - [2903] = {.lex_state = 129}, + [2903] = {.lex_state = 221, .external_lex_state = 7}, [2904] = {.lex_state = 129}, [2905] = {.lex_state = 129}, [2906] = {.lex_state = 129}, @@ -13365,89 +13373,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2913] = {.lex_state = 221, .external_lex_state = 7}, + [2914] = {.lex_state = 221, .external_lex_state = 7}, + [2915] = {.lex_state = 221, .external_lex_state = 7}, + [2916] = {.lex_state = 221, .external_lex_state = 7}, + [2917] = {.lex_state = 129}, + [2918] = {.lex_state = 221, .external_lex_state = 7}, + [2919] = {.lex_state = 129}, + [2920] = {.lex_state = 221, .external_lex_state = 7}, + [2921] = {.lex_state = 221, .external_lex_state = 7}, + [2922] = {.lex_state = 129}, + [2923] = {.lex_state = 221, .external_lex_state = 7}, [2924] = {.lex_state = 129}, - [2925] = {.lex_state = 129}, - [2926] = {.lex_state = 129}, - [2927] = {.lex_state = 129}, + [2925] = {.lex_state = 221, .external_lex_state = 7}, + [2926] = {.lex_state = 221, .external_lex_state = 7}, + [2927] = {.lex_state = 221, .external_lex_state = 7}, [2928] = {.lex_state = 129}, [2929] = {.lex_state = 129}, - [2930] = {.lex_state = 221, .external_lex_state = 8}, + [2930] = {.lex_state = 221, .external_lex_state = 7}, [2931] = {.lex_state = 129}, - [2932] = {.lex_state = 129}, - [2933] = {.lex_state = 221, .external_lex_state = 8}, + [2932] = {.lex_state = 221, .external_lex_state = 7}, + [2933] = {.lex_state = 221, .external_lex_state = 7}, [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}, + [2935] = {.lex_state = 129}, + [2936] = {.lex_state = 221, .external_lex_state = 7}, + [2937] = {.lex_state = 221, .external_lex_state = 7}, + [2938] = {.lex_state = 221, .external_lex_state = 7}, [2939] = {.lex_state = 129}, - [2940] = {.lex_state = 221, .external_lex_state = 8}, - [2941] = {.lex_state = 221, .external_lex_state = 8}, - [2942] = {.lex_state = 129}, + [2940] = {.lex_state = 129}, + [2941] = {.lex_state = 129}, + [2942] = {.lex_state = 221, .external_lex_state = 7}, [2943] = {.lex_state = 129}, - [2944] = {.lex_state = 129}, - [2945] = {.lex_state = 221, .external_lex_state = 8}, + [2944] = {.lex_state = 221, .external_lex_state = 7}, + [2945] = {.lex_state = 221, .external_lex_state = 7}, [2946] = {.lex_state = 129}, - [2947] = {.lex_state = 129}, - [2948] = {.lex_state = 129}, + [2947] = {.lex_state = 221, .external_lex_state = 7}, + [2948] = {.lex_state = 221, .external_lex_state = 7}, [2949] = {.lex_state = 129}, [2950] = {.lex_state = 129}, - [2951] = {.lex_state = 129}, - [2952] = {.lex_state = 221, .external_lex_state = 8}, + [2951] = {.lex_state = 221, .external_lex_state = 7}, + [2952] = {.lex_state = 129}, [2953] = {.lex_state = 129}, - [2954] = {.lex_state = 129}, + [2954] = {.lex_state = 221, .external_lex_state = 7}, [2955] = {.lex_state = 129}, [2956] = {.lex_state = 129}, - [2957] = {.lex_state = 129}, + [2957] = {.lex_state = 221, .external_lex_state = 7}, [2958] = {.lex_state = 129}, - [2959] = {.lex_state = 221, .external_lex_state = 8}, + [2959] = {.lex_state = 221, .external_lex_state = 7}, [2960] = {.lex_state = 129}, - [2961] = {.lex_state = 129}, - [2962] = {.lex_state = 221, .external_lex_state = 8}, + [2961] = {.lex_state = 221, .external_lex_state = 7}, + [2962] = {.lex_state = 221, .external_lex_state = 7}, [2963] = {.lex_state = 129}, - [2964] = {.lex_state = 221, .external_lex_state = 8}, - [2965] = {.lex_state = 129}, + [2964] = {.lex_state = 221, .external_lex_state = 7}, + [2965] = {.lex_state = 221, .external_lex_state = 7}, [2966] = {.lex_state = 129}, [2967] = {.lex_state = 129}, - [2968] = {.lex_state = 129}, - [2969] = {.lex_state = 129}, - [2970] = {.lex_state = 221, .external_lex_state = 8}, + [2968] = {.lex_state = 221, .external_lex_state = 7}, + [2969] = {.lex_state = 221, .external_lex_state = 7}, + [2970] = {.lex_state = 129}, [2971] = {.lex_state = 129}, [2972] = {.lex_state = 129}, - [2973] = {.lex_state = 221, .external_lex_state = 8}, + [2973] = {.lex_state = 221, .external_lex_state = 7}, [2974] = {.lex_state = 129}, - [2975] = {.lex_state = 129}, - [2976] = {.lex_state = 221, .external_lex_state = 8}, + [2975] = {.lex_state = 221, .external_lex_state = 7}, + [2976] = {.lex_state = 221, .external_lex_state = 7}, [2977] = {.lex_state = 129}, [2978] = {.lex_state = 129}, - [2979] = {.lex_state = 221, .external_lex_state = 8}, + [2979] = {.lex_state = 129}, [2980] = {.lex_state = 129}, - [2981] = {.lex_state = 129}, - [2982] = {.lex_state = 221, .external_lex_state = 8}, + [2981] = {.lex_state = 221, .external_lex_state = 7}, + [2982] = {.lex_state = 129}, [2983] = {.lex_state = 129}, - [2984] = {.lex_state = 221, .external_lex_state = 8}, + [2984] = {.lex_state = 129}, [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}, + [2987] = {.lex_state = 221, .external_lex_state = 7}, + [2988] = {.lex_state = 129}, + [2989] = {.lex_state = 221, .external_lex_state = 7}, + [2990] = {.lex_state = 129}, + [2991] = {.lex_state = 221, .external_lex_state = 7}, + [2992] = {.lex_state = 221, .external_lex_state = 7}, + [2993] = {.lex_state = 129}, + [2994] = {.lex_state = 221, .external_lex_state = 7}, + [2995] = {.lex_state = 99, .external_lex_state = 25}, [2996] = {.lex_state = 99, .external_lex_state = 25}, [2997] = {.lex_state = 99, .external_lex_state = 25}, [2998] = {.lex_state = 99, .external_lex_state = 25}, @@ -13458,7 +13466,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3006] = {.lex_state = 99, .external_lex_state = 25}, [3007] = {.lex_state = 99, .external_lex_state = 25}, [3008] = {.lex_state = 99, .external_lex_state = 25}, [3009] = {.lex_state = 99, .external_lex_state = 25}, @@ -13475,20 +13483,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3023] = {.lex_state = 99, .external_lex_state = 25}, + [3024] = {.lex_state = 99, .external_lex_state = 25}, + [3025] = {.lex_state = 99, .external_lex_state = 25}, + [3026] = {.lex_state = 99, .external_lex_state = 25}, + [3027] = {.lex_state = 99, .external_lex_state = 19}, + [3028] = {.lex_state = 99, .external_lex_state = 25}, + [3029] = {.lex_state = 99, .external_lex_state = 25}, + [3030] = {.lex_state = 99, .external_lex_state = 19}, + [3031] = {.lex_state = 48, .external_lex_state = 19}, + [3032] = {.lex_state = 99, .external_lex_state = 19}, + [3033] = {.lex_state = 48, .external_lex_state = 19}, [3034] = {.lex_state = 126, .external_lex_state = 26}, [3035] = {.lex_state = 126, .external_lex_state = 26}, - [3036] = {.lex_state = 126}, + [3036] = {.lex_state = 126, .external_lex_state = 26}, [3037] = {.lex_state = 126, .external_lex_state = 26}, [3038] = {.lex_state = 126, .external_lex_state = 26}, [3039] = {.lex_state = 126, .external_lex_state = 26}, @@ -13500,294 +13508,294 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3048] = {.lex_state = 126, .external_lex_state = 26}, + [3049] = {.lex_state = 126}, [3050] = {.lex_state = 126, .external_lex_state = 26}, [3051] = {.lex_state = 126, .external_lex_state = 26}, - [3052] = {.lex_state = 126, .external_lex_state = 26}, + [3052] = {.lex_state = 49, .external_lex_state = 19}, [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}, + [3057] = {.lex_state = 49, .external_lex_state = 19}, [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}, + [3061] = {.lex_state = 126, .external_lex_state = 26}, [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}, + [3063] = {.lex_state = 126, .external_lex_state = 26}, + [3064] = {.lex_state = 126, .external_lex_state = 26}, + [3065] = {.lex_state = 126, .external_lex_state = 26}, + [3066] = {.lex_state = 126, .external_lex_state = 26}, + [3067] = {.lex_state = 126, .external_lex_state = 26}, + [3068] = {.lex_state = 126, .external_lex_state = 26}, + [3069] = {.lex_state = 126, .external_lex_state = 26}, + [3070] = {.lex_state = 126, .external_lex_state = 26}, + [3071] = {.lex_state = 127}, [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}, + [3078] = {.lex_state = 127}, [3079] = {.lex_state = 127}, - [3080] = {.lex_state = 127}, + [3080] = {.lex_state = 126}, [3081] = {.lex_state = 127}, [3082] = {.lex_state = 127}, [3083] = {.lex_state = 127}, - [3084] = {.lex_state = 127}, + [3084] = {.lex_state = 126}, [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}, + [3089] = {.lex_state = 127}, + [3090] = {.lex_state = 127}, + [3091] = {.lex_state = 127}, + [3092] = {.lex_state = 127}, + [3093] = {.lex_state = 127}, + [3094] = {.lex_state = 127}, + [3095] = {.lex_state = 127}, + [3096] = {.lex_state = 127}, [3097] = {.lex_state = 120, .external_lex_state = 27}, - [3098] = {.lex_state = 126}, + [3098] = {.lex_state = 120, .external_lex_state = 27}, [3099] = {.lex_state = 120, .external_lex_state = 27}, - [3100] = {.lex_state = 126}, - [3101] = {.lex_state = 120, .external_lex_state = 28}, + [3100] = {.lex_state = 120, .external_lex_state = 27}, + [3101] = {.lex_state = 126}, [3102] = {.lex_state = 120, .external_lex_state = 27}, [3103] = {.lex_state = 126}, [3104] = {.lex_state = 126}, - [3105] = {.lex_state = 120, .external_lex_state = 27}, + [3105] = {.lex_state = 126}, [3106] = {.lex_state = 120, .external_lex_state = 27}, [3107] = {.lex_state = 126}, - [3108] = {.lex_state = 120, .external_lex_state = 27}, + [3108] = {.lex_state = 126}, [3109] = {.lex_state = 126}, [3110] = {.lex_state = 120, .external_lex_state = 27}, - [3111] = {.lex_state = 120, .external_lex_state = 27}, + [3111] = {.lex_state = 126}, [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}, + [3114] = {.lex_state = 126}, + [3115] = {.lex_state = 126}, [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}, + [3117] = {.lex_state = 126}, + [3118] = {.lex_state = 120}, + [3119] = {.lex_state = 126}, [3120] = {.lex_state = 120, .external_lex_state = 27}, - [3121] = {.lex_state = 126}, - [3122] = {.lex_state = 120, .external_lex_state = 27}, + [3121] = {.lex_state = 120}, + [3122] = {.lex_state = 126}, [3123] = {.lex_state = 120, .external_lex_state = 27}, - [3124] = {.lex_state = 120, .external_lex_state = 27}, + [3124] = {.lex_state = 126}, [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}, + [3130] = {.lex_state = 120, .external_lex_state = 27}, + [3131] = {.lex_state = 120, .external_lex_state = 27}, + [3132] = {.lex_state = 126}, [3133] = {.lex_state = 120, .external_lex_state = 27}, [3134] = {.lex_state = 126}, - [3135] = {.lex_state = 126}, + [3135] = {.lex_state = 120, .external_lex_state = 28}, [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}, + [3138] = {.lex_state = 120, .external_lex_state = 28}, + [3139] = {.lex_state = 126}, + [3140] = {.lex_state = 120, .external_lex_state = 27}, + [3141] = {.lex_state = 120, .external_lex_state = 27}, [3142] = {.lex_state = 120, .external_lex_state = 27}, - [3143] = {.lex_state = 120, .external_lex_state = 27}, + [3143] = {.lex_state = 126}, [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}, + [3147] = {.lex_state = 126}, + [3148] = {.lex_state = 126}, [3149] = {.lex_state = 120, .external_lex_state = 27}, - [3150] = {.lex_state = 120, .external_lex_state = 27}, + [3150] = {.lex_state = 126}, [3151] = {.lex_state = 120, .external_lex_state = 27}, - [3152] = {.lex_state = 120}, - [3153] = {.lex_state = 120, .external_lex_state = 27}, + [3152] = {.lex_state = 120, .external_lex_state = 27}, + [3153] = {.lex_state = 126}, [3154] = {.lex_state = 126}, [3155] = {.lex_state = 126}, - [3156] = {.lex_state = 120, .external_lex_state = 27}, + [3156] = {.lex_state = 126}, [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}, + [3158] = {.lex_state = 126}, + [3159] = {.lex_state = 126}, + [3160] = {.lex_state = 126}, + [3161] = {.lex_state = 120, .external_lex_state = 27}, + [3162] = {.lex_state = 120, .external_lex_state = 27}, + [3163] = {.lex_state = 120, .external_lex_state = 27}, [3164] = {.lex_state = 126}, - [3165] = {.lex_state = 120, .external_lex_state = 27}, + [3165] = {.lex_state = 126}, [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}, + [3170] = {.lex_state = 120, .external_lex_state = 27}, [3171] = {.lex_state = 126}, [3172] = {.lex_state = 126}, [3173] = {.lex_state = 126}, - [3174] = {.lex_state = 120, .external_lex_state = 27}, - [3175] = {.lex_state = 126}, + [3174] = {.lex_state = 126}, + [3175] = {.lex_state = 120, .external_lex_state = 27}, [3176] = {.lex_state = 126}, - [3177] = {.lex_state = 126}, + [3177] = {.lex_state = 120, .external_lex_state = 27}, [3178] = {.lex_state = 120, .external_lex_state = 27}, - [3179] = {.lex_state = 126}, + [3179] = {.lex_state = 120, .external_lex_state = 27}, [3180] = {.lex_state = 126}, [3181] = {.lex_state = 120, .external_lex_state = 27}, [3182] = {.lex_state = 126}, [3183] = {.lex_state = 126}, - [3184] = {.lex_state = 126}, + [3184] = {.lex_state = 120, .external_lex_state = 27}, [3185] = {.lex_state = 126}, - [3186] = {.lex_state = 126}, + [3186] = {.lex_state = 120, .external_lex_state = 27}, [3187] = {.lex_state = 120, .external_lex_state = 27}, [3188] = {.lex_state = 126}, - [3189] = {.lex_state = 126}, + [3189] = {.lex_state = 120, .external_lex_state = 27}, [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}, + [3192] = {.lex_state = 126}, + [3193] = {.lex_state = 126}, [3194] = {.lex_state = 126}, [3195] = {.lex_state = 126}, - [3196] = {.lex_state = 126}, + [3196] = {.lex_state = 120, .external_lex_state = 27}, [3197] = {.lex_state = 120, .external_lex_state = 27}, - [3198] = {.lex_state = 126}, + [3198] = {.lex_state = 120, .external_lex_state = 27}, [3199] = {.lex_state = 126}, [3200] = {.lex_state = 126}, [3201] = {.lex_state = 120, .external_lex_state = 27}, - [3202] = {.lex_state = 126}, + [3202] = {.lex_state = 120, .external_lex_state = 27}, [3203] = {.lex_state = 126}, [3204] = {.lex_state = 120, .external_lex_state = 27}, - [3205] = {.lex_state = 126}, - [3206] = {.lex_state = 126}, + [3205] = {.lex_state = 120, .external_lex_state = 27}, + [3206] = {.lex_state = 120, .external_lex_state = 27}, [3207] = {.lex_state = 120, .external_lex_state = 27}, [3208] = {.lex_state = 120, .external_lex_state = 27}, - [3209] = {.lex_state = 126}, + [3209] = {.lex_state = 120, .external_lex_state = 27}, [3210] = {.lex_state = 126}, [3211] = {.lex_state = 126}, - [3212] = {.lex_state = 126}, - [3213] = {.lex_state = 126}, + [3212] = {.lex_state = 120, .external_lex_state = 27}, + [3213] = {.lex_state = 120, .external_lex_state = 27}, [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}, + [3217] = {.lex_state = 120, .external_lex_state = 27}, [3218] = {.lex_state = 120, .external_lex_state = 27}, - [3219] = {.lex_state = 126}, - [3220] = {.lex_state = 126}, - [3221] = {.lex_state = 120, .external_lex_state = 27}, + [3219] = {.lex_state = 120, .external_lex_state = 27}, + [3220] = {.lex_state = 120, .external_lex_state = 27}, + [3221] = {.lex_state = 126}, [3222] = {.lex_state = 120, .external_lex_state = 27}, - [3223] = {.lex_state = 120, .external_lex_state = 27}, + [3223] = {.lex_state = 126}, [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}, + [3225] = {.lex_state = 126}, + [3226] = {.lex_state = 126}, + [3227] = {.lex_state = 120, .external_lex_state = 27}, + [3228] = {.lex_state = 120, .external_lex_state = 27}, + [3229] = {.lex_state = 120, .external_lex_state = 27}, + [3230] = {.lex_state = 126}, + [3231] = {.lex_state = 120, .external_lex_state = 27}, + [3232] = {.lex_state = 126}, + [3233] = {.lex_state = 120, .external_lex_state = 27}, + [3234] = {.lex_state = 120, .external_lex_state = 16}, + [3235] = {.lex_state = 120, .external_lex_state = 16}, [3236] = {.lex_state = 120}, [3237] = {.lex_state = 121}, - [3238] = {.lex_state = 121}, - [3239] = {.lex_state = 121}, - [3240] = {.lex_state = 120}, + [3238] = {.lex_state = 120}, + [3239] = {.lex_state = 120}, + [3240] = {.lex_state = 121}, [3241] = {.lex_state = 120}, [3242] = {.lex_state = 121}, - [3243] = {.lex_state = 120}, - [3244] = {.lex_state = 121}, + [3243] = {.lex_state = 121}, + [3244] = {.lex_state = 120}, [3245] = {.lex_state = 121}, [3246] = {.lex_state = 121}, - [3247] = {.lex_state = 121}, + [3247] = {.lex_state = 120}, [3248] = {.lex_state = 121}, [3249] = {.lex_state = 121}, - [3250] = {.lex_state = 121}, + [3250] = {.lex_state = 120}, [3251] = {.lex_state = 121}, [3252] = {.lex_state = 121}, - [3253] = {.lex_state = 121}, - [3254] = {.lex_state = 120}, + [3253] = {.lex_state = 120}, + [3254] = {.lex_state = 121}, [3255] = {.lex_state = 120}, [3256] = {.lex_state = 121}, - [3257] = {.lex_state = 120}, + [3257] = {.lex_state = 121}, [3258] = {.lex_state = 120}, - [3259] = {.lex_state = 120}, + [3259] = {.lex_state = 121}, [3260] = {.lex_state = 121}, [3261] = {.lex_state = 121}, - [3262] = {.lex_state = 120}, + [3262] = {.lex_state = 121}, [3263] = {.lex_state = 121}, [3264] = {.lex_state = 121}, - [3265] = {.lex_state = 121}, - [3266] = {.lex_state = 121}, - [3267] = {.lex_state = 120}, + [3265] = {.lex_state = 120}, + [3266] = {.lex_state = 120}, + [3267] = {.lex_state = 121}, [3268] = {.lex_state = 121}, - [3269] = {.lex_state = 120}, - [3270] = {.lex_state = 121}, + [3269] = {.lex_state = 121}, + [3270] = {.lex_state = 120}, [3271] = {.lex_state = 121}, [3272] = {.lex_state = 121}, [3273] = {.lex_state = 121}, [3274] = {.lex_state = 121}, - [3275] = {.lex_state = 120}, + [3275] = {.lex_state = 121}, [3276] = {.lex_state = 121}, - [3277] = {.lex_state = 121}, - [3278] = {.lex_state = 120}, - [3279] = {.lex_state = 120}, - [3280] = {.lex_state = 121}, + [3277] = {.lex_state = 120}, + [3278] = {.lex_state = 121}, + [3279] = {.lex_state = 121}, + [3280] = {.lex_state = 120}, [3281] = {.lex_state = 120}, - [3282] = {.lex_state = 121}, + [3282] = {.lex_state = 120}, [3283] = {.lex_state = 121}, [3284] = {.lex_state = 121}, - [3285] = {.lex_state = 120}, + [3285] = {.lex_state = 121}, [3286] = {.lex_state = 121}, - [3287] = {.lex_state = 121}, + [3287] = {.lex_state = 120}, [3288] = {.lex_state = 121}, [3289] = {.lex_state = 121}, [3290] = {.lex_state = 121}, [3291] = {.lex_state = 121}, - [3292] = {.lex_state = 120}, - [3293] = {.lex_state = 120}, + [3292] = {.lex_state = 121}, + [3293] = {.lex_state = 121}, [3294] = {.lex_state = 120}, - [3295] = {.lex_state = 121}, + [3295] = {.lex_state = 120}, [3296] = {.lex_state = 121}, [3297] = {.lex_state = 121}, - [3298] = {.lex_state = 120}, - [3299] = {.lex_state = 120}, - [3300] = {.lex_state = 121}, + [3298] = {.lex_state = 121}, + [3299] = {.lex_state = 121}, + [3300] = {.lex_state = 120}, [3301] = {.lex_state = 121}, - [3302] = {.lex_state = 120}, + [3302] = {.lex_state = 121}, [3303] = {.lex_state = 121}, [3304] = {.lex_state = 121}, - [3305] = {.lex_state = 121}, - [3306] = {.lex_state = 120}, - [3307] = {.lex_state = 120}, + [3305] = {.lex_state = 120}, + [3306] = {.lex_state = 121}, + [3307] = {.lex_state = 121}, [3308] = {.lex_state = 121}, - [3309] = {.lex_state = 120}, + [3309] = {.lex_state = 121}, [3310] = {.lex_state = 121}, [3311] = {.lex_state = 120}, - [3312] = {.lex_state = 121}, - [3313] = {.lex_state = 120}, + [3312] = {.lex_state = 120}, + [3313] = {.lex_state = 121}, [3314] = {.lex_state = 121}, - [3315] = {.lex_state = 121}, + [3315] = {.lex_state = 120}, [3316] = {.lex_state = 121}, [3317] = {.lex_state = 121}, - [3318] = {.lex_state = 121}, + [3318] = {.lex_state = 120}, [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}, + [3323] = {.lex_state = 120}, + [3324] = {.lex_state = 121}, + [3325] = {.lex_state = 121}, + [3326] = {.lex_state = 120}, + [3327] = {.lex_state = 120}, + [3328] = {.lex_state = 120}, + [3329] = {.lex_state = 121}, + [3330] = {.lex_state = 121}, + [3331] = {.lex_state = 120}, [3332] = {.lex_state = 131}, [3333] = {.lex_state = 131}, - [3334] = {.lex_state = 133, .external_lex_state = 29}, - [3335] = {.lex_state = 131}, + [3334] = {.lex_state = 131}, + [3335] = {.lex_state = 133, .external_lex_state = 29}, [3336] = {.lex_state = 131}, [3337] = {.lex_state = 131}, [3338] = {.lex_state = 131}, @@ -13809,13 +13817,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3354] = {.lex_state = 131}, [3355] = {.lex_state = 131}, [3356] = {.lex_state = 131}, - [3357] = {.lex_state = 131}, + [3357] = {.lex_state = 133, .external_lex_state = 29}, [3358] = {.lex_state = 131}, [3359] = {.lex_state = 131}, [3360] = {.lex_state = 131}, [3361] = {.lex_state = 131}, [3362] = {.lex_state = 131}, - [3363] = {.lex_state = 131}, + [3363] = {.lex_state = 133, .external_lex_state = 29}, [3364] = {.lex_state = 131}, [3365] = {.lex_state = 131}, [3366] = {.lex_state = 131}, @@ -13824,9 +13832,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3369] = {.lex_state = 131}, [3370] = {.lex_state = 131}, [3371] = {.lex_state = 131}, - [3372] = {.lex_state = 131}, + [3372] = {.lex_state = 122}, [3373] = {.lex_state = 131}, - [3374] = {.lex_state = 133, .external_lex_state = 29}, + [3374] = {.lex_state = 131}, [3375] = {.lex_state = 131}, [3376] = {.lex_state = 131}, [3377] = {.lex_state = 131}, @@ -13838,903 +13846,911 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3383] = {.lex_state = 131}, [3384] = {.lex_state = 131}, [3385] = {.lex_state = 131}, - [3386] = {.lex_state = 133, .external_lex_state = 29}, + [3386] = {.lex_state = 131}, [3387] = {.lex_state = 131}, [3388] = {.lex_state = 131}, [3389] = {.lex_state = 131}, - [3390] = {.lex_state = 131}, + [3390] = {.lex_state = 133, .external_lex_state = 29}, [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}, + [3394] = {.lex_state = 131}, + [3395] = {.lex_state = 131}, + [3396] = {.lex_state = 131}, + [3397] = {.lex_state = 131}, + [3398] = {.lex_state = 131}, + [3399] = {.lex_state = 131}, + [3400] = {.lex_state = 131}, + [3401] = {.lex_state = 131}, + [3402] = {.lex_state = 116, .external_lex_state = 30}, + [3403] = {.lex_state = 116, .external_lex_state = 30}, + [3404] = {.lex_state = 116, .external_lex_state = 30}, + [3405] = {.lex_state = 120}, + [3406] = {.lex_state = 116, .external_lex_state = 30}, + [3407] = {.lex_state = 116, .external_lex_state = 30}, + [3408] = {.lex_state = 116, .external_lex_state = 30}, + [3409] = {.lex_state = 116, .external_lex_state = 30}, [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}, + [3413] = {.lex_state = 231}, + [3414] = {.lex_state = 231}, + [3415] = {.lex_state = 132}, + [3416] = {.lex_state = 231}, + [3417] = {.lex_state = 231}, + [3418] = {.lex_state = 231}, + [3419] = {.lex_state = 231}, + [3420] = {.lex_state = 222, .external_lex_state = 25}, [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}, + [3426] = {.lex_state = 131, .external_lex_state = 26}, + [3427] = {.lex_state = 222, .external_lex_state = 25}, + [3428] = {.lex_state = 131, .external_lex_state = 26}, + [3429] = {.lex_state = 131, .external_lex_state = 26}, [3430] = {.lex_state = 222, .external_lex_state = 19}, - [3431] = {.lex_state = 131, .external_lex_state = 26}, - [3432] = {.lex_state = 222, .external_lex_state = 25}, + [3431] = {.lex_state = 222, .external_lex_state = 25}, + [3432] = {.lex_state = 131, .external_lex_state = 26}, [3433] = {.lex_state = 131, .external_lex_state = 26}, [3434] = {.lex_state = 131, .external_lex_state = 26}, - [3435] = {.lex_state = 222, .external_lex_state = 25}, + [3435] = {.lex_state = 131, .external_lex_state = 26}, [3436] = {.lex_state = 131, .external_lex_state = 26}, - [3437] = {.lex_state = 131, .external_lex_state = 26}, - [3438] = {.lex_state = 222, .external_lex_state = 25}, + [3437] = {.lex_state = 222, .external_lex_state = 25}, + [3438] = {.lex_state = 131, .external_lex_state = 26}, [3439] = {.lex_state = 131, .external_lex_state = 26}, - [3440] = {.lex_state = 222, .external_lex_state = 25}, + [3440] = {.lex_state = 131, .external_lex_state = 26}, [3441] = {.lex_state = 222, .external_lex_state = 25}, [3442] = {.lex_state = 222, .external_lex_state = 25}, - [3443] = {.lex_state = 51, .external_lex_state = 19}, + [3443] = {.lex_state = 131, .external_lex_state = 26}, [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}, + [3445] = {.lex_state = 51, .external_lex_state = 19}, + [3446] = {.lex_state = 222, .external_lex_state = 19}, + [3447] = {.lex_state = 222, .external_lex_state = 25}, + [3448] = {.lex_state = 222, .external_lex_state = 25}, + [3449] = {.lex_state = 222, .external_lex_state = 19}, [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}, + [3452] = {.lex_state = 51, .external_lex_state = 19}, + [3453] = {.lex_state = 51, .external_lex_state = 19}, + [3454] = {.lex_state = 51, .external_lex_state = 19}, [3455] = {.lex_state = 222, .external_lex_state = 25}, - [3456] = {.lex_state = 116, .external_lex_state = 30}, + [3456] = {.lex_state = 222, .external_lex_state = 19}, [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}, + [3458] = {.lex_state = 131, .external_lex_state = 26}, + [3459] = {.lex_state = 131, .external_lex_state = 26}, + [3460] = {.lex_state = 131, .external_lex_state = 26}, + [3461] = {.lex_state = 131, .external_lex_state = 26}, + [3462] = {.lex_state = 131, .external_lex_state = 26}, + [3463] = {.lex_state = 131}, + [3464] = {.lex_state = 222, .external_lex_state = 25}, + [3465] = {.lex_state = 222, .external_lex_state = 25}, + [3466] = {.lex_state = 222, .external_lex_state = 25}, + [3467] = {.lex_state = 222, .external_lex_state = 25}, + [3468] = {.lex_state = 222, .external_lex_state = 25}, + [3469] = {.lex_state = 222, .external_lex_state = 25}, + [3470] = {.lex_state = 222, .external_lex_state = 19}, + [3471] = {.lex_state = 133}, + [3472] = {.lex_state = 222, .external_lex_state = 19}, + [3473] = {.lex_state = 222, .external_lex_state = 25}, + [3474] = {.lex_state = 222, .external_lex_state = 25}, [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}, + [3476] = {.lex_state = 133}, + [3477] = {.lex_state = 133}, + [3478] = {.lex_state = 131}, [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}, + [3481] = {.lex_state = 222, .external_lex_state = 25}, + [3482] = {.lex_state = 116, .external_lex_state = 30}, + [3483] = {.lex_state = 222, .external_lex_state = 25}, [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}, + [3486] = {.lex_state = 116, .external_lex_state = 30}, + [3487] = {.lex_state = 116, .external_lex_state = 30}, + [3488] = {.lex_state = 222, .external_lex_state = 19}, + [3489] = {.lex_state = 116, .external_lex_state = 30}, + [3490] = {.lex_state = 51, .external_lex_state = 19}, [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}, + [3492] = {.lex_state = 133}, + [3493] = {.lex_state = 133}, + [3494] = {.lex_state = 222, .external_lex_state = 25}, + [3495] = {.lex_state = 222, .external_lex_state = 19}, + [3496] = {.lex_state = 116, .external_lex_state = 30}, + [3497] = {.lex_state = 116, .external_lex_state = 30}, [3498] = {.lex_state = 222, .external_lex_state = 25}, - [3499] = {.lex_state = 133}, + [3499] = {.lex_state = 222, .external_lex_state = 25}, [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}, + [3501] = {.lex_state = 51, .external_lex_state = 19}, + [3502] = {.lex_state = 222, .external_lex_state = 25}, + [3503] = {.lex_state = 222, .external_lex_state = 25}, + [3504] = {.lex_state = 116, .external_lex_state = 30}, [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}, + [3507] = {.lex_state = 222, .external_lex_state = 25}, + [3508] = {.lex_state = 116, .external_lex_state = 30}, [3509] = {.lex_state = 222, .external_lex_state = 25}, - [3510] = {.lex_state = 222, .external_lex_state = 25}, + [3510] = {.lex_state = 116, .external_lex_state = 30}, [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}, + [3512] = {.lex_state = 116, .external_lex_state = 30}, + [3513] = {.lex_state = 222, .external_lex_state = 25}, + [3514] = {.lex_state = 116, .external_lex_state = 30}, + [3515] = {.lex_state = 133}, + [3516] = {.lex_state = 222, .external_lex_state = 25}, + [3517] = {.lex_state = 222, .external_lex_state = 25}, + [3518] = {.lex_state = 116, .external_lex_state = 30}, [3519] = {.lex_state = 116, .external_lex_state = 30}, - [3520] = {.lex_state = 131}, + [3520] = {.lex_state = 116, .external_lex_state = 30}, [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}, + [3522] = {.lex_state = 222, .external_lex_state = 25}, + [3523] = {.lex_state = 222, .external_lex_state = 25}, + [3524] = {.lex_state = 222, .external_lex_state = 25}, + [3525] = {.lex_state = 222, .external_lex_state = 25}, + [3526] = {.lex_state = 116, .external_lex_state = 30}, + [3527] = {.lex_state = 116, .external_lex_state = 30}, + [3528] = {.lex_state = 222, .external_lex_state = 19}, + [3529] = {.lex_state = 222, .external_lex_state = 25}, [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}, + [3533] = {.lex_state = 126, .external_lex_state = 26}, + [3534] = {.lex_state = 231, .external_lex_state = 26}, [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}, + [3536] = {.lex_state = 231, .external_lex_state = 26}, + [3537] = {.lex_state = 231, .external_lex_state = 26}, + [3538] = {.lex_state = 126}, + [3539] = {.lex_state = 133}, [3540] = {.lex_state = 133}, - [3541] = {.lex_state = 222, .external_lex_state = 19}, - [3542] = {.lex_state = 231, .external_lex_state = 26}, + [3541] = {.lex_state = 133}, + [3542] = {.lex_state = 126}, [3543] = {.lex_state = 222, .external_lex_state = 19}, [3544] = {.lex_state = 231, .external_lex_state = 26}, - [3545] = {.lex_state = 231, .external_lex_state = 26}, + [3545] = {.lex_state = 133}, [3546] = {.lex_state = 133}, - [3547] = {.lex_state = 133}, + [3547] = {.lex_state = 222, .external_lex_state = 19}, [3548] = {.lex_state = 222, .external_lex_state = 19}, - [3549] = {.lex_state = 126, .external_lex_state = 26}, + [3549] = {.lex_state = 133}, [3550] = {.lex_state = 133}, - [3551] = {.lex_state = 133}, - [3552] = {.lex_state = 133}, + [3551] = {.lex_state = 222, .external_lex_state = 19}, + [3552] = {.lex_state = 222, .external_lex_state = 19}, [3553] = {.lex_state = 133}, [3554] = {.lex_state = 133}, - [3555] = {.lex_state = 222, .external_lex_state = 19}, - [3556] = {.lex_state = 126}, - [3557] = {.lex_state = 133}, + [3555] = {.lex_state = 133}, + [3556] = {.lex_state = 133}, + [3557] = {.lex_state = 231, .external_lex_state = 26}, [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}, + [3563] = {.lex_state = 133}, + [3564] = {.lex_state = 126}, [3565] = {.lex_state = 133}, [3566] = {.lex_state = 133}, [3567] = {.lex_state = 133}, - [3568] = {.lex_state = 133}, + [3568] = {.lex_state = 222, .external_lex_state = 19}, [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}, + [3570] = {.lex_state = 222, .external_lex_state = 19}, + [3571] = {.lex_state = 133}, + [3572] = {.lex_state = 133}, + [3573] = {.lex_state = 133}, + [3574] = {.lex_state = 222, .external_lex_state = 19}, + [3575] = {.lex_state = 133}, + [3576] = {.lex_state = 222, .external_lex_state = 19}, + [3577] = {.lex_state = 133}, + [3578] = {.lex_state = 133}, + [3579] = {.lex_state = 222, .external_lex_state = 19}, + [3580] = {.lex_state = 231, .external_lex_state = 26}, + [3581] = {.lex_state = 231, .external_lex_state = 26}, + [3582] = {.lex_state = 126}, + [3583] = {.lex_state = 222, .external_lex_state = 19}, + [3584] = {.lex_state = 116}, + [3585] = {.lex_state = 133}, + [3586] = {.lex_state = 116}, [3587] = {.lex_state = 133}, - [3588] = {.lex_state = 133}, + [3588] = {.lex_state = 126}, [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}, + [3593] = {.lex_state = 116}, + [3594] = {.lex_state = 231, .external_lex_state = 26}, [3595] = {.lex_state = 133}, - [3596] = {.lex_state = 222, .external_lex_state = 19}, - [3597] = {.lex_state = 133}, + [3596] = {.lex_state = 116}, + [3597] = {.lex_state = 231, .external_lex_state = 26}, [3598] = {.lex_state = 133}, - [3599] = {.lex_state = 222, .external_lex_state = 19}, - [3600] = {.lex_state = 222, .external_lex_state = 19}, + [3599] = {.lex_state = 133}, + [3600] = {.lex_state = 104, .external_lex_state = 28}, [3601] = {.lex_state = 133}, - [3602] = {.lex_state = 116}, - [3603] = {.lex_state = 116}, + [3602] = {.lex_state = 133}, + [3603] = {.lex_state = 231, .external_lex_state = 26}, [3604] = {.lex_state = 133}, - [3605] = {.lex_state = 133}, + [3605] = {.lex_state = 116}, [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}, + [3608] = {.lex_state = 128, .external_lex_state = 21}, + [3609] = {.lex_state = 104, .external_lex_state = 28}, + [3610] = {.lex_state = 116}, + [3611] = {.lex_state = 133}, [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}, + [3613] = {.lex_state = 116}, + [3614] = {.lex_state = 133}, + [3615] = {.lex_state = 133}, + [3616] = {.lex_state = 104, .external_lex_state = 28}, + [3617] = {.lex_state = 222, .external_lex_state = 19}, [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}, + [3620] = {.lex_state = 222, .external_lex_state = 19}, + [3621] = {.lex_state = 116}, + [3622] = {.lex_state = 133}, [3623] = {.lex_state = 133}, - [3624] = {.lex_state = 133}, - [3625] = {.lex_state = 222, .external_lex_state = 19}, + [3624] = {.lex_state = 222, .external_lex_state = 19}, + [3625] = {.lex_state = 104, .external_lex_state = 28}, [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}, + [3627] = {.lex_state = 133}, + [3628] = {.lex_state = 116}, + [3629] = {.lex_state = 133}, + [3630] = {.lex_state = 133}, + [3631] = {.lex_state = 133}, + [3632] = {.lex_state = 133}, + [3633] = {.lex_state = 222, .external_lex_state = 19}, + [3634] = {.lex_state = 222, .external_lex_state = 19}, + [3635] = {.lex_state = 133}, + [3636] = {.lex_state = 133}, + [3637] = {.lex_state = 222, .external_lex_state = 19}, + [3638] = {.lex_state = 112, .external_lex_state = 21}, + [3639] = {.lex_state = 231}, + [3640] = {.lex_state = 112, .external_lex_state = 21}, + [3641] = {.lex_state = 112, .external_lex_state = 21}, + [3642] = {.lex_state = 112, .external_lex_state = 21}, [3643] = {.lex_state = 112, .external_lex_state = 21}, [3644] = {.lex_state = 112, .external_lex_state = 21}, - [3645] = {.lex_state = 231}, - [3646] = {.lex_state = 231}, + [3645] = {.lex_state = 132}, + [3646] = {.lex_state = 112, .external_lex_state = 21}, [3647] = {.lex_state = 128, .external_lex_state = 16}, [3648] = {.lex_state = 231}, - [3649] = {.lex_state = 112, .external_lex_state = 21}, + [3649] = {.lex_state = 132}, [3650] = {.lex_state = 112, .external_lex_state = 21}, - [3651] = {.lex_state = 231}, - [3652] = {.lex_state = 231}, + [3651] = {.lex_state = 128, .external_lex_state = 16}, + [3652] = {.lex_state = 112, .external_lex_state = 21}, [3653] = {.lex_state = 112, .external_lex_state = 21}, [3654] = {.lex_state = 112, .external_lex_state = 21}, - [3655] = {.lex_state = 132}, + [3655] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3658] = {.lex_state = 231}, + [3659] = {.lex_state = 231}, + [3660] = {.lex_state = 231}, [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}, + [3662] = {.lex_state = 231}, + [3663] = {.lex_state = 231}, + [3664] = {.lex_state = 231}, + [3665] = {.lex_state = 112, .external_lex_state = 21}, + [3666] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3669] = {.lex_state = 128, .external_lex_state = 16}, + [3670] = {.lex_state = 128, .external_lex_state = 16}, + [3671] = {.lex_state = 112, .external_lex_state = 21}, + [3672] = {.lex_state = 112, .external_lex_state = 21}, [3673] = {.lex_state = 128, .external_lex_state = 16}, - [3674] = {.lex_state = 112, .external_lex_state = 21}, + [3674] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3678] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3680] = {.lex_state = 231}, + [3681] = {.lex_state = 128, .external_lex_state = 16}, + [3682] = {.lex_state = 231}, + [3683] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3688] = {.lex_state = 231}, [3689] = {.lex_state = 112, .external_lex_state = 21}, - [3690] = {.lex_state = 132, .external_lex_state = 26}, + [3690] = {.lex_state = 231}, [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}, + [3693] = {.lex_state = 128, .external_lex_state = 16}, + [3694] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3696] = {.lex_state = 112, .external_lex_state = 21}, + [3697] = {.lex_state = 112, .external_lex_state = 21}, + [3698] = {.lex_state = 132, .external_lex_state = 26}, + [3699] = {.lex_state = 231}, [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}, + [3705] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3707] = {.lex_state = 132}, + [3708] = {.lex_state = 132}, + [3709] = {.lex_state = 128, .external_lex_state = 16}, + [3710] = {.lex_state = 112, .external_lex_state = 21}, + [3711] = {.lex_state = 231}, + [3712] = {.lex_state = 112, .external_lex_state = 21}, + [3713] = {.lex_state = 112, .external_lex_state = 21}, + [3714] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3716] = {.lex_state = 112, .external_lex_state = 21}, + [3717] = {.lex_state = 112, .external_lex_state = 21}, + [3718] = {.lex_state = 128, .external_lex_state = 16}, + [3719] = {.lex_state = 112, .external_lex_state = 21}, [3720] = {.lex_state = 128, .external_lex_state = 16}, - [3721] = {.lex_state = 112, .external_lex_state = 21}, + [3721] = {.lex_state = 128, .external_lex_state = 16}, [3722] = {.lex_state = 112, .external_lex_state = 21}, [3723] = {.lex_state = 112, .external_lex_state = 21}, - [3724] = {.lex_state = 112, .external_lex_state = 21}, + [3724] = {.lex_state = 104, .external_lex_state = 28}, [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}, + [3727] = {.lex_state = 112, .external_lex_state = 21}, + [3728] = {.lex_state = 128, .external_lex_state = 16}, + [3729] = {.lex_state = 128, .external_lex_state = 16}, [3730] = {.lex_state = 112, .external_lex_state = 21}, [3731] = {.lex_state = 112, .external_lex_state = 21}, - [3732] = {.lex_state = 231}, + [3732] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3734] = {.lex_state = 112, .external_lex_state = 21}, + [3735] = {.lex_state = 112, .external_lex_state = 21}, + [3736] = {.lex_state = 112, .external_lex_state = 21}, [3737] = {.lex_state = 112, .external_lex_state = 21}, - [3738] = {.lex_state = 112, .external_lex_state = 21}, + [3738] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3740] = {.lex_state = 112, .external_lex_state = 21}, + [3741] = {.lex_state = 231}, + [3742] = {.lex_state = 128, .external_lex_state = 16}, + [3743] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3748] = {.lex_state = 231}, + [3749] = {.lex_state = 128, .external_lex_state = 16}, + [3750] = {.lex_state = 112, .external_lex_state = 21}, + [3751] = {.lex_state = 128, .external_lex_state = 16}, + [3752] = {.lex_state = 112, .external_lex_state = 21}, + [3753] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3755] = {.lex_state = 128, .external_lex_state = 16}, + [3756] = {.lex_state = 112, .external_lex_state = 21}, + [3757] = {.lex_state = 132, .external_lex_state = 26}, + [3758] = {.lex_state = 112, .external_lex_state = 21}, + [3759] = {.lex_state = 128, .external_lex_state = 16}, + [3760] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3764] = {.lex_state = 112, .external_lex_state = 21}, [3765] = {.lex_state = 112, .external_lex_state = 21}, - [3766] = {.lex_state = 128, .external_lex_state = 16}, + [3766] = {.lex_state = 231}, [3767] = {.lex_state = 112, .external_lex_state = 21}, - [3768] = {.lex_state = 112, .external_lex_state = 21}, + [3768] = {.lex_state = 128, .external_lex_state = 16}, [3769] = {.lex_state = 128, .external_lex_state = 16}, - [3770] = {.lex_state = 128, .external_lex_state = 16}, - [3771] = {.lex_state = 112, .external_lex_state = 21}, + [3770] = {.lex_state = 112, .external_lex_state = 21}, + [3771] = {.lex_state = 231}, [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}, + [3773] = {.lex_state = 128, .external_lex_state = 16}, + [3774] = {.lex_state = 132}, + [3775] = {.lex_state = 112, .external_lex_state = 21}, + [3776] = {.lex_state = 112, .external_lex_state = 21}, + [3777] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3779] = {.lex_state = 231}, + [3780] = {.lex_state = 231}, + [3781] = {.lex_state = 104, .external_lex_state = 28}, + [3782] = {.lex_state = 128, .external_lex_state = 16}, + [3783] = {.lex_state = 231}, + [3784] = {.lex_state = 132}, [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}, + [3786] = {.lex_state = 231}, + [3787] = {.lex_state = 231}, + [3788] = {.lex_state = 112, .external_lex_state = 21}, + [3789] = {.lex_state = 104, .external_lex_state = 28}, [3790] = {.lex_state = 128, .external_lex_state = 16}, - [3791] = {.lex_state = 128, .external_lex_state = 16}, - [3792] = {.lex_state = 112, .external_lex_state = 21}, + [3791] = {.lex_state = 112, .external_lex_state = 21}, + [3792] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3794] = {.lex_state = 112, .external_lex_state = 21}, + [3795] = {.lex_state = 132}, + [3796] = {.lex_state = 112, .external_lex_state = 21}, + [3797] = {.lex_state = 112, .external_lex_state = 21}, [3798] = {.lex_state = 112, .external_lex_state = 21}, - [3799] = {.lex_state = 112, .external_lex_state = 21}, + [3799] = {.lex_state = 132, .external_lex_state = 26}, [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}, + [3801] = {.lex_state = 231}, + [3802] = {.lex_state = 112, .external_lex_state = 21}, + [3803] = {.lex_state = 104, .external_lex_state = 28}, + [3804] = {.lex_state = 128, .external_lex_state = 16}, + [3805] = {.lex_state = 128, .external_lex_state = 16}, [3806] = {.lex_state = 112, .external_lex_state = 21}, - [3807] = {.lex_state = 231}, + [3807] = {.lex_state = 112, .external_lex_state = 21}, [3808] = {.lex_state = 128, .external_lex_state = 16}, - [3809] = {.lex_state = 231}, - [3810] = {.lex_state = 231}, + [3809] = {.lex_state = 128, .external_lex_state = 16}, + [3810] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3813] = {.lex_state = 128, .external_lex_state = 16}, + [3814] = {.lex_state = 128, .external_lex_state = 16}, + [3815] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3818] = {.lex_state = 128, .external_lex_state = 16}, + [3819] = {.lex_state = 112, .external_lex_state = 21}, [3820] = {.lex_state = 112, .external_lex_state = 21}, - [3821] = {.lex_state = 231}, - [3822] = {.lex_state = 112, .external_lex_state = 21}, + [3821] = {.lex_state = 112, .external_lex_state = 21}, + [3822] = {.lex_state = 104, .external_lex_state = 28}, [3823] = {.lex_state = 128, .external_lex_state = 16}, - [3824] = {.lex_state = 112, .external_lex_state = 21}, - [3825] = {.lex_state = 128, .external_lex_state = 16}, + [3824] = {.lex_state = 128, .external_lex_state = 16}, + [3825] = {.lex_state = 112, .external_lex_state = 21}, [3826] = {.lex_state = 112, .external_lex_state = 21}, [3827] = {.lex_state = 112, .external_lex_state = 21}, - [3828] = {.lex_state = 231}, + [3828] = {.lex_state = 112, .external_lex_state = 21}, [3829] = {.lex_state = 231}, - [3830] = {.lex_state = 128, .external_lex_state = 16}, + [3830] = {.lex_state = 231}, [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}, + [3833] = {.lex_state = 112, .external_lex_state = 21}, + [3834] = {.lex_state = 231}, + [3835] = {.lex_state = 128, .external_lex_state = 16}, + [3836] = {.lex_state = 112, .external_lex_state = 21}, + [3837] = {.lex_state = 112, .external_lex_state = 21}, + [3838] = {.lex_state = 128, .external_lex_state = 16}, + [3839] = {.lex_state = 128, .external_lex_state = 16}, [3840] = {.lex_state = 112, .external_lex_state = 21}, - [3841] = {.lex_state = 112, .external_lex_state = 21}, - [3842] = {.lex_state = 112, .external_lex_state = 21}, + [3841] = {.lex_state = 231}, + [3842] = {.lex_state = 231}, [3843] = {.lex_state = 112, .external_lex_state = 21}, - [3844] = {.lex_state = 112, .external_lex_state = 21}, + [3844] = {.lex_state = 128, .external_lex_state = 16}, [3845] = {.lex_state = 128, .external_lex_state = 16}, - [3846] = {.lex_state = 128, .external_lex_state = 16}, + [3846] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3848] = {.lex_state = 112, .external_lex_state = 21}, + [3849] = {.lex_state = 128, .external_lex_state = 16}, + [3850] = {.lex_state = 128, .external_lex_state = 16}, [3851] = {.lex_state = 112, .external_lex_state = 21}, - [3852] = {.lex_state = 128, .external_lex_state = 16}, + [3852] = {.lex_state = 112, .external_lex_state = 21}, [3853] = {.lex_state = 128, .external_lex_state = 16}, - [3854] = {.lex_state = 128, .external_lex_state = 16}, + [3854] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3857] = {.lex_state = 104, .external_lex_state = 28}, + [3858] = {.lex_state = 132, .external_lex_state = 26}, [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}, + [3860] = {.lex_state = 112, .external_lex_state = 21}, + [3861] = {.lex_state = 128, .external_lex_state = 16}, + [3862] = {.lex_state = 128, .external_lex_state = 16}, + [3863] = {.lex_state = 128, .external_lex_state = 16}, [3864] = {.lex_state = 112, .external_lex_state = 21}, - [3865] = {.lex_state = 132}, + [3865] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3867] = {.lex_state = 112, .external_lex_state = 21}, + [3868] = {.lex_state = 231}, + [3869] = {.lex_state = 112, .external_lex_state = 21}, [3870] = {.lex_state = 112, .external_lex_state = 21}, [3871] = {.lex_state = 128, .external_lex_state = 16}, - [3872] = {.lex_state = 112, .external_lex_state = 21}, + [3872] = {.lex_state = 128, .external_lex_state = 16}, [3873] = {.lex_state = 112, .external_lex_state = 21}, - [3874] = {.lex_state = 112, .external_lex_state = 21}, + [3874] = {.lex_state = 128, .external_lex_state = 16}, [3875] = {.lex_state = 231}, [3876] = {.lex_state = 128, .external_lex_state = 16}, - [3877] = {.lex_state = 105, .external_lex_state = 28}, + [3877] = {.lex_state = 112, .external_lex_state = 21}, [3878] = {.lex_state = 112, .external_lex_state = 21}, [3879] = {.lex_state = 112, .external_lex_state = 21}, - [3880] = {.lex_state = 112, .external_lex_state = 21}, + [3880] = {.lex_state = 104, .external_lex_state = 28}, [3881] = {.lex_state = 112, .external_lex_state = 21}, - [3882] = {.lex_state = 112, .external_lex_state = 21}, + [3882] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3884] = {.lex_state = 112, .external_lex_state = 21}, + [3885] = {.lex_state = 112, .external_lex_state = 21}, + [3886] = {.lex_state = 128, .external_lex_state = 16}, + [3887] = {.lex_state = 132}, + [3888] = {.lex_state = 112, .external_lex_state = 21}, + [3889] = {.lex_state = 132}, + [3890] = {.lex_state = 128, .external_lex_state = 16}, [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}, + [3892] = {.lex_state = 112, .external_lex_state = 21}, + [3893] = {.lex_state = 112, .external_lex_state = 21}, + [3894] = {.lex_state = 128, .external_lex_state = 16}, + [3895] = {.lex_state = 128, .external_lex_state = 16}, + [3896] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3899] = {.lex_state = 104, .external_lex_state = 28}, + [3900] = {.lex_state = 128, .external_lex_state = 16}, + [3901] = {.lex_state = 104, .external_lex_state = 28}, + [3902] = {.lex_state = 104, .external_lex_state = 28}, + [3903] = {.lex_state = 104, .external_lex_state = 28}, + [3904] = {.lex_state = 104, .external_lex_state = 28}, + [3905] = {.lex_state = 104, .external_lex_state = 28}, + [3906] = {.lex_state = 133}, + [3907] = {.lex_state = 104, .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}, + [3909] = {.lex_state = 132}, + [3910] = {.lex_state = 104, .external_lex_state = 28}, + [3911] = {.lex_state = 104, .external_lex_state = 28}, + [3912] = {.lex_state = 104, .external_lex_state = 28}, [3913] = {.lex_state = 132}, - [3914] = {.lex_state = 105, .external_lex_state = 28}, + [3914] = {.lex_state = 104, .external_lex_state = 28}, [3915] = {.lex_state = 132}, - [3916] = {.lex_state = 132}, + [3916] = {.lex_state = 104, .external_lex_state = 28}, [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}, + [3919] = {.lex_state = 132}, + [3920] = {.lex_state = 104, .external_lex_state = 28}, + [3921] = {.lex_state = 132}, [3922] = {.lex_state = 132}, - [3923] = {.lex_state = 105, .external_lex_state = 28}, - [3924] = {.lex_state = 105, .external_lex_state = 28}, - [3925] = {.lex_state = 132}, + [3923] = {.lex_state = 104, .external_lex_state = 28}, + [3924] = {.lex_state = 132}, + [3925] = {.lex_state = 104, .external_lex_state = 28}, [3926] = {.lex_state = 132}, - [3927] = {.lex_state = 112, .external_lex_state = 21}, - [3928] = {.lex_state = 112, .external_lex_state = 21}, - [3929] = {.lex_state = 231}, + [3927] = {.lex_state = 132}, + [3928] = {.lex_state = 104, .external_lex_state = 28}, + [3929] = {.lex_state = 132}, [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}, + [3931] = {.lex_state = 104, .external_lex_state = 28}, + [3932] = {.lex_state = 132}, + [3933] = {.lex_state = 104, .external_lex_state = 28}, + [3934] = {.lex_state = 104, .external_lex_state = 28}, + [3935] = {.lex_state = 133}, + [3936] = {.lex_state = 104, .external_lex_state = 28}, + [3937] = {.lex_state = 132}, [3938] = {.lex_state = 132}, - [3939] = {.lex_state = 132}, + [3939] = {.lex_state = 104, .external_lex_state = 28}, [3940] = {.lex_state = 132}, - [3941] = {.lex_state = 132}, - [3942] = {.lex_state = 105, .external_lex_state = 28}, + [3941] = {.lex_state = 104, .external_lex_state = 28}, + [3942] = {.lex_state = 132}, [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}, + [3944] = {.lex_state = 231}, + [3945] = {.lex_state = 104, .external_lex_state = 28}, + [3946] = {.lex_state = 104, .external_lex_state = 28}, + [3947] = {.lex_state = 104, .external_lex_state = 28}, + [3948] = {.lex_state = 133}, [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}, + [3954] = {.lex_state = 132}, [3955] = {.lex_state = 132}, [3956] = {.lex_state = 132}, - [3957] = {.lex_state = 112, .external_lex_state = 21}, - [3958] = {.lex_state = 105, .external_lex_state = 28}, + [3957] = {.lex_state = 132}, + [3958] = {.lex_state = 132}, [3959] = {.lex_state = 132}, [3960] = {.lex_state = 112, .external_lex_state = 21}, - [3961] = {.lex_state = 132}, + [3961] = {.lex_state = 104, .external_lex_state = 28}, [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}, + [3964] = {.lex_state = 132}, + [3965] = {.lex_state = 104, .external_lex_state = 28}, + [3966] = {.lex_state = 132}, + [3967] = {.lex_state = 104, .external_lex_state = 28}, + [3968] = {.lex_state = 104, .external_lex_state = 28}, + [3969] = {.lex_state = 132}, + [3970] = {.lex_state = 133}, [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}, + [3972] = {.lex_state = 132}, + [3973] = {.lex_state = 132}, + [3974] = {.lex_state = 132}, [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}, + [3977] = {.lex_state = 104, .external_lex_state = 28}, + [3978] = {.lex_state = 132}, + [3979] = {.lex_state = 132}, [3980] = {.lex_state = 132}, [3981] = {.lex_state = 132}, - [3982] = {.lex_state = 132}, - [3983] = {.lex_state = 105, .external_lex_state = 28}, + [3982] = {.lex_state = 112, .external_lex_state = 21}, + [3983] = {.lex_state = 112, .external_lex_state = 21}, [3984] = {.lex_state = 112, .external_lex_state = 21}, - [3985] = {.lex_state = 132}, + [3985] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [3989] = {.lex_state = 132}, + [3990] = {.lex_state = 133}, [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}, + [3994] = {.lex_state = 117}, + [3995] = {.lex_state = 132}, + [3996] = {.lex_state = 112, .external_lex_state = 21}, + [3997] = {.lex_state = 132}, [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}, + [3999] = {.lex_state = 132}, + [4000] = {.lex_state = 132}, + [4001] = {.lex_state = 132}, + [4002] = {.lex_state = 133}, [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}, + [4007] = {.lex_state = 132}, + [4008] = {.lex_state = 132}, [4009] = {.lex_state = 132}, - [4010] = {.lex_state = 132}, - [4011] = {.lex_state = 133}, - [4012] = {.lex_state = 112, .external_lex_state = 21}, + [4010] = {.lex_state = 112, .external_lex_state = 21}, + [4011] = {.lex_state = 132}, + [4012] = {.lex_state = 132}, [4013] = {.lex_state = 132}, [4014] = {.lex_state = 132}, - [4015] = {.lex_state = 132}, + [4015] = {.lex_state = 112, .external_lex_state = 21}, [4016] = {.lex_state = 112, .external_lex_state = 21}, - [4017] = {.lex_state = 105, .external_lex_state = 28}, + [4017] = {.lex_state = 104, .external_lex_state = 28}, [4018] = {.lex_state = 132}, - [4019] = {.lex_state = 132}, + [4019] = {.lex_state = 112, .external_lex_state = 21}, [4020] = {.lex_state = 132}, - [4021] = {.lex_state = 105, .external_lex_state = 28}, - [4022] = {.lex_state = 133}, + [4021] = {.lex_state = 132}, + [4022] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [4024] = {.lex_state = 112, .external_lex_state = 21}, + [4025] = {.lex_state = 132}, + [4026] = {.lex_state = 112, .external_lex_state = 21}, + [4027] = {.lex_state = 112, .external_lex_state = 21}, + [4028] = {.lex_state = 128, .external_lex_state = 16}, + [4029] = {.lex_state = 133}, [4030] = {.lex_state = 112, .external_lex_state = 21}, - [4031] = {.lex_state = 132}, - [4032] = {.lex_state = 112, .external_lex_state = 21}, + [4031] = {.lex_state = 112, .external_lex_state = 21}, + [4032] = {.lex_state = 133}, [4033] = {.lex_state = 132}, - [4034] = {.lex_state = 133}, - [4035] = {.lex_state = 105, .external_lex_state = 28}, + [4034] = {.lex_state = 132}, + [4035] = {.lex_state = 133}, [4036] = {.lex_state = 132}, - [4037] = {.lex_state = 133}, - [4038] = {.lex_state = 105, .external_lex_state = 28}, - [4039] = {.lex_state = 132}, + [4037] = {.lex_state = 117}, + [4038] = {.lex_state = 112, .external_lex_state = 21}, + [4039] = {.lex_state = 112, .external_lex_state = 21}, [4040] = {.lex_state = 132}, - [4041] = {.lex_state = 132}, + [4041] = {.lex_state = 112, .external_lex_state = 21}, [4042] = {.lex_state = 132}, - [4043] = {.lex_state = 117}, - [4044] = {.lex_state = 117}, + [4043] = {.lex_state = 112, .external_lex_state = 21}, + [4044] = {.lex_state = 112, .external_lex_state = 21}, [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}, + [4046] = {.lex_state = 132}, + [4047] = {.lex_state = 112, .external_lex_state = 21}, + [4048] = {.lex_state = 112, .external_lex_state = 21}, + [4049] = {.lex_state = 112, .external_lex_state = 21}, + [4050] = {.lex_state = 112, .external_lex_state = 21}, + [4051] = {.lex_state = 112, .external_lex_state = 21}, + [4052] = {.lex_state = 112, .external_lex_state = 21}, + [4053] = {.lex_state = 132}, + [4054] = {.lex_state = 132}, + [4055] = {.lex_state = 132}, + [4056] = {.lex_state = 231}, [4057] = {.lex_state = 116}, - [4058] = {.lex_state = 116}, - [4059] = {.lex_state = 112, .external_lex_state = 16}, - [4060] = {.lex_state = 231}, - [4061] = {.lex_state = 133}, + [4058] = {.lex_state = 112, .external_lex_state = 16}, + [4059] = {.lex_state = 116}, + [4060] = {.lex_state = 112, .external_lex_state = 16}, + [4061] = {.lex_state = 116}, [4062] = {.lex_state = 116}, - [4063] = {.lex_state = 112, .external_lex_state = 16}, - [4064] = {.lex_state = 133}, - [4065] = {.lex_state = 116}, + [4063] = {.lex_state = 116}, + [4064] = {.lex_state = 231}, + [4065] = {.lex_state = 133}, [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}, + [4067] = {.lex_state = 133}, + [4068] = {.lex_state = 133}, + [4069] = {.lex_state = 133}, + [4070] = {.lex_state = 116}, + [4071] = {.lex_state = 116}, + [4072] = {.lex_state = 133}, + [4073] = {.lex_state = 116}, + [4074] = {.lex_state = 116}, + [4075] = {.lex_state = 116}, + [4076] = {.lex_state = 231}, + [4077] = {.lex_state = 133}, + [4078] = {.lex_state = 231}, + [4079] = {.lex_state = 133}, + [4080] = {.lex_state = 116}, [4081] = {.lex_state = 112, .external_lex_state = 16}, - [4082] = {.lex_state = 231}, + [4082] = {.lex_state = 112, .external_lex_state = 16}, [4083] = {.lex_state = 231}, [4084] = {.lex_state = 231}, - [4085] = {.lex_state = 133}, - [4086] = {.lex_state = 112, .external_lex_state = 16}, + [4085] = {.lex_state = 231}, + [4086] = {.lex_state = 231}, [4087] = {.lex_state = 116}, [4088] = {.lex_state = 112, .external_lex_state = 16}, [4089] = {.lex_state = 112, .external_lex_state = 16}, - [4090] = {.lex_state = 231}, + [4090] = {.lex_state = 112, .external_lex_state = 16}, [4091] = {.lex_state = 116}, [4092] = {.lex_state = 116}, - [4093] = {.lex_state = 231}, - [4094] = {.lex_state = 133}, + [4093] = {.lex_state = 116}, + [4094] = {.lex_state = 116}, [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}, + [4096] = {.lex_state = 133}, + [4097] = {.lex_state = 231}, + [4098] = {.lex_state = 116}, + [4099] = {.lex_state = 116}, + [4100] = {.lex_state = 133}, + [4101] = {.lex_state = 112, .external_lex_state = 16}, + [4102] = {.lex_state = 112, .external_lex_state = 16}, [4103] = {.lex_state = 112, .external_lex_state = 16}, - [4104] = {.lex_state = 112, .external_lex_state = 16}, + [4104] = {.lex_state = 231}, [4105] = {.lex_state = 231}, [4106] = {.lex_state = 231}, - [4107] = {.lex_state = 231}, - [4108] = {.lex_state = 116}, - [4109] = {.lex_state = 112, .external_lex_state = 16}, + [4107] = {.lex_state = 112, .external_lex_state = 16}, + [4108] = {.lex_state = 112, .external_lex_state = 16}, + [4109] = {.lex_state = 231, .external_lex_state = 31}, [4110] = {.lex_state = 112, .external_lex_state = 16}, - [4111] = {.lex_state = 231, .external_lex_state = 31}, + [4111] = {.lex_state = 231}, [4112] = {.lex_state = 231}, - [4113] = {.lex_state = 112, .external_lex_state = 16}, + [4113] = {.lex_state = 231}, [4114] = {.lex_state = 112, .external_lex_state = 16}, - [4115] = {.lex_state = 231}, - [4116] = {.lex_state = 231}, + [4115] = {.lex_state = 112, .external_lex_state = 16}, + [4116] = {.lex_state = 116}, [4117] = {.lex_state = 231}, - [4118] = {.lex_state = 116}, + [4118] = {.lex_state = 231}, [4119] = {.lex_state = 116}, - [4120] = {.lex_state = 133}, + [4120] = {.lex_state = 116}, [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}, + [4123] = {.lex_state = 133}, + [4124] = {.lex_state = 104, .external_lex_state = 24}, + [4125] = {.lex_state = 112, .external_lex_state = 16}, + [4126] = {.lex_state = 116}, + [4127] = {.lex_state = 231}, + [4128] = {.lex_state = 231}, + [4129] = {.lex_state = 231}, + [4130] = {.lex_state = 104, .external_lex_state = 24}, [4131] = {.lex_state = 231}, - [4132] = {.lex_state = 231}, + [4132] = {.lex_state = 112, .external_lex_state = 16}, [4133] = {.lex_state = 231}, - [4134] = {.lex_state = 231}, + [4134] = {.lex_state = 133}, [4135] = {.lex_state = 231}, - [4136] = {.lex_state = 231}, + [4136] = {.lex_state = 112, .external_lex_state = 16}, [4137] = {.lex_state = 112, .external_lex_state = 16}, - [4138] = {.lex_state = 112, .external_lex_state = 16}, - [4139] = {.lex_state = 231}, - [4140] = {.lex_state = 231}, + [4138] = {.lex_state = 231}, + [4139] = {.lex_state = 112, .external_lex_state = 16}, + [4140] = {.lex_state = 112, .external_lex_state = 16}, [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}, + [4142] = {.lex_state = 231, .external_lex_state = 31}, + [4143] = {.lex_state = 231}, + [4144] = {.lex_state = 231}, + [4145] = {.lex_state = 112, .external_lex_state = 16}, + [4146] = {.lex_state = 104, .external_lex_state = 24}, + [4147] = {.lex_state = 112, .external_lex_state = 16}, + [4148] = {.lex_state = 112, .external_lex_state = 16}, + [4149] = {.lex_state = 104, .external_lex_state = 24}, [4150] = {.lex_state = 231}, - [4151] = {.lex_state = 112, .external_lex_state = 16}, + [4151] = {.lex_state = 231}, [4152] = {.lex_state = 112, .external_lex_state = 16}, [4153] = {.lex_state = 231}, [4154] = {.lex_state = 231}, - [4155] = {.lex_state = 112, .external_lex_state = 16}, + [4155] = {.lex_state = 231}, [4156] = {.lex_state = 231}, - [4157] = {.lex_state = 231}, + [4157] = {.lex_state = 116}, [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}, + [4160] = {.lex_state = 231}, + [4161] = {.lex_state = 116}, + [4162] = {.lex_state = 116}, + [4163] = {.lex_state = 112, .external_lex_state = 16}, + [4164] = {.lex_state = 112, .external_lex_state = 16}, + [4165] = {.lex_state = 112, .external_lex_state = 16}, [4166] = {.lex_state = 231}, - [4167] = {.lex_state = 231}, + [4167] = {.lex_state = 112, .external_lex_state = 16}, [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}, + [4169] = {.lex_state = 231}, + [4170] = {.lex_state = 231, .external_lex_state = 31}, + [4171] = {.lex_state = 112, .external_lex_state = 16}, + [4172] = {.lex_state = 231}, + [4173] = {.lex_state = 133}, [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}, + [4175] = {.lex_state = 231}, + [4176] = {.lex_state = 112, .external_lex_state = 16}, + [4177] = {.lex_state = 112, .external_lex_state = 16}, + [4178] = {.lex_state = 231}, [4179] = {.lex_state = 231}, - [4180] = {.lex_state = 231}, - [4181] = {.lex_state = 112, .external_lex_state = 16}, - [4182] = {.lex_state = 112, .external_lex_state = 16}, + [4180] = {.lex_state = 112, .external_lex_state = 16}, + [4181] = {.lex_state = 231}, + [4182] = {.lex_state = 231}, [4183] = {.lex_state = 231}, [4184] = {.lex_state = 231}, - [4185] = {.lex_state = 116}, - [4186] = {.lex_state = 231}, - [4187] = {.lex_state = 231}, + [4185] = {.lex_state = 112, .external_lex_state = 16}, + [4186] = {.lex_state = 112, .external_lex_state = 16}, + [4187] = {.lex_state = 112, .external_lex_state = 16}, [4188] = {.lex_state = 231}, - [4189] = {.lex_state = 116}, - [4190] = {.lex_state = 133}, - [4191] = {.lex_state = 133}, + [4189] = {.lex_state = 231}, + [4190] = {.lex_state = 231}, + [4191] = {.lex_state = 231}, [4192] = {.lex_state = 116}, - [4193] = {.lex_state = 112, .external_lex_state = 16}, - [4194] = {.lex_state = 112, .external_lex_state = 16}, + [4193] = {.lex_state = 116}, + [4194] = {.lex_state = 231}, [4195] = {.lex_state = 112, .external_lex_state = 16}, - [4196] = {.lex_state = 112, .external_lex_state = 16}, - [4197] = {.lex_state = 231}, - [4198] = {.lex_state = 231}, + [4196] = {.lex_state = 231}, + [4197] = {.lex_state = 112, .external_lex_state = 16}, + [4198] = {.lex_state = 112, .external_lex_state = 16}, [4199] = {.lex_state = 231}, - [4200] = {.lex_state = 112, .external_lex_state = 16}, + [4200] = {.lex_state = 231}, [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}, + [4202] = {.lex_state = 231}, + [4203] = {.lex_state = 231}, + [4204] = {.lex_state = 112, .external_lex_state = 16}, + [4205] = {.lex_state = 112, .external_lex_state = 16}, [4206] = {.lex_state = 231}, [4207] = {.lex_state = 231}, [4208] = {.lex_state = 231}, - [4209] = {.lex_state = 116}, - [4210] = {.lex_state = 116}, + [4209] = {.lex_state = 231}, + [4210] = {.lex_state = 112, .external_lex_state = 16}, [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}, + [4212] = {.lex_state = 112, .external_lex_state = 16}, + [4213] = {.lex_state = 112, .external_lex_state = 16}, + [4214] = {.lex_state = 231}, + [4215] = {.lex_state = 231}, + [4216] = {.lex_state = 231, .external_lex_state = 31}, [4217] = {.lex_state = 231}, - [4218] = {.lex_state = 133}, + [4218] = {.lex_state = 231}, [4219] = {.lex_state = 231}, - [4220] = {.lex_state = 231}, + [4220] = {.lex_state = 112, .external_lex_state = 16}, [4221] = {.lex_state = 231}, - [4222] = {.lex_state = 112, .external_lex_state = 16}, + [4222] = {.lex_state = 231}, [4223] = {.lex_state = 231}, - [4224] = {.lex_state = 133}, + [4224] = {.lex_state = 112, .external_lex_state = 16}, [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}, + [4226] = {.lex_state = 231}, + [4227] = {.lex_state = 231}, + [4228] = {.lex_state = 231}, + [4229] = {.lex_state = 112, .external_lex_state = 16}, + [4230] = {.lex_state = 112, .external_lex_state = 16}, + [4231] = {.lex_state = 231}, + [4232] = {.lex_state = 231}, + [4233] = {.lex_state = 112, .external_lex_state = 16}, + [4234] = {.lex_state = 231}, + [4235] = {.lex_state = 116}, [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}, + [4237] = {.lex_state = 112, .external_lex_state = 16}, + [4238] = {.lex_state = 112, .external_lex_state = 16}, + [4239] = {.lex_state = 116}, + [4240] = {.lex_state = 231}, + [4241] = {.lex_state = 133}, + [4242] = {.lex_state = 231}, [4243] = {.lex_state = 231}, - [4244] = {.lex_state = 112, .external_lex_state = 16}, + [4244] = {.lex_state = 231}, [4245] = {.lex_state = 231}, - [4246] = {.lex_state = 117}, - [4247] = {.lex_state = 112, .external_lex_state = 16}, + [4246] = {.lex_state = 112, .external_lex_state = 16}, + [4247] = {.lex_state = 231}, [4248] = {.lex_state = 231}, - [4249] = {.lex_state = 231}, + [4249] = {.lex_state = 112, .external_lex_state = 16}, [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}, + [4252] = {.lex_state = 231}, + [4253] = {.lex_state = 112, .external_lex_state = 16}, + [4254] = {.lex_state = 117}, + [4255] = {.lex_state = 231}, [4256] = {.lex_state = 231}, - [4257] = {.lex_state = 231}, - [4258] = {.lex_state = 116}, + [4257] = {.lex_state = 133}, + [4258] = {.lex_state = 231, .external_lex_state = 31}, [4259] = {.lex_state = 231}, - [4260] = {.lex_state = 231}, + [4260] = {.lex_state = 112, .external_lex_state = 16}, [4261] = {.lex_state = 231}, - [4262] = {.lex_state = 231}, + [4262] = {.lex_state = 112, .external_lex_state = 16}, [4263] = {.lex_state = 112, .external_lex_state = 16}, [4264] = {.lex_state = 112, .external_lex_state = 16}, - [4265] = {.lex_state = 112, .external_lex_state = 16}, + [4265] = {.lex_state = 231}, [4266] = {.lex_state = 231}, [4267] = {.lex_state = 231}, - [4268] = {.lex_state = 117}, + [4268] = {.lex_state = 231}, [4269] = {.lex_state = 231}, - [4270] = {.lex_state = 112, .external_lex_state = 16}, - [4271] = {.lex_state = 116}, + [4270] = {.lex_state = 231}, + [4271] = {.lex_state = 231}, [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}, + [4273] = {.lex_state = 116}, + [4274] = {.lex_state = 231}, + [4275] = {.lex_state = 112, .external_lex_state = 16}, + [4276] = {.lex_state = 117}, + [4277] = {.lex_state = 231}, [4278] = {.lex_state = 112, .external_lex_state = 16}, - [4279] = {.lex_state = 231}, + [4279] = {.lex_state = 112, .external_lex_state = 16}, [4280] = {.lex_state = 231}, [4281] = {.lex_state = 231}, - [4282] = {.lex_state = 112, .external_lex_state = 16}, + [4282] = {.lex_state = 231}, + [4283] = {.lex_state = 112, .external_lex_state = 16}, + [4284] = {.lex_state = 133}, + [4285] = {.lex_state = 231, .external_lex_state = 31}, + [4286] = {.lex_state = 112, .external_lex_state = 16}, + [4287] = {.lex_state = 117}, + [4288] = {.lex_state = 231}, + [4289] = {.lex_state = 231}, + [4290] = {.lex_state = 231}, }; enum { @@ -14816,28 +14832,28 @@ static const bool ts_external_scanner_states[32][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, }, [7] = { - [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_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, + [8] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, [9] = { + [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_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, }, [10] = { - [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_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LF] = true, }, [11] = { [ts_external_token_LT_LT] = true, @@ -14887,13 +14903,13 @@ static const bool ts_external_scanner_states[32][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = true, }, [22] = { + [ts_external_token__empty_value] = true, + }, + [23] = { [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, }, @@ -15042,39 +15058,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex] = ACTIONS(1), }, [1] = { - [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), + [sym_program] = STATE(4277), + [sym__statements] = STATE(4267), + [sym_redirected_statement] = STATE(2409), + [sym_for_statement] = STATE(2409), + [sym_c_style_for_statement] = STATE(2409), + [sym_while_statement] = STATE(2409), + [sym_if_statement] = STATE(2409), + [sym_case_statement] = STATE(2409), + [sym_function_definition] = STATE(2409), + [sym_compound_statement] = STATE(2409), + [sym_subshell] = STATE(2409), + [sym_pipeline] = STATE(2409), + [sym_list] = STATE(2409), + [sym_negated_command] = STATE(2409), + [sym_test_command] = STATE(2409), + [sym_declaration_command] = STATE(2409), + [sym_unset_command] = STATE(2409), + [sym_command] = STATE(2409), + [sym_command_name] = STATE(374), + [sym_variable_assignment] = STATE(868), + [sym_subscript] = STATE(3966), + [sym_file_redirect] = STATE(1654), + [sym_arithmetic_expansion] = STATE(1403), + [sym_concatenation] = STATE(1975), + [sym_string] = STATE(1403), + [sym_translated_string] = STATE(1403), + [sym_simple_expansion] = STATE(1403), + [sym_expansion] = STATE(1403), + [sym_command_substitution] = STATE(1403), + [sym_process_substitution] = STATE(1403), [aux_sym__statements_repeat1] = STATE(199), - [aux_sym_command_repeat1] = STATE(1638), - [aux_sym__literal_repeat1] = STATE(1639), + [aux_sym_command_repeat1] = STATE(1654), + [aux_sym__literal_repeat1] = STATE(1667), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -15122,44 +15138,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(65), }, [2] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1968), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -15207,44 +15223,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [3] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1949), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -15292,44 +15308,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [4] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1973), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -15377,44 +15393,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [5] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1937), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -15462,44 +15478,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [6] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2118), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -15547,44 +15563,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [7] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2060), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -15632,45 +15648,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [8] = { - [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), + [sym__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2027), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), + [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), [anon_sym_LPAREN_LPAREN] = ACTIONS(73), @@ -15678,10 +15694,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LBRACK_LBRACK] = ACTIONS(91), [anon_sym_declare] = ACTIONS(93), @@ -15699,62 +15715,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(147), + [sym_test_operator] = ACTIONS(117), [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, [9] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1947), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -15802,44 +15818,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [10] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1929), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -15887,44 +15903,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [11] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2072), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -15972,44 +15988,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [12] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1934), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16057,44 +16073,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [13] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1942), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16142,44 +16158,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [14] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1935), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16227,44 +16243,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [15] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1956), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16312,44 +16328,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [16] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1963), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16397,44 +16413,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [17] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1936), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16482,44 +16498,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [18] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2064), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16567,44 +16583,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [19] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2006), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16652,44 +16668,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [20] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1940), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16737,44 +16753,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [21] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1959), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16822,44 +16838,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [22] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), [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_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16907,44 +16923,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [23] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2121), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -16992,44 +17008,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [24] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2139), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -17077,44 +17093,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [25] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2039), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), + [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), + }, + [26] = { + [sym__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2082), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), + [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), + }, + [27] = { + [sym__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1925), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), + [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), + }, + [28] = { + [sym__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1974), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), + [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), + }, + [29] = { + [sym__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2087), + [sym_binary_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_parenthesized_expression] = STATE(2117), + [sym_arithmetic_expansion] = STATE(240), + [sym_concatenation] = STATE(300), + [sym_string] = STATE(240), + [sym_translated_string] = STATE(240), + [sym_simple_expansion] = STATE(240), + [sym_expansion] = STATE(240), + [sym_command_substitution] = STATE(240), + [sym_process_substitution] = STATE(240), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(291), [sym_word] = ACTIONS(121), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -17161,45 +17517,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [26] = { - [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), + [30] = { + [sym__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2053), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -17246,385 +17602,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [27] = { - [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(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), - }, - [28] = { - [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(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), - }, - [29] = { - [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(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), - }, - [30] = { - [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(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), + [31] = { + [sym__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2011), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -17672,44 +17688,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [32] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1972), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -17757,45 +17773,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [33] = { - [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), + [sym__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1958), + [sym_binary_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_parenthesized_expression] = STATE(2117), + [sym_arithmetic_expansion] = STATE(240), + [sym_concatenation] = STATE(300), + [sym_string] = STATE(240), + [sym_translated_string] = STATE(240), + [sym_simple_expansion] = STATE(240), + [sym_expansion] = STATE(240), + [sym_command_substitution] = STATE(240), + [sym_process_substitution] = STATE(240), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(291), + [sym_word] = ACTIONS(121), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), [anon_sym_LPAREN_LPAREN] = ACTIONS(73), @@ -17803,10 +17819,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(123), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LBRACK_LBRACK] = ACTIONS(91), [anon_sym_declare] = ACTIONS(93), @@ -17824,62 +17840,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(117), + [sym_test_operator] = ACTIONS(147), [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, [34] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2110), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -17927,44 +17943,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [35] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(1950), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -18012,44 +18028,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [36] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym__expression] = STATE(2103), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(229), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(229), + [sym_translated_string] = STATE(229), + [sym_simple_expansion] = STATE(229), + [sym_expansion] = STATE(229), + [sym_command_substitution] = STATE(229), + [sym_process_substitution] = STATE(229), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(259), [sym_word] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -18097,22 +18113,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [37] = { - [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__expression] = STATE(2089), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(454), + [sym_concatenation] = STATE(1351), + [sym_string] = STATE(454), + [sym_translated_string] = STATE(454), + [sym_simple_expansion] = STATE(454), + [sym_expansion] = STATE(454), + [sym_command_substitution] = STATE(454), + [sym_process_substitution] = STATE(454), + [aux_sym__literal_repeat1] = STATE(803), + [aux_sym_concatenation_repeat1] = STATE(230), [sym_word] = ACTIONS(149), [anon_sym_LF] = ACTIONS(151), [anon_sym_RPAREN_RPAREN] = ACTIONS(153), @@ -18181,40 +18197,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__concat] = ACTIONS(180), }, [38] = { - [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), + [aux_sym__statements2] = STATE(62), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_elif_clause] = STATE(3515), + [sym_else_clause] = STATE(4173), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_if_statement_repeat1] = STATE(3515), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -18264,40 +18280,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [39] = { - [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__expression] = STATE(2140), + [sym_binary_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_parenthesized_expression] = STATE(2117), + [sym_arithmetic_expansion] = STATE(988), + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(988), + [sym_translated_string] = STATE(988), + [sym_simple_expansion] = STATE(988), + [sym_expansion] = STATE(988), + [sym_command_substitution] = STATE(988), + [sym_process_substitution] = STATE(988), + [aux_sym__literal_repeat1] = STATE(1098), + [aux_sym_concatenation_repeat1] = STATE(243), + [sym_word] = ACTIONS(214), + [anon_sym_LF] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(216), + [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(218), + [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(220), + [anon_sym_DOLLAR] = ACTIONS(222), + [sym__special_character] = ACTIONS(224), + [anon_sym_DQUOTE] = ACTIONS(226), + [sym_raw_string] = ACTIONS(214), + [sym_ansi_c_string] = ACTIONS(214), + [sym_number] = ACTIONS(214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), + [anon_sym_BQUOTE] = ACTIONS(230), + [anon_sym_LT_LPAREN] = ACTIONS(232), + [anon_sym_GT_LPAREN] = ACTIONS(232), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(234), + [sym_file_descriptor] = ACTIONS(178), + [sym__concat] = ACTIONS(236), + }, + [40] = { + [aux_sym__statements2] = STATE(38), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_elif_clause] = STATE(3477), + [sym_else_clause] = STATE(4241), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_if_statement_repeat1] = STATE(3477), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -18305,7 +18404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), - [anon_sym_fi] = ACTIONS(214), + [anon_sym_fi] = ACTIONS(238), [anon_sym_elif] = ACTIONS(186), [anon_sym_else] = ACTIONS(188), [anon_sym_case] = ACTIONS(79), @@ -18346,41 +18445,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [40] = { - [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), + [41] = { + [aux_sym__statements2] = STATE(44), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_elif_clause] = STATE(3471), + [sym_else_clause] = STATE(4123), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_if_statement_repeat1] = STATE(3471), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -18388,7 +18487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), - [anon_sym_fi] = ACTIONS(216), + [anon_sym_fi] = ACTIONS(240), [anon_sym_elif] = ACTIONS(186), [anon_sym_else] = ACTIONS(188), [anon_sym_case] = ACTIONS(79), @@ -18429,41 +18528,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [41] = { - [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), + [42] = { + [aux_sym__statements2] = STATE(62), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_elif_clause] = STATE(3492), + [sym_else_clause] = STATE(4065), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_if_statement_repeat1] = STATE(3492), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -18471,7 +18570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), - [anon_sym_fi] = ACTIONS(218), + [anon_sym_fi] = ACTIONS(242), [anon_sym_elif] = ACTIONS(186), [anon_sym_else] = ACTIONS(188), [anon_sym_case] = ACTIONS(79), @@ -18512,41 +18611,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [42] = { - [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), + [43] = { + [aux_sym__statements2] = STATE(42), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_elif_clause] = STATE(3476), + [sym_else_clause] = STATE(4134), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_if_statement_repeat1] = STATE(3476), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -18554,7 +18653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), - [anon_sym_fi] = ACTIONS(220), + [anon_sym_fi] = ACTIONS(244), [anon_sym_elif] = ACTIONS(186), [anon_sym_else] = ACTIONS(188), [anon_sym_case] = ACTIONS(79), @@ -18595,124 +18694,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [43] = { - [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_test_operator] = ACTIONS(242), - [sym_file_descriptor] = ACTIONS(178), - [sym__concat] = ACTIONS(244), - }, [44] = { - [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), + [aux_sym__statements2] = STATE(62), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_elif_clause] = STATE(3493), + [sym_else_clause] = STATE(4096), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_if_statement_repeat1] = STATE(3493), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -18762,38 +18778,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [45] = { - [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__statements] = STATE(3586), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -18806,19 +18822,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_SEMI_AMP] = ACTIONS(268), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -18827,55 +18843,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [46] = { - [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__statements] = STATE(3593), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -18884,23 +18900,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(256), [anon_sym_if] = ACTIONS(258), [anon_sym_case] = ACTIONS(260), - [anon_sym_esac] = ACTIONS(308), + [anon_sym_esac] = ACTIONS(306), [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_SEMI_SEMI] = ACTIONS(308), + [anon_sym_SEMI_AMP] = ACTIONS(310), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(312), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -18909,55 +18925,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [47] = { - [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__statements] = STATE(3628), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -18966,23 +18982,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(256), [anon_sym_if] = ACTIONS(258), [anon_sym_case] = ACTIONS(260), - [anon_sym_esac] = ACTIONS(316), + [anon_sym_esac] = ACTIONS(314), [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_SEMI_SEMI] = ACTIONS(316), + [anon_sym_SEMI_AMP] = ACTIONS(318), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(320), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -18991,55 +19007,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [48] = { - [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__statements] = STATE(3596), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19048,23 +19064,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(256), [anon_sym_if] = ACTIONS(258), [anon_sym_case] = ACTIONS(260), - [anon_sym_esac] = ACTIONS(324), + [anon_sym_esac] = ACTIONS(322), [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_SEMI_SEMI] = ACTIONS(326), - [anon_sym_SEMI_AMP] = ACTIONS(328), + [anon_sym_SEMI_SEMI] = ACTIONS(324), + [anon_sym_SEMI_AMP] = ACTIONS(326), [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -19073,55 +19089,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [49] = { - [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__statements] = STATE(3612), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19135,18 +19151,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -19155,55 +19171,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [50] = { - [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__statements] = STATE(3621), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19212,23 +19228,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(256), [anon_sym_if] = ACTIONS(258), [anon_sym_case] = ACTIONS(260), - [anon_sym_esac] = ACTIONS(338), + [anon_sym_esac] = ACTIONS(322), [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_SEMI_SEMI] = ACTIONS(340), - [anon_sym_SEMI_AMP] = ACTIONS(342), + [anon_sym_SEMI_SEMI] = ACTIONS(338), + [anon_sym_SEMI_AMP] = ACTIONS(340), [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -19237,55 +19253,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [51] = { - [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__statements] = STATE(3591), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19294,23 +19310,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(256), [anon_sym_if] = ACTIONS(258), [anon_sym_case] = ACTIONS(260), - [anon_sym_esac] = ACTIONS(316), + [anon_sym_esac] = ACTIONS(330), [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -19319,55 +19335,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [52] = { - [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__statements] = STATE(3605), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19376,23 +19392,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(256), [anon_sym_if] = ACTIONS(258), [anon_sym_case] = ACTIONS(260), - [anon_sym_esac] = ACTIONS(350), + [anon_sym_esac] = ACTIONS(306), [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_SEMI_SEMI] = ACTIONS(352), - [anon_sym_SEMI_AMP] = ACTIONS(354), + [anon_sym_SEMI_SEMI] = ACTIONS(350), + [anon_sym_SEMI_AMP] = ACTIONS(352), [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -19401,55 +19417,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [53] = { - [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__statements] = STATE(3584), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19463,18 +19479,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -19483,55 +19499,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [54] = { - [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__statements] = STATE(3613), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19540,23 +19556,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(256), [anon_sym_if] = ACTIONS(258), [anon_sym_case] = ACTIONS(260), - [anon_sym_esac] = ACTIONS(262), + [anon_sym_esac] = ACTIONS(362), [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_SEMI_SEMI] = ACTIONS(362), - [anon_sym_SEMI_AMP] = ACTIONS(364), + [anon_sym_SEMI_SEMI] = ACTIONS(364), + [anon_sym_SEMI_AMP] = ACTIONS(366), [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -19565,55 +19581,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [55] = { - [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__statements] = STATE(3610), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19622,23 +19638,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(256), [anon_sym_if] = ACTIONS(258), [anon_sym_case] = ACTIONS(260), - [anon_sym_esac] = ACTIONS(330), + [anon_sym_esac] = ACTIONS(368), [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_SEMI_SEMI] = ACTIONS(368), - [anon_sym_SEMI_AMP] = ACTIONS(370), + [anon_sym_SEMI_SEMI] = ACTIONS(370), + [anon_sym_SEMI_AMP] = ACTIONS(372), [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -19647,55 +19663,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [56] = { - [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__statements] = STATE(3589), + [sym_redirected_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_c_style_for_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_function_definition] = STATE(2320), + [sym_compound_statement] = STATE(2320), + [sym_subshell] = STATE(2320), + [sym_pipeline] = STATE(2320), + [sym_list] = STATE(2320), + [sym_negated_command] = STATE(2320), + [sym_test_command] = STATE(2320), + [sym_declaration_command] = STATE(2320), + [sym_unset_command] = STATE(2320), + [sym_command] = STATE(2320), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(196), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), [sym_word] = ACTIONS(248), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19704,23 +19720,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(256), [anon_sym_if] = ACTIONS(258), [anon_sym_case] = ACTIONS(260), - [anon_sym_esac] = ACTIONS(308), + [anon_sym_esac] = ACTIONS(314), [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -19729,55 +19745,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(304), + [sym_test_operator] = ACTIONS(302), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(304), }, [57] = { - [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__statements] = STATE(3702), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19788,13 +19804,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(346), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(348), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -19827,38 +19843,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [58] = { - [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__statements] = STATE(3748), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19869,13 +19885,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(326), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(328), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -19908,38 +19924,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [59] = { - [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__statements] = STATE(3664), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -19950,13 +19966,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(310), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(312), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -19989,38 +20005,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [60] = { - [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__statements] = STATE(3766), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -20031,13 +20047,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(360), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(360), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -20070,38 +20086,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [61] = { - [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__statements] = STATE(3741), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -20112,13 +20128,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(334), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(336), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -20151,38 +20167,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [62] = { - [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), + [aux_sym__statements2] = STATE(62), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), + [sym_word] = ACTIONS(420), + [anon_sym_for] = ACTIONS(423), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(429), + [anon_sym_while] = ACTIONS(432), + [anon_sym_until] = ACTIONS(432), + [anon_sym_done] = ACTIONS(435), + [anon_sym_if] = ACTIONS(437), + [anon_sym_fi] = ACTIONS(435), + [anon_sym_elif] = ACTIONS(435), + [anon_sym_else] = ACTIONS(435), + [anon_sym_case] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_LBRACK_LBRACK] = ACTIONS(458), + [anon_sym_declare] = ACTIONS(461), + [anon_sym_typeset] = ACTIONS(461), + [anon_sym_export] = ACTIONS(461), + [anon_sym_readonly] = ACTIONS(461), + [anon_sym_local] = ACTIONS(461), + [anon_sym_unset] = ACTIONS(464), + [anon_sym_unsetenv] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(470), + [anon_sym_LT_AMP] = ACTIONS(470), + [anon_sym_GT_AMP] = ACTIONS(470), + [anon_sym_GT_PIPE] = ACTIONS(470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(476), + [sym__special_character] = ACTIONS(479), + [anon_sym_DQUOTE] = ACTIONS(482), + [sym_raw_string] = ACTIONS(485), + [sym_ansi_c_string] = ACTIONS(485), + [sym_number] = ACTIONS(488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(494), + [anon_sym_LT_LPAREN] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(497), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(500), + [sym_file_descriptor] = ACTIONS(503), + [sym_variable_name] = ACTIONS(506), + }, + [63] = { + [sym__statements] = STATE(3711), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -20192,14 +20289,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = ACTIONS(509), + [anon_sym_SEMI_AMP] = ACTIONS(340), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(342), - [anon_sym_function] = ACTIONS(272), - [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -20231,120 +20328,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(410), }, - [63] = { - [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(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__statements] = STATE(3786), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -20355,13 +20371,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(372), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(372), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -20394,38 +20410,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [65] = { - [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__statements] = STATE(3699), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -20436,13 +20452,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(352), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(354), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -20475,38 +20491,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [66] = { - [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__statements] = STATE(3682), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -20517,13 +20533,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(318), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(320), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -20556,38 +20572,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [67] = { - [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__statements] = STATE(3658), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -20598,13 +20614,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(376), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(378), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -20637,38 +20653,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [68] = { - [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__statements] = STATE(3779), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -20679,13 +20695,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(366), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(366), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -20718,38 +20734,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [69] = { - [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__statements] = STATE(3787), + [sym_redirected_statement] = STATE(2336), + [sym_for_statement] = STATE(2336), + [sym_c_style_for_statement] = STATE(2336), + [sym_while_statement] = STATE(2336), + [sym_if_statement] = STATE(2336), + [sym_case_statement] = STATE(2336), + [sym_function_definition] = STATE(2336), + [sym_compound_statement] = STATE(2336), + [sym_subshell] = STATE(2336), + [sym_pipeline] = STATE(2336), + [sym_list] = STATE(2336), + [sym_negated_command] = STATE(2336), + [sym_test_command] = STATE(2336), + [sym_declaration_command] = STATE(2336), + [sym_unset_command] = STATE(2336), + [sym_command] = STATE(2336), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -20760,13 +20776,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(268), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(268), + [anon_sym_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -20799,37 +20815,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(410), }, [70] = { - [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), + [aux_sym__statements2] = STATE(62), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -20880,36 +20896,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [71] = { [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_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -20959,38 +20975,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [72] = { - [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__statements] = STATE(4245), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21038,38 +21054,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [73] = { - [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__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21117,38 +21133,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [74] = { - [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__statements] = STATE(4269), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21196,59 +21212,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [75] = { - [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__statements] = STATE(4084), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [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_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -21274,38 +21290,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [76] = { - [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__statements] = STATE(4194), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21314,19 +21330,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -21352,38 +21368,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [77] = { - [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__statements] = STATE(4105), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21392,19 +21408,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -21430,38 +21446,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [78] = { - [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), + [aux_sym__statements2] = STATE(163), + [sym_redirected_statement] = STATE(2471), + [sym_for_statement] = STATE(2471), + [sym_c_style_for_statement] = STATE(2471), + [sym_while_statement] = STATE(2471), + [sym_if_statement] = STATE(2471), + [sym_case_statement] = STATE(2471), + [sym_function_definition] = STATE(2471), + [sym_compound_statement] = STATE(2471), + [sym_subshell] = STATE(2471), + [sym_pipeline] = STATE(2471), + [sym_list] = STATE(2471), + [sym_negated_command] = STATE(2471), + [sym_test_command] = STATE(2471), + [sym_declaration_command] = STATE(2471), + [sym_unset_command] = STATE(2471), + [sym_command] = STATE(2471), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1278), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21473,6 +21488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(539), [anon_sym_BANG] = ACTIONS(192), [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LBRACK_LBRACK] = ACTIONS(91), @@ -21508,38 +21524,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [79] = { - [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), + [sym__statements] = STATE(4097), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2560), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21548,19 +21564,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(541), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -21586,38 +21602,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [80] = { - [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__statements] = STATE(4150), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2544), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21626,7 +21642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(543), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -21664,38 +21680,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [81] = { - [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__statements] = STATE(4111), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21742,38 +21758,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [82] = { - [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), + [sym__statements] = STATE(4138), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), + [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(533), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), + [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), + }, + [83] = { + [sym__statements] = STATE(4143), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21785,16 +21879,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -21819,39 +21913,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [83] = { - [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), + [84] = { + [sym__statements] = STATE(4265), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21860,7 +21954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -21897,39 +21991,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [84] = { - [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), + [85] = { + [aux_sym__statements2] = STATE(113), + [sym_redirected_statement] = STATE(2471), + [sym_for_statement] = STATE(2471), + [sym_c_style_for_statement] = STATE(2471), + [sym_while_statement] = STATE(2471), + [sym_if_statement] = STATE(2471), + [sym_case_statement] = STATE(2471), + [sym_function_definition] = STATE(2471), + [sym_compound_statement] = STATE(2471), + [sym_subshell] = STATE(2471), + [sym_pipeline] = STATE(2471), + [sym_list] = STATE(2471), + [sym_negated_command] = STATE(2471), + [sym_test_command] = STATE(2471), + [sym_declaration_command] = STATE(2471), + [sym_unset_command] = STATE(2471), + [sym_command] = STATE(2471), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1278), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -21941,6 +22034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(545), [anon_sym_BANG] = ACTIONS(192), [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LBRACK_LBRACK] = ACTIONS(91), @@ -21975,39 +22069,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [85] = { - [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), + [86] = { + [sym__statements] = STATE(4255), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2462), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), + [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(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), + }, + [87] = { + [sym__statements] = STATE(4227), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22019,16 +22191,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -22053,39 +22225,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [86] = { - [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), + [88] = { + [sym__statements] = STATE(4112), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22094,7 +22266,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), + [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), + }, + [89] = { + [sym__statements] = STATE(4252), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), + [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), @@ -22131,39 +22381,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [87] = { - [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), + [90] = { + [sym__statements] = STATE(4106), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2559), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22172,7 +22422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(549), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -22209,39 +22459,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [88] = { - [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), + [91] = { + [sym__statements] = STATE(4243), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22253,16 +22503,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -22287,39 +22537,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [89] = { - [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), + [92] = { + [sym__statements] = STATE(4269), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22328,7 +22578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -22365,39 +22615,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [90] = { - [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), + [93] = { + [sym__statements] = STATE(4117), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22443,39 +22693,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [91] = { - [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), + [94] = { + [sym__statements] = STATE(4272), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2451), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22484,19 +22734,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(551), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -22521,39 +22771,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [92] = { - [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), + [95] = { + [sym__statements] = STATE(4118), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22562,19 +22812,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -22599,39 +22849,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [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), + [96] = { + [sym__statements] = STATE(4211), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22643,16 +22893,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -22677,39 +22927,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [94] = { - [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), + [97] = { + [sym__statements] = STATE(4113), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2558), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22718,19 +22968,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(553), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -22755,195 +23005,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [95] = { - [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(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), - }, - [96] = { - [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(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), - }, - [97] = { - [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), + [98] = { + [sym__statements] = STATE(4127), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -22955,84 +23049,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), @@ -23068,37 +23084,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [99] = { - [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__statements] = STATE(4158), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23110,7 +23127,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -23146,38 +23162,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [100] = { - [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__statements] = STATE(4242), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23224,38 +23240,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [101] = { - [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__statements] = STATE(4128), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23267,16 +23283,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -23302,38 +23318,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [102] = { - [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__statements] = STATE(4121), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2557), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23342,7 +23358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(555), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -23380,37 +23396,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [103] = { - [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__statements] = STATE(4141), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23422,7 +23439,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -23458,38 +23474,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [104] = { - [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__statements] = STATE(4236), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2469), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23498,7 +23514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(557), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -23536,59 +23552,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [105] = { - [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__statements] = STATE(4056), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [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_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -23614,38 +23630,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [106] = { - [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__statements] = STATE(4232), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23654,19 +23670,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -23692,38 +23708,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [107] = { - [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), + [sym__statements] = STATE(4280), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23735,16 +23751,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -23770,38 +23786,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [108] = { - [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__statements] = STATE(4245), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23848,38 +23864,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [109] = { - [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), + [sym__statements] = STATE(4231), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23891,16 +23907,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -23926,38 +23942,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [110] = { - [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__statements] = STATE(4129), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2555), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -23966,7 +23982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(559), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -24004,38 +24020,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [111] = { - [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), + [aux_sym__statements2] = STATE(78), + [sym_redirected_statement] = STATE(2471), + [sym_for_statement] = STATE(2471), + [sym_c_style_for_statement] = STATE(2471), + [sym_while_statement] = STATE(2471), + [sym_if_statement] = STATE(2471), + [sym_case_statement] = STATE(2471), + [sym_function_definition] = STATE(2471), + [sym_compound_statement] = STATE(2471), + [sym_subshell] = STATE(2471), + [sym_pipeline] = STATE(2471), + [sym_list] = STATE(2471), + [sym_negated_command] = STATE(2471), + [sym_test_command] = STATE(2471), + [sym_declaration_command] = STATE(2471), + [sym_unset_command] = STATE(2471), + [sym_command] = STATE(2471), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1278), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24047,6 +24062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(561), [anon_sym_BANG] = ACTIONS(192), [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LBRACK_LBRACK] = ACTIONS(91), @@ -24082,38 +24098,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [112] = { - [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__statements] = STATE(4155), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24160,38 +24176,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [113] = { - [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), + [aux_sym__statements2] = STATE(163), + [sym_redirected_statement] = STATE(2471), + [sym_for_statement] = STATE(2471), + [sym_c_style_for_statement] = STATE(2471), + [sym_while_statement] = STATE(2471), + [sym_if_statement] = STATE(2471), + [sym_case_statement] = STATE(2471), + [sym_function_definition] = STATE(2471), + [sym_compound_statement] = STATE(2471), + [sym_subshell] = STATE(2471), + [sym_pipeline] = STATE(2471), + [sym_list] = STATE(2471), + [sym_negated_command] = STATE(2471), + [sym_test_command] = STATE(2471), + [sym_declaration_command] = STATE(2471), + [sym_unset_command] = STATE(2471), + [sym_command] = STATE(2471), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1278), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24203,16 +24218,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [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(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_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), @@ -24238,38 +24254,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [114] = { - [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__statements] = STATE(4086), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2550), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24278,7 +24294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(565), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -24316,38 +24332,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [115] = { - [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__statements] = STATE(4078), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2543), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24356,7 +24372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LPAREN] = ACTIONS(567), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -24394,38 +24410,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [116] = { - [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__statements] = STATE(4083), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24437,16 +24453,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -24472,38 +24488,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [117] = { - [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__statements] = STATE(4085), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24550,116 +24566,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(119), }, [118] = { - [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(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), - }, - [119] = { - [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__statements] = STATE(4095), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24671,16 +24609,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -24705,39 +24643,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [120] = { + [119] = { [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_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2554), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24746,7 +24684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -24783,39 +24721,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [121] = { - [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), + [120] = { + [sym__statements] = STATE(4228), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2470), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24824,85 +24762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [122] = { - [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_LPAREN] = ACTIONS(571), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -24939,39 +24799,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [123] = { - [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), + [121] = { + [sym__statements] = STATE(4133), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -24983,16 +24843,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -25017,39 +24877,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [124] = { - [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), + [122] = { + [aux_sym__statements2] = STATE(62), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25057,6 +24916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(573), [anon_sym_case] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), @@ -25095,39 +24955,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [125] = { - [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), + [123] = { + [sym__statements] = STATE(4135), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25139,84 +24999,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [126] = { - [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), @@ -25251,38 +25033,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [127] = { - [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), + [124] = { + [sym__statements] = STATE(4281), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25290,21 +25073,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -25329,39 +25111,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [128] = { - [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), + [125] = { + [sym__statements] = STATE(4153), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2541), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25370,7 +25152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(575), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -25407,39 +25189,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [129] = { - [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), + [126] = { + [sym__statements] = STATE(4203), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25451,16 +25233,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -25485,39 +25267,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [130] = { - [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), + [127] = { + [sym__statements] = STATE(4156), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25526,19 +25308,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -25563,39 +25345,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [131] = { - [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), + [128] = { + [sym__statements] = STATE(4154), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25604,7 +25386,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), + [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), + }, + [129] = { + [sym__statements] = STATE(4144), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2548), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), + [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), @@ -25641,39 +25501,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [132] = { - [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), + [130] = { + [sym__statements] = STATE(4226), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25719,39 +25579,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [133] = { - [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), + [131] = { + [sym__statements] = STATE(4172), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25763,16 +25623,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -25797,39 +25657,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [134] = { - [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), + [132] = { + [sym__statements] = STATE(4174), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25841,16 +25701,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -25875,39 +25735,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [135] = { - [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), + [133] = { + [sym__statements] = STATE(4159), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25919,16 +25779,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -25953,39 +25813,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [136] = { - [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), + [134] = { + [sym__statements] = STATE(4160), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2536), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -25994,7 +25854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(579), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -26031,39 +25891,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [137] = { - [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), + [135] = { + [sym__statements] = STATE(4151), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26075,16 +25935,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -26109,39 +25969,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [138] = { - [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), + [136] = { + [sym__statements] = STATE(4166), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2515), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26150,7 +26010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(581), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -26187,39 +26047,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [139] = { - [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), + [137] = { + [sym__statements] = STATE(4168), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26231,16 +26091,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -26265,39 +26125,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [140] = { - [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), + [138] = { + [sym__statements] = STATE(4169), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26343,60 +26203,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [141] = { - [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), + [139] = { + [aux_sym__statements2] = STATE(62), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [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(583), [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_BANG] = ACTIONS(192), [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_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), @@ -26421,39 +26281,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [142] = { - [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), + [140] = { + [sym__statements] = STATE(4217), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2475), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26462,7 +26322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(585), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -26499,39 +26359,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [143] = { - [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), + [141] = { + [sym__statements] = STATE(4182), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26540,7 +26400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -26577,39 +26437,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [144] = { - [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), + [142] = { + [sym__statements] = STATE(4183), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26621,16 +26481,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -26655,39 +26515,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [145] = { - [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), + [143] = { + [sym__statements] = STATE(4184), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2488), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26699,16 +26559,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -26733,39 +26593,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [146] = { - [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), + [144] = { + [sym__statements] = STATE(4178), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), [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_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26774,7 +26634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(587), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -26811,39 +26671,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [147] = { - [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), + [145] = { + [sym__statements] = STATE(4179), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26855,16 +26715,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -26889,39 +26749,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [148] = { - [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), + [146] = { + [sym__statements] = STATE(4175), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2498), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -26930,7 +26790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(589), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -26967,45 +26827,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [149] = { - [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), + [147] = { + [sym__statements] = STATE(4181), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [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), @@ -27045,39 +26905,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [150] = { - [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), + [148] = { + [sym__statements] = STATE(4244), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2466), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -27086,85 +26946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [151] = { - [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_LPAREN] = ACTIONS(591), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -27201,39 +26983,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [152] = { - [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), + [149] = { + [sym__statements] = STATE(4190), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2486), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -27242,7 +27024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(593), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -27279,39 +27061,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [153] = { - [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), + [150] = { + [sym__statements] = STATE(4104), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -27320,7 +27102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -27357,45 +27139,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [154] = { - [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), + [151] = { + [aux_sym__statements2] = STATE(186), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [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), @@ -27435,39 +27217,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [155] = { - [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), + [152] = { + [sym__statements] = STATE(4215), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -27479,16 +27261,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -27513,39 +27295,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [156] = { - [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), + [153] = { + [sym__statements] = STATE(4188), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -27554,7 +27336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -27591,117 +27373,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [154] = { + [aux_sym__statements2] = STATE(158), + [sym_redirected_statement] = STATE(2471), + [sym_for_statement] = STATE(2471), + [sym_c_style_for_statement] = STATE(2471), + [sym_while_statement] = STATE(2471), + [sym_if_statement] = STATE(2471), + [sym_case_statement] = STATE(2471), + [sym_function_definition] = STATE(2471), + [sym_compound_statement] = STATE(2471), + [sym_subshell] = STATE(2471), + [sym_pipeline] = STATE(2471), + [sym_list] = STATE(2471), + [sym_negated_command] = STATE(2471), + [sym_test_command] = STATE(2471), + [sym_declaration_command] = STATE(2471), + [sym_unset_command] = STATE(2471), + [sym_command] = STATE(2471), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1278), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -27713,6 +27416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(597), [anon_sym_BANG] = ACTIONS(192), [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LBRACK_LBRACK] = ACTIONS(91), @@ -27747,60 +27451,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [155] = { + [sym__statements] = STATE(4189), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [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_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -27825,38 +27529,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [156] = { + [sym__statements] = STATE(4196), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -27868,7 +27573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27903,117 +27607,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [157] = { + [sym__statements] = STATE(4191), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2487), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28022,7 +27648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(599), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -28059,39 +27685,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [158] = { + [aux_sym__statements2] = STATE(163), + [sym_redirected_statement] = STATE(2471), + [sym_for_statement] = STATE(2471), + [sym_c_style_for_statement] = STATE(2471), + [sym_while_statement] = STATE(2471), + [sym_if_statement] = STATE(2471), + [sym_case_statement] = STATE(2471), + [sym_function_definition] = STATE(2471), + [sym_compound_statement] = STATE(2471), + [sym_subshell] = STATE(2471), + [sym_pipeline] = STATE(2471), + [sym_list] = STATE(2471), + [sym_negated_command] = STATE(2471), + [sym_test_command] = STATE(2471), + [sym_declaration_command] = STATE(2471), + [sym_unset_command] = STATE(2471), + [sym_command] = STATE(2471), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1278), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28103,16 +27728,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -28137,45 +27763,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [159] = { + [aux_sym__statements2] = STATE(172), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [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), @@ -28215,38 +27841,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [160] = { + [sym__statements] = STATE(4270), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2446), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28255,10 +27882,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(605), [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), @@ -28293,39 +27919,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [161] = { + [sym__statements] = STATE(4199), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28371,39 +27997,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [162] = { + [sym__statements] = STATE(4200), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28415,16 +28041,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -28449,39 +28075,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [163] = { + [aux_sym__statements2] = STATE(163), + [sym_redirected_statement] = STATE(2471), + [sym_for_statement] = STATE(2471), + [sym_c_style_for_statement] = STATE(2471), + [sym_while_statement] = STATE(2471), + [sym_if_statement] = STATE(2471), + [sym_case_statement] = STATE(2471), + [sym_function_definition] = STATE(2471), + [sym_compound_statement] = STATE(2471), + [sym_subshell] = STATE(2471), + [sym_pipeline] = STATE(2471), + [sym_list] = STATE(2471), + [sym_negated_command] = STATE(2471), + [sym_test_command] = STATE(2471), + [sym_declaration_command] = STATE(2471), + [sym_unset_command] = STATE(2471), + [sym_command] = STATE(2471), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1278), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), + [sym_word] = ACTIONS(420), + [anon_sym_for] = ACTIONS(423), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(429), + [anon_sym_while] = ACTIONS(432), + [anon_sym_until] = ACTIONS(432), + [anon_sym_if] = ACTIONS(437), + [anon_sym_case] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_LBRACK_LBRACK] = ACTIONS(458), + [anon_sym_declare] = ACTIONS(461), + [anon_sym_typeset] = ACTIONS(461), + [anon_sym_export] = ACTIONS(461), + [anon_sym_readonly] = ACTIONS(461), + [anon_sym_local] = ACTIONS(461), + [anon_sym_unset] = ACTIONS(464), + [anon_sym_unsetenv] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(470), + [anon_sym_LT_AMP] = ACTIONS(470), + [anon_sym_GT_AMP] = ACTIONS(470), + [anon_sym_GT_PIPE] = ACTIONS(470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(476), + [sym__special_character] = ACTIONS(479), + [anon_sym_DQUOTE] = ACTIONS(482), + [sym_raw_string] = ACTIONS(485), + [sym_ansi_c_string] = ACTIONS(485), + [sym_number] = ACTIONS(488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(494), + [anon_sym_LT_LPAREN] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(497), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(500), + [sym_file_descriptor] = ACTIONS(503), + [sym_variable_name] = ACTIONS(506), + }, + [164] = { + [sym__statements] = STATE(4209), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2476), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28490,7 +28194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(609), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -28527,39 +28231,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [165] = { + [sym__statements] = STATE(4219), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28571,16 +28275,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -28605,39 +28309,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [166] = { + [sym__statements] = STATE(4223), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28683,39 +28387,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [167] = { + [sym__statements] = STATE(4266), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28727,16 +28431,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -28761,39 +28465,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [168] = { + [sym__statements] = STATE(4214), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28802,7 +28506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -28839,39 +28543,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [169] = { + [sym__statements] = STATE(4240), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2468), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28880,7 +28584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(611), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -28917,39 +28621,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [170] = { + [sym__statements] = STATE(4247), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -28961,16 +28665,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -28995,39 +28699,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [171] = { + [sym__statements] = STATE(4248), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29036,7 +28740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -29073,45 +28777,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [172] = { + [aux_sym__statements2] = STATE(62), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [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(613), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(190), @@ -29151,39 +28855,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [173] = { + [sym__statements] = STATE(4282), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2441), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29192,19 +28896,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(615), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -29229,39 +28933,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [174] = { + [sym__statements] = STATE(4256), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2460), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29270,7 +28974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(617), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -29307,60 +29011,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [175] = { + [sym__statements] = STATE(4259), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [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_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -29385,38 +29089,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [176] = { + [sym__statements] = STATE(4261), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29428,7 +29133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -29463,39 +29167,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [177] = { + [sym__statements] = STATE(4221), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29541,39 +29245,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [178] = { + [sym__statements] = STATE(4268), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2447), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29582,19 +29286,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(619), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -29619,39 +29323,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [179] = { + [sym__statements] = STATE(4202), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2481), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29660,7 +29364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(621), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -29697,39 +29401,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [180] = { + [sym__statements] = STATE(4271), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29741,16 +29445,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -29775,39 +29479,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [181] = { + [sym__statements] = STATE(4274), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29853,39 +29557,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [182] = { + [sym__statements] = STATE(4222), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29894,19 +29598,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -29931,38 +29635,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [183] = { + [sym__statements] = STATE(4206), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -29974,7 +29679,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30009,38 +29713,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [184] = { + [sym__statements] = STATE(4207), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), + [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(533), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), + [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(4208), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2479), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -30048,9 +29831,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN] = ACTIONS(623), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -30087,45 +29869,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [186] = { + [aux_sym__statements2] = STATE(62), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [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(625), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(190), @@ -30165,48 +29947,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [187] = { + [sym__statements] = STATE(4234), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2478), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [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_LPAREN] = ACTIONS(627), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), [anon_sym_BANG] = ACTIONS(192), @@ -30243,39 +30025,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [188] = { + [sym__statements] = STATE(4290), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(2442), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), [aux_sym__statements_repeat1] = STATE(194), - [aux_sym_command_repeat1] = STATE(1899), - [aux_sym__literal_repeat1] = STATE(1886), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -30284,19 +30066,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), [anon_sym_case] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(629), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -30321,39 +30103,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [189] = { + [sym__statements] = STATE(4289), + [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(395), + [sym_variable_assignment] = STATE(1203), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(201), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -30365,16 +30147,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -30399,38 +30181,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [190] = { + [sym__statements] = STATE(4288), + [sym_redirected_statement] = STATE(2429), + [sym_for_statement] = STATE(2429), + [sym_c_style_for_statement] = STATE(2429), + [sym_while_statement] = STATE(2429), + [sym_if_statement] = STATE(2429), + [sym_case_statement] = STATE(2429), + [sym_function_definition] = STATE(2429), + [sym_compound_statement] = STATE(2429), + [sym_subshell] = STATE(2429), + [sym_pipeline] = STATE(2429), + [sym_list] = STATE(2429), + [sym_negated_command] = STATE(2429), + [sym_test_command] = STATE(2429), + [sym_declaration_command] = STATE(2429), + [sym_unset_command] = STATE(2429), + [sym_command] = STATE(2429), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(505), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -30476,59 +30259,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [191] = { + [aux_sym__statements2] = STATE(139), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [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(631), [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_BANG] = ACTIONS(192), [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_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), @@ -30553,115 +30337,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [192] = { + [aux_sym__statements2] = STATE(122), + [sym_redirected_statement] = STATE(2542), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_compound_statement] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -30669,6 +30376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_until] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(633), [anon_sym_case] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), @@ -30707,115 +30415,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [193] = { + [sym__terminated_statement] = STATE(4077), + [sym_redirected_statement] = STATE(2461), + [sym_for_statement] = STATE(2461), + [sym_c_style_for_statement] = STATE(2461), + [sym_while_statement] = STATE(2461), + [sym_if_statement] = STATE(2461), + [sym_case_statement] = STATE(2461), + [sym_function_definition] = STATE(2461), + [sym_compound_statement] = STATE(2461), + [sym_subshell] = STATE(2461), + [sym_pipeline] = STATE(2461), + [sym_list] = STATE(2461), + [sym_negated_command] = STATE(2461), + [sym_test_command] = STATE(2461), + [sym_declaration_command] = STATE(2461), + [sym_unset_command] = STATE(2461), + [sym_command] = STATE(2461), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1252), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -30861,59 +30492,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_while] = ACTIONS(15), - [anon_sym_until] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_function] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(33), - [anon_sym_typeset] = ACTIONS(33), - [anon_sym_export] = ACTIONS(33), - [anon_sym_readonly] = ACTIONS(33), - [anon_sym_local] = ACTIONS(33), - [anon_sym_unset] = ACTIONS(35), - [anon_sym_unsetenv] = ACTIONS(35), + [194] = { + [sym_redirected_statement] = STATE(2394), + [sym_for_statement] = STATE(2394), + [sym_c_style_for_statement] = STATE(2394), + [sym_while_statement] = STATE(2394), + [sym_if_statement] = STATE(2394), + [sym_case_statement] = STATE(2394), + [sym_function_definition] = STATE(2394), + [sym_compound_statement] = STATE(2394), + [sym_subshell] = STATE(2394), + [sym_pipeline] = STATE(2394), + [sym_list] = STATE(2394), + [sym_negated_command] = STATE(2394), + [sym_test_command] = STATE(2394), + [sym_declaration_command] = STATE(2394), + [sym_unset_command] = STATE(2394), + [sym_command] = STATE(2394), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(653), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(205), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), + [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), @@ -30922,54 +30553,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(61), + [sym_test_operator] = ACTIONS(212), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(65), + [sym_variable_name] = ACTIONS(119), }, - [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), + [195] = { + [sym__terminated_statement] = STATE(4066), + [sym_redirected_statement] = STATE(2461), + [sym_for_statement] = STATE(2461), + [sym_c_style_for_statement] = STATE(2461), + [sym_while_statement] = STATE(2461), + [sym_if_statement] = STATE(2461), + [sym_case_statement] = STATE(2461), + [sym_function_definition] = STATE(2461), + [sym_compound_statement] = STATE(2461), + [sym_subshell] = STATE(2461), + [sym_pipeline] = STATE(2461), + [sym_list] = STATE(2461), + [sym_negated_command] = STATE(2461), + [sym_test_command] = STATE(2461), + [sym_declaration_command] = STATE(2461), + [sym_unset_command] = STATE(2461), + [sym_command] = STATE(2461), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1252), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -31015,38 +30646,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [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), + [196] = { + [sym_redirected_statement] = STATE(2307), + [sym_for_statement] = STATE(2307), + [sym_c_style_for_statement] = STATE(2307), + [sym_while_statement] = STATE(2307), + [sym_if_statement] = STATE(2307), + [sym_case_statement] = STATE(2307), + [sym_function_definition] = STATE(2307), + [sym_compound_statement] = STATE(2307), + [sym_subshell] = STATE(2307), + [sym_pipeline] = STATE(2307), + [sym_list] = STATE(2307), + [sym_negated_command] = STATE(2307), + [sym_test_command] = STATE(2307), + [sym_declaration_command] = STATE(2307), + [sym_unset_command] = STATE(2307), + [sym_command] = STATE(2307), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(447), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym__statements_repeat1] = STATE(205), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), + [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(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [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(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(302), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(304), + }, + [197] = { + [sym__terminated_statement] = STATE(3970), + [sym_redirected_statement] = STATE(2461), + [sym_for_statement] = STATE(2461), + [sym_c_style_for_statement] = STATE(2461), + [sym_while_statement] = STATE(2461), + [sym_if_statement] = STATE(2461), + [sym_case_statement] = STATE(2461), + [sym_function_definition] = STATE(2461), + [sym_compound_statement] = STATE(2461), + [sym_subshell] = STATE(2461), + [sym_pipeline] = STATE(2461), + [sym_list] = STATE(2461), + [sym_negated_command] = STATE(2461), + [sym_test_command] = STATE(2461), + [sym_declaration_command] = STATE(2461), + [sym_unset_command] = STATE(2461), + [sym_command] = STATE(2461), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1252), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -31092,39 +30800,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [198] = { + [sym_redirected_statement] = STATE(2374), + [sym_for_statement] = STATE(2374), + [sym_c_style_for_statement] = STATE(2374), + [sym_while_statement] = STATE(2374), + [sym_if_statement] = STATE(2374), + [sym_case_statement] = STATE(2374), + [sym_function_definition] = STATE(2374), + [sym_compound_statement] = STATE(2374), + [sym_subshell] = STATE(2374), + [sym_pipeline] = STATE(2374), + [sym_list] = STATE(2374), + [sym_negated_command] = STATE(2374), + [sym_test_command] = STATE(2374), + [sym_declaration_command] = STATE(2374), + [sym_unset_command] = STATE(2374), + [sym_command] = STATE(2374), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(462), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym__statements_repeat1] = STATE(205), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), + [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), [anon_sym_LPAREN_LPAREN] = ACTIONS(254), @@ -31133,18 +30841,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [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), @@ -31153,54 +30861,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(304), + [sym_test_operator] = ACTIONS(408), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(410), }, - [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), + [199] = { + [sym_redirected_statement] = STATE(2399), + [sym_for_statement] = STATE(2399), + [sym_c_style_for_statement] = STATE(2399), + [sym_while_statement] = STATE(2399), + [sym_if_statement] = STATE(2399), + [sym_case_statement] = STATE(2399), + [sym_function_definition] = STATE(2399), + [sym_compound_statement] = STATE(2399), + [sym_subshell] = STATE(2399), + [sym_pipeline] = STATE(2399), + [sym_list] = STATE(2399), + [sym_negated_command] = STATE(2399), + [sym_test_command] = STATE(2399), + [sym_declaration_command] = STATE(2399), + [sym_unset_command] = STATE(2399), + [sym_command] = STATE(2399), + [sym_command_name] = STATE(374), + [sym_variable_assignment] = STATE(613), + [sym_subscript] = STATE(3966), + [sym_file_redirect] = STATE(1654), + [sym_arithmetic_expansion] = STATE(1403), + [sym_concatenation] = STATE(1975), + [sym_string] = STATE(1403), + [sym_translated_string] = STATE(1403), + [sym_simple_expansion] = STATE(1403), + [sym_expansion] = STATE(1403), + [sym_command_substitution] = STATE(1403), + [sym_process_substitution] = STATE(1403), + [aux_sym__statements_repeat1] = STATE(205), + [aux_sym_command_repeat1] = STATE(1654), + [aux_sym__literal_repeat1] = STATE(1667), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_until] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_function] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), + [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(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), + }, + [200] = { + [sym__terminated_statement] = STATE(3943), + [sym_redirected_statement] = STATE(2461), + [sym_for_statement] = STATE(2461), + [sym_c_style_for_statement] = STATE(2461), + [sym_while_statement] = STATE(2461), + [sym_if_statement] = STATE(2461), + [sym_case_statement] = STATE(2461), + [sym_function_definition] = STATE(2461), + [sym_compound_statement] = STATE(2461), + [sym_subshell] = STATE(2461), + [sym_pipeline] = STATE(2461), + [sym_list] = STATE(2461), + [sym_negated_command] = STATE(2461), + [sym_test_command] = STATE(2461), + [sym_declaration_command] = STATE(2461), + [sym_unset_command] = STATE(2461), + [sym_command] = STATE(2461), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1252), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -31246,38 +31031,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [201] = { + [sym_redirected_statement] = STATE(2412), + [sym_for_statement] = STATE(2412), + [sym_c_style_for_statement] = STATE(2412), + [sym_while_statement] = STATE(2412), + [sym_if_statement] = STATE(2412), + [sym_case_statement] = STATE(2412), + [sym_function_definition] = STATE(2412), + [sym_compound_statement] = STATE(2412), + [sym_subshell] = STATE(2412), + [sym_pipeline] = STATE(2412), + [sym_list] = STATE(2412), + [sym_negated_command] = STATE(2412), + [sym_test_command] = STATE(2412), + [sym_declaration_command] = STATE(2412), + [sym_unset_command] = STATE(2412), + [sym_command] = STATE(2412), + [sym_command_name] = STATE(395), + [sym_variable_assignment] = STATE(1089), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(205), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -31289,16 +31074,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -31323,38 +31108,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [202] = { + [sym__terminated_statement] = STATE(4068), + [sym_redirected_statement] = STATE(2461), + [sym_for_statement] = STATE(2461), + [sym_c_style_for_statement] = STATE(2461), + [sym_while_statement] = STATE(2461), + [sym_if_statement] = STATE(2461), + [sym_case_statement] = STATE(2461), + [sym_function_definition] = STATE(2461), + [sym_compound_statement] = STATE(2461), + [sym_subshell] = STATE(2461), + [sym_pipeline] = STATE(2461), + [sym_list] = STATE(2461), + [sym_negated_command] = STATE(2461), + [sym_test_command] = STATE(2461), + [sym_declaration_command] = STATE(2461), + [sym_unset_command] = STATE(2461), + [sym_command] = STATE(2461), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1252), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -31400,265 +31185,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_while] = ACTIONS(15), - [anon_sym_until] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_function] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(33), - [anon_sym_typeset] = ACTIONS(33), - [anon_sym_export] = ACTIONS(33), - [anon_sym_readonly] = ACTIONS(33), - [anon_sym_local] = ACTIONS(33), - [anon_sym_unset] = ACTIONS(35), - [anon_sym_unsetenv] = ACTIONS(35), - [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(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), - }, - [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), + [203] = { + [sym__terminated_statement] = STATE(4257), + [sym_redirected_statement] = STATE(2461), + [sym_for_statement] = STATE(2461), + [sym_c_style_for_statement] = STATE(2461), + [sym_while_statement] = STATE(2461), + [sym_if_statement] = STATE(2461), + [sym_case_statement] = STATE(2461), + [sym_function_definition] = STATE(2461), + [sym_compound_statement] = STATE(2461), + [sym_subshell] = STATE(2461), + [sym_pipeline] = STATE(2461), + [sym_list] = STATE(2461), + [sym_negated_command] = STATE(2461), + [sym_test_command] = STATE(2461), + [sym_declaration_command] = STATE(2461), + [sym_unset_command] = STATE(2461), + [sym_command] = STATE(2461), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1252), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -31704,37 +31262,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [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), + [204] = { + [sym__terminated_statement] = STATE(3948), + [sym_redirected_statement] = STATE(2461), + [sym_for_statement] = STATE(2461), + [sym_c_style_for_statement] = STATE(2461), + [sym_while_statement] = STATE(2461), + [sym_if_statement] = STATE(2461), + [sym_case_statement] = STATE(2461), + [sym_function_definition] = STATE(2461), + [sym_compound_statement] = STATE(2461), + [sym_subshell] = STATE(2461), + [sym_pipeline] = STATE(2461), + [sym_list] = STATE(2461), + [sym_negated_command] = STATE(2461), + [sym_test_command] = STATE(2461), + [sym_declaration_command] = STATE(2461), + [sym_unset_command] = STATE(2461), + [sym_command] = STATE(2461), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1252), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -31746,16 +31305,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(192), [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_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), @@ -31780,37 +31339,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [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), + [205] = { + [sym_redirected_statement] = STATE(2500), + [sym_for_statement] = STATE(2500), + [sym_c_style_for_statement] = STATE(2500), + [sym_while_statement] = STATE(2500), + [sym_if_statement] = STATE(2500), + [sym_case_statement] = STATE(2500), + [sym_function_definition] = STATE(2500), + [sym_compound_statement] = STATE(2500), + [sym_subshell] = STATE(2500), + [sym_pipeline] = STATE(2500), + [sym_list] = STATE(2500), + [sym_negated_command] = STATE(2500), + [sym_test_command] = STATE(2500), + [sym_declaration_command] = STATE(2500), + [sym_unset_command] = STATE(2500), + [sym_command] = STATE(2500), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(1544), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym__statements_repeat1] = STATE(205), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), + [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), + }, + [206] = { + [sym_redirected_statement] = STATE(2333), + [sym_for_statement] = STATE(2333), + [sym_c_style_for_statement] = STATE(2333), + [sym_while_statement] = STATE(2333), + [sym_if_statement] = STATE(2333), + [sym_case_statement] = STATE(2333), + [sym_function_definition] = STATE(2333), + [sym_compound_statement] = STATE(2333), + [sym_subshell] = STATE(2333), + [sym_pipeline] = STATE(2333), + [sym_list] = STATE(2333), + [sym_negated_command] = STATE(2333), + [sym_test_command] = STATE(2333), + [sym_declaration_command] = STATE(2333), + [sym_unset_command] = STATE(2333), + [sym_command] = STATE(2333), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(463), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), + [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(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [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(2368), + [sym_for_statement] = STATE(2368), + [sym_c_style_for_statement] = STATE(2368), + [sym_while_statement] = STATE(2368), + [sym_if_statement] = STATE(2368), + [sym_case_statement] = STATE(2368), + [sym_function_definition] = STATE(2368), + [sym_compound_statement] = STATE(2368), + [sym_subshell] = STATE(2368), + [sym_pipeline] = STATE(2368), + [sym_list] = STATE(2368), + [sym_negated_command] = STATE(2368), + [sym_test_command] = STATE(2368), + [sym_declaration_command] = STATE(2368), + [sym_unset_command] = STATE(2368), + [sym_command] = STATE(2368), + [sym_command_name] = STATE(395), + [sym_variable_assignment] = STATE(1034), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -31822,16 +31534,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(190), [anon_sym_function] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(533), [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_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -31856,37 +31568,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, - [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), + [208] = { + [sym_redirected_statement] = STATE(2402), + [sym_for_statement] = STATE(2402), + [sym_c_style_for_statement] = STATE(2402), + [sym_while_statement] = STATE(2402), + [sym_if_statement] = STATE(2402), + [sym_case_statement] = STATE(2402), + [sym_function_definition] = STATE(2402), + [sym_compound_statement] = STATE(2402), + [sym_subshell] = STATE(2402), + [sym_pipeline] = STATE(2402), + [sym_list] = STATE(2402), + [sym_negated_command] = STATE(2402), + [sym_test_command] = STATE(2402), + [sym_declaration_command] = STATE(2402), + [sym_unset_command] = STATE(2402), + [sym_command] = STATE(2402), + [sym_command_name] = STATE(374), + [sym_variable_assignment] = STATE(550), + [sym_subscript] = STATE(3966), + [sym_file_redirect] = STATE(1654), + [sym_arithmetic_expansion] = STATE(1403), + [sym_concatenation] = STATE(1975), + [sym_string] = STATE(1403), + [sym_translated_string] = STATE(1403), + [sym_simple_expansion] = STATE(1403), + [sym_expansion] = STATE(1403), + [sym_command_substitution] = STATE(1403), + [sym_process_substitution] = STATE(1403), + [aux_sym_command_repeat1] = STATE(1654), + [aux_sym__literal_repeat1] = STATE(1667), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -31932,58 +31644,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(65), }, - [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), + [209] = { + [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(374), + [sym_variable_assignment] = STATE(548), + [sym_subscript] = STATE(3966), + [sym_file_redirect] = STATE(1654), + [sym_arithmetic_expansion] = STATE(1403), + [sym_concatenation] = STATE(1975), + [sym_string] = STATE(1403), + [sym_translated_string] = STATE(1403), + [sym_simple_expansion] = STATE(1403), + [sym_expansion] = STATE(1403), + [sym_command_substitution] = STATE(1403), + [sym_process_substitution] = STATE(1403), + [aux_sym_command_repeat1] = STATE(1654), + [aux_sym__literal_repeat1] = STATE(1667), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_until] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_function] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), [anon_sym_GT_GT] = ACTIONS(39), @@ -31992,53 +31704,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(304), + [sym_test_operator] = ACTIONS(61), [sym_file_descriptor] = ACTIONS(63), - [sym_variable_name] = ACTIONS(306), + [sym_variable_name] = ACTIONS(65), }, - [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), + [210] = { + [sym_redirected_statement] = STATE(2344), + [sym_for_statement] = STATE(2344), + [sym_c_style_for_statement] = STATE(2344), + [sym_while_statement] = STATE(2344), + [sym_if_statement] = STATE(2344), + [sym_case_statement] = STATE(2344), + [sym_function_definition] = STATE(2344), + [sym_compound_statement] = STATE(2344), + [sym_subshell] = STATE(2344), + [sym_pipeline] = STATE(2344), + [sym_list] = STATE(2344), + [sym_negated_command] = STATE(2344), + [sym_test_command] = STATE(2344), + [sym_declaration_command] = STATE(2344), + [sym_unset_command] = STATE(2344), + [sym_command] = STATE(2344), + [sym_command_name] = STATE(354), + [sym_variable_assignment] = STATE(464), + [sym_subscript] = STATE(3957), + [sym_file_redirect] = STATE(1788), + [sym_arithmetic_expansion] = STATE(919), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(919), + [sym_translated_string] = STATE(919), + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [sym_command_substitution] = STATE(919), + [sym_process_substitution] = STATE(919), + [aux_sym_command_repeat1] = STATE(1788), + [aux_sym__literal_repeat1] = STATE(987), [sym_word] = ACTIONS(380), [anon_sym_for] = ACTIONS(250), [anon_sym_select] = ACTIONS(252), @@ -32048,11 +31760,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_function] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(272), [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym_declare] = ACTIONS(386), [anon_sym_typeset] = ACTIONS(386), [anon_sym_export] = ACTIONS(386), @@ -32084,37 +31796,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(410), }, - [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), + [211] = { + [sym_redirected_statement] = STATE(2380), + [sym_for_statement] = STATE(2380), + [sym_c_style_for_statement] = STATE(2380), + [sym_while_statement] = STATE(2380), + [sym_if_statement] = STATE(2380), + [sym_case_statement] = STATE(2380), + [sym_function_definition] = STATE(2380), + [sym_compound_statement] = STATE(2380), + [sym_subshell] = STATE(2380), + [sym_pipeline] = STATE(2380), + [sym_list] = STATE(2380), + [sym_negated_command] = STATE(2380), + [sym_test_command] = STATE(2380), + [sym_declaration_command] = STATE(2380), + [sym_unset_command] = STATE(2380), + [sym_command] = STATE(2380), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(701), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), [sym_word] = ACTIONS(182), [anon_sym_for] = ACTIONS(69), [anon_sym_select] = ACTIONS(71), @@ -32160,23 +31872,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(63), [sym_variable_name] = ACTIONS(119), }, + [212] = { + [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(315), + [sym_variable_assignment] = STATE(440), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), + [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(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [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(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(302), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(304), + }, + [213] = { + [sym_redirected_statement] = STATE(2306), + [sym_for_statement] = STATE(2306), + [sym_c_style_for_statement] = STATE(2306), + [sym_while_statement] = STATE(2306), + [sym_if_statement] = STATE(2306), + [sym_case_statement] = STATE(2306), + [sym_function_definition] = STATE(2306), + [sym_compound_statement] = STATE(2306), + [sym_subshell] = STATE(2306), + [sym_pipeline] = STATE(2306), + [sym_list] = STATE(2306), + [sym_negated_command] = STATE(2306), + [sym_test_command] = STATE(2306), + [sym_declaration_command] = STATE(2306), + [sym_unset_command] = STATE(2306), + [sym_command] = STATE(2306), + [sym_command_name] = STATE(315), + [sym_variable_assignment] = STATE(438), + [sym_subscript] = STATE(4000), + [sym_file_redirect] = STATE(1645), + [sym_arithmetic_expansion] = STATE(453), + [sym_concatenation] = STATE(1202), + [sym_string] = STATE(453), + [sym_translated_string] = STATE(453), + [sym_simple_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [aux_sym_command_repeat1] = STATE(1645), + [aux_sym__literal_repeat1] = STATE(811), + [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(270), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [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(284), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym__special_character] = ACTIONS(288), + [anon_sym_DQUOTE] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [sym_ansi_c_string] = ACTIONS(292), + [sym_number] = ACTIONS(294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(302), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(304), + }, + [214] = { + [sym_redirected_statement] = STATE(2368), + [sym_for_statement] = STATE(2368), + [sym_c_style_for_statement] = STATE(2368), + [sym_while_statement] = STATE(2368), + [sym_if_statement] = STATE(2368), + [sym_case_statement] = STATE(2368), + [sym_function_definition] = STATE(2368), + [sym_compound_statement] = STATE(2368), + [sym_subshell] = STATE(2368), + [sym_pipeline] = STATE(2368), + [sym_list] = STATE(2368), + [sym_negated_command] = STATE(2368), + [sym_test_command] = STATE(2368), + [sym_declaration_command] = STATE(2368), + [sym_unset_command] = STATE(2368), + [sym_command] = STATE(2368), + [sym_command_name] = STATE(385), + [sym_variable_assignment] = STATE(699), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1626), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1626), + [aux_sym__literal_repeat1] = STATE(1627), + [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), + }, + [215] = { + [sym_redirected_statement] = STATE(2435), + [sym_for_statement] = STATE(2435), + [sym_c_style_for_statement] = STATE(2435), + [sym_while_statement] = STATE(2435), + [sym_if_statement] = STATE(2435), + [sym_case_statement] = STATE(2435), + [sym_function_definition] = STATE(2435), + [sym_compound_statement] = STATE(2435), + [sym_subshell] = STATE(2435), + [sym_pipeline] = STATE(2435), + [sym_list] = STATE(2435), + [sym_negated_command] = STATE(2435), + [sym_test_command] = STATE(2435), + [sym_declaration_command] = STATE(2435), + [sym_unset_command] = STATE(2435), + [sym_command] = STATE(2435), + [sym_command_name] = STATE(395), + [sym_variable_assignment] = STATE(1033), + [sym_subscript] = STATE(3958), + [sym_file_redirect] = STATE(1639), + [sym_arithmetic_expansion] = STATE(1450), + [sym_concatenation] = STATE(1944), + [sym_string] = STATE(1450), + [sym_translated_string] = STATE(1450), + [sym_simple_expansion] = STATE(1450), + [sym_expansion] = STATE(1450), + [sym_command_substitution] = STATE(1450), + [sym_process_substitution] = STATE(1450), + [aux_sym_command_repeat1] = STATE(1639), + [aux_sym__literal_repeat1] = STATE(1627), + [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(533), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(535), + [anon_sym_typeset] = ACTIONS(535), + [anon_sym_export] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_local] = ACTIONS(535), + [anon_sym_unset] = ACTIONS(537), + [anon_sym_unsetenv] = ACTIONS(537), + [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), + }, [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__expression] = STATE(862), + [sym_binary_expression] = STATE(814), + [sym_ternary_expression] = STATE(814), + [sym_unary_expression] = STATE(814), + [sym_postfix_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(814), + [sym_arithmetic_expansion] = STATE(446), + [sym_concatenation] = STATE(814), + [sym_string] = STATE(446), + [sym_translated_string] = STATE(446), + [sym_simple_expansion] = STATE(446), + [sym_expansion] = STATE(446), + [sym_command_substitution] = STATE(446), + [sym_process_substitution] = STATE(446), + [aux_sym__literal_repeat1] = STATE(443), + [aux_sym_concatenation_repeat1] = STATE(442), [sym_word] = ACTIONS(722), [anon_sym_LF] = ACTIONS(153), [anon_sym_RPAREN_RPAREN] = ACTIONS(153), @@ -32235,29 +32251,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(1924), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(454), + [sym_concatenation] = STATE(1351), + [sym_string] = STATE(454), + [sym_translated_string] = STATE(454), + [sym_simple_expansion] = STATE(454), + [sym_expansion] = STATE(454), + [sym_command_substitution] = STATE(454), + [sym_process_substitution] = STATE(454), + [aux_sym__literal_repeat1] = STATE(803), + [aux_sym_concatenation_repeat1] = STATE(485), [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), @@ -32287,6 +32302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(754), [anon_sym_PLUS_PLUS] = ACTIONS(153), [anon_sym_DASH_DASH] = ACTIONS(153), @@ -32306,29 +32322,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string] = STATE(242), + [sym_word] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_RPAREN_RPAREN] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [anon_sym_BANG] = ACTIONS(776), + [anon_sym_EQ_TILDE] = ACTIONS(774), + [anon_sym_EQ_EQ] = ACTIONS(774), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_PLUS_EQ] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(774), + [anon_sym_LT_AMP] = ACTIONS(774), + [anon_sym_GT_AMP] = ACTIONS(774), + [anon_sym_GT_PIPE] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_LT_LT_DASH] = ACTIONS(774), + [anon_sym_LT_LT_LT] = ACTIONS(774), + [anon_sym_BANG_EQ] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_DASH_EQ] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_STAR_EQ] = ACTIONS(774), + [anon_sym_SLASH_EQ] = ACTIONS(774), + [anon_sym_PERCENT] = ACTIONS(774), + [anon_sym_PERCENT_EQ] = ACTIONS(774), + [anon_sym_STAR_STAR] = ACTIONS(774), + [anon_sym_LT_EQ] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(774), + [anon_sym_LT_LT_EQ] = ACTIONS(774), + [anon_sym_GT_GT_EQ] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_CARET] = ACTIONS(774), + [anon_sym_AMP_EQ] = ACTIONS(774), + [anon_sym_PIPE_EQ] = ACTIONS(774), + [anon_sym_CARET_EQ] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(776), + [anon_sym_PLUS_PLUS] = ACTIONS(774), + [anon_sym_DASH_DASH] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(776), + [sym__special_character] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(778), + [sym_raw_string] = ACTIONS(774), + [sym_ansi_c_string] = ACTIONS(774), + [sym_number] = ACTIONS(774), + [anon_sym_POUND] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_0] = ACTIONS(776), + [anon_sym__] = ACTIONS(776), + [sym_test_operator] = ACTIONS(774), + [sym_file_descriptor] = ACTIONS(782), + }, + [219] = { + [sym__expression] = STATE(1953), + [sym_binary_expression] = STATE(1945), + [sym_ternary_expression] = STATE(1945), + [sym_unary_expression] = STATE(1945), + [sym_postfix_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_arithmetic_expansion] = STATE(1430), + [sym_concatenation] = STATE(1945), + [sym_string] = STATE(1430), + [sym_translated_string] = STATE(1430), + [sym_simple_expansion] = STATE(1430), + [sym_expansion] = STATE(1430), + [sym_command_substitution] = STATE(1430), + [sym_process_substitution] = STATE(1430), + [aux_sym__literal_repeat1] = STATE(1426), + [aux_sym_concatenation_repeat1] = STATE(1108), + [sym_word] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(786), [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_BANG] = ACTIONS(788), + [anon_sym_RBRACK] = ACTIONS(750), [anon_sym_EQ_TILDE] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(153), [anon_sym_EQ] = ACTIONS(153), @@ -32358,47 +32445,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(750), [anon_sym_CARET_EQ] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(153), - [aux_sym_unary_expression_token1] = ACTIONS(127), + [aux_sym_unary_expression_token1] = ACTIONS(790), [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(794), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [sym_raw_string] = ACTIONS(800), + [sym_ansi_c_string] = ACTIONS(800), + [sym_number] = ACTIONS(784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), + [anon_sym_BQUOTE] = ACTIONS(804), + [anon_sym_LT_LPAREN] = ACTIONS(806), + [anon_sym_GT_LPAREN] = ACTIONS(806), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(790), - [sym__concat] = ACTIONS(792), + [sym_test_operator] = ACTIONS(808), + [sym__concat] = ACTIONS(810), }, - [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), + [220] = { + [sym__expression] = STATE(1976), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(454), + [sym_concatenation] = STATE(1351), + [sym_string] = STATE(454), + [sym_translated_string] = STATE(454), + [sym_simple_expansion] = STATE(454), + [sym_expansion] = STATE(454), + [sym_command_substitution] = STATE(454), + [sym_process_substitution] = STATE(454), + [aux_sym__literal_repeat1] = STATE(1197), + [aux_sym_concatenation_repeat1] = STATE(485), [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_BANG] = ACTIONS(812), + [anon_sym_RBRACK_RBRACK] = ACTIONS(750), [anon_sym_EQ_TILDE] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(153), [anon_sym_EQ] = ACTIONS(153), @@ -32428,13 +32516,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym_unary_expression_token1] = ACTIONS(814), [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), + [sym__special_character] = ACTIONS(816), [anon_sym_DQUOTE] = ACTIONS(760), [sym_raw_string] = ACTIONS(762), [sym_ansi_c_string] = ACTIONS(762), @@ -32444,33 +32531,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(768), [anon_sym_GT_LPAREN] = ACTIONS(768), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(800), + [sym_test_operator] = ACTIONS(818), [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), + [221] = { + [sym__expression] = STATE(2140), + [sym_binary_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_parenthesized_expression] = STATE(2117), + [sym_arithmetic_expansion] = STATE(988), + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(988), + [sym_translated_string] = STATE(988), + [sym_simple_expansion] = STATE(988), + [sym_expansion] = STATE(988), + [sym_command_substitution] = STATE(988), + [sym_process_substitution] = STATE(988), + [aux_sym__literal_repeat1] = STATE(1098), + [aux_sym_concatenation_repeat1] = STATE(1432), + [sym_word] = ACTIONS(214), + [anon_sym_LPAREN] = ACTIONS(820), [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(806), - [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(218), [anon_sym_EQ_TILDE] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(153), [anon_sym_EQ] = ACTIONS(153), @@ -32500,112 +32587,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(750), [anon_sym_CARET_EQ] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(153), - [aux_sym_unary_expression_token1] = ACTIONS(808), + [aux_sym_unary_expression_token1] = ACTIONS(127), [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), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(222), + [sym__special_character] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym_raw_string] = ACTIONS(828), + [sym_ansi_c_string] = ACTIONS(828), + [sym_number] = ACTIONS(214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(826), - [sym__concat] = ACTIONS(828), + [sym_test_operator] = ACTIONS(836), + [sym__concat] = ACTIONS(838), }, - [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), + [222] = { + [sym_string] = STATE(242), + [sym_word] = ACTIONS(840), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_RPAREN_RPAREN] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_SEMI_SEMI] = ACTIONS(840), + [anon_sym_PIPE_AMP] = ACTIONS(840), + [anon_sym_AMP_AMP] = ACTIONS(840), + [anon_sym_PIPE_PIPE] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(776), + [anon_sym_EQ_TILDE] = ACTIONS(840), + [anon_sym_EQ_EQ] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_PLUS_EQ] = ACTIONS(840), + [anon_sym_LT] = ACTIONS(840), + [anon_sym_GT] = ACTIONS(840), + [anon_sym_GT_GT] = ACTIONS(840), + [anon_sym_AMP_GT] = ACTIONS(840), + [anon_sym_AMP_GT_GT] = ACTIONS(840), + [anon_sym_LT_AMP] = ACTIONS(840), + [anon_sym_GT_AMP] = ACTIONS(840), + [anon_sym_GT_PIPE] = ACTIONS(840), + [anon_sym_LT_LT] = ACTIONS(840), + [anon_sym_LT_LT_DASH] = ACTIONS(840), + [anon_sym_LT_LT_LT] = ACTIONS(840), + [anon_sym_BANG_EQ] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_DASH_EQ] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_SLASH] = ACTIONS(840), + [anon_sym_STAR_EQ] = ACTIONS(840), + [anon_sym_SLASH_EQ] = ACTIONS(840), + [anon_sym_PERCENT] = ACTIONS(840), + [anon_sym_PERCENT_EQ] = ACTIONS(840), + [anon_sym_STAR_STAR] = ACTIONS(840), + [anon_sym_LT_EQ] = ACTIONS(840), + [anon_sym_GT_EQ] = ACTIONS(840), + [anon_sym_LT_LT_EQ] = ACTIONS(840), + [anon_sym_GT_GT_EQ] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_CARET] = ACTIONS(840), + [anon_sym_AMP_EQ] = ACTIONS(840), + [anon_sym_PIPE_EQ] = ACTIONS(840), + [anon_sym_CARET_EQ] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(776), + [anon_sym_PLUS_PLUS] = ACTIONS(840), + [anon_sym_DASH_DASH] = ACTIONS(840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_DOLLAR] = ACTIONS(776), + [sym__special_character] = ACTIONS(840), + [anon_sym_DQUOTE] = ACTIONS(778), + [sym_raw_string] = ACTIONS(840), + [sym_ansi_c_string] = ACTIONS(840), + [sym_number] = ACTIONS(840), + [anon_sym_POUND] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(840), + [anon_sym_LT_LPAREN] = ACTIONS(840), + [anon_sym_GT_LPAREN] = ACTIONS(840), [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), + [aux_sym__simple_variable_name_token1] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_0] = ACTIONS(776), + [anon_sym__] = ACTIONS(776), + [sym_test_operator] = ACTIONS(840), + [sym_file_descriptor] = ACTIONS(842), }, - [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), + [223] = { + [sym__expression] = STATE(2089), + [sym_binary_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_postfix_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_arithmetic_expansion] = STATE(454), + [sym_concatenation] = STATE(1351), + [sym_string] = STATE(454), + [sym_translated_string] = STATE(454), + [sym_simple_expansion] = STATE(454), + [sym_expansion] = STATE(454), + [sym_command_substitution] = STATE(454), + [sym_process_substitution] = STATE(454), + [aux_sym__literal_repeat1] = STATE(803), + [aux_sym_concatenation_repeat1] = STATE(485), [sym_word] = ACTIONS(149), [anon_sym_RPAREN_RPAREN] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(748), @@ -32647,7 +32734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), [anon_sym_DOLLAR] = ACTIONS(164), - [sym__special_character] = ACTIONS(798), + [sym__special_character] = ACTIONS(758), [anon_sym_DQUOTE] = ACTIONS(760), [sym_raw_string] = ACTIONS(762), [sym_ansi_c_string] = ACTIONS(762), @@ -32657,222 +32744,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(768), [anon_sym_GT_LPAREN] = ACTIONS(768), [sym_comment] = ACTIONS(59), - [sym_test_operator] = ACTIONS(840), + [sym_test_operator] = ACTIONS(844), [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), + [sym_string] = STATE(283), + [sym_word] = ACTIONS(840), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_SEMI_SEMI] = ACTIONS(840), + [anon_sym_PIPE_AMP] = ACTIONS(840), + [anon_sym_AMP_AMP] = ACTIONS(840), + [anon_sym_PIPE_PIPE] = ACTIONS(840), [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_EQ_TILDE] = ACTIONS(840), + [anon_sym_EQ_EQ] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_PLUS_EQ] = ACTIONS(840), + [anon_sym_LT] = ACTIONS(840), + [anon_sym_GT] = ACTIONS(840), + [anon_sym_GT_GT] = ACTIONS(840), + [anon_sym_AMP_GT] = ACTIONS(840), + [anon_sym_AMP_GT_GT] = ACTIONS(840), + [anon_sym_LT_AMP] = ACTIONS(840), + [anon_sym_GT_AMP] = ACTIONS(840), + [anon_sym_GT_PIPE] = ACTIONS(840), + [anon_sym_LT_LT] = ACTIONS(840), + [anon_sym_LT_LT_DASH] = ACTIONS(840), + [anon_sym_LT_LT_LT] = ACTIONS(840), + [anon_sym_BANG_EQ] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(840), [anon_sym_DASH] = ACTIONS(846), - [anon_sym_DASH_EQ] = ACTIONS(842), + [anon_sym_DASH_EQ] = ACTIONS(840), [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_SLASH] = ACTIONS(840), + [anon_sym_STAR_EQ] = ACTIONS(840), + [anon_sym_SLASH_EQ] = ACTIONS(840), + [anon_sym_PERCENT] = ACTIONS(840), + [anon_sym_PERCENT_EQ] = ACTIONS(840), + [anon_sym_STAR_STAR] = ACTIONS(840), + [anon_sym_LT_EQ] = ACTIONS(840), + [anon_sym_GT_EQ] = ACTIONS(840), + [anon_sym_LT_LT_EQ] = ACTIONS(840), + [anon_sym_GT_GT_EQ] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_CARET] = ACTIONS(840), + [anon_sym_AMP_EQ] = ACTIONS(840), + [anon_sym_PIPE_EQ] = ACTIONS(840), + [anon_sym_CARET_EQ] = ACTIONS(840), [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_PLUS_PLUS] = ACTIONS(840), + [anon_sym_DASH_DASH] = ACTIONS(840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), [anon_sym_DOLLAR] = ACTIONS(846), - [sym__special_character] = ACTIONS(842), + [sym__special_character] = ACTIONS(840), [anon_sym_DQUOTE] = ACTIONS(848), - [sym_raw_string] = ACTIONS(842), - [sym_ansi_c_string] = ACTIONS(842), - [sym_number] = ACTIONS(842), + [sym_raw_string] = ACTIONS(840), + [sym_ansi_c_string] = ACTIONS(840), + [sym_number] = ACTIONS(840), [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), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(840), + [anon_sym_LT_LPAREN] = ACTIONS(840), + [anon_sym_GT_LPAREN] = ACTIONS(840), [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(842), - [sym_file_descriptor] = ACTIONS(844), + [sym_test_operator] = ACTIONS(840), + [sym_file_descriptor] = ACTIONS(842), }, [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), + [sym_string] = STATE(283), + [sym_word] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), [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_EQ_TILDE] = ACTIONS(774), + [anon_sym_EQ_EQ] = ACTIONS(774), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_PLUS_EQ] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(774), + [anon_sym_LT_AMP] = ACTIONS(774), + [anon_sym_GT_AMP] = ACTIONS(774), + [anon_sym_GT_PIPE] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_LT_LT_DASH] = ACTIONS(774), + [anon_sym_LT_LT_LT] = ACTIONS(774), + [anon_sym_BANG_EQ] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), [anon_sym_DASH] = ACTIONS(846), - [anon_sym_DASH_EQ] = ACTIONS(830), + [anon_sym_DASH_EQ] = ACTIONS(774), [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_SLASH] = ACTIONS(774), + [anon_sym_STAR_EQ] = ACTIONS(774), + [anon_sym_SLASH_EQ] = ACTIONS(774), + [anon_sym_PERCENT] = ACTIONS(774), + [anon_sym_PERCENT_EQ] = ACTIONS(774), + [anon_sym_STAR_STAR] = ACTIONS(774), + [anon_sym_LT_EQ] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(774), + [anon_sym_LT_LT_EQ] = ACTIONS(774), + [anon_sym_GT_GT_EQ] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_CARET] = ACTIONS(774), + [anon_sym_AMP_EQ] = ACTIONS(774), + [anon_sym_PIPE_EQ] = ACTIONS(774), + [anon_sym_CARET_EQ] = ACTIONS(774), [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_PLUS_PLUS] = ACTIONS(774), + [anon_sym_DASH_DASH] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), [anon_sym_DOLLAR] = ACTIONS(846), - [sym__special_character] = ACTIONS(830), + [sym__special_character] = ACTIONS(774), [anon_sym_DQUOTE] = ACTIONS(848), - [sym_raw_string] = ACTIONS(830), - [sym_ansi_c_string] = ACTIONS(830), - [sym_number] = ACTIONS(830), + [sym_raw_string] = ACTIONS(774), + [sym_ansi_c_string] = ACTIONS(774), + [sym_number] = ACTIONS(774), [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), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), [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), + [sym_test_operator] = ACTIONS(774), + [sym_file_descriptor] = ACTIONS(782), }, [226] = { - [aux_sym_concatenation_repeat1] = STATE(227), + [aux_sym_concatenation_repeat1] = STATE(232), [sym_word] = ACTIONS(852), [anon_sym_LF] = ACTIONS(852), [anon_sym_RPAREN_RPAREN] = ACTIONS(854), @@ -32941,13 +32957,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, + [0] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(236), 1, + sym__concat, + ACTIONS(856), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, sym_file_descriptor, - ACTIONS(867), 1, + STATE(233), 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + 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, + [81] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, sym__concat, + ACTIONS(865), 1, + sym_file_descriptor, STATE(232), 1, aux_sym_concatenation_repeat1, ACTIONS(863), 60, @@ -33011,14 +33100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [75] = 7, + [156] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(180), 1, sym__concat, ACTIONS(861), 1, sym_file_descriptor, - STATE(227), 1, + STATE(232), 1, aux_sym_concatenation_repeat1, ACTIONS(858), 11, anon_sym_PIPE, @@ -33083,16 +33172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [154] = 5, + [235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(869), 1, sym_file_descriptor, - ACTIONS(873), 1, + ACTIONS(871), 1, sym__concat, - STATE(232), 1, + STATE(231), 1, aux_sym_concatenation_repeat1, - ACTIONS(869), 60, + ACTIONS(867), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -33153,16 +33242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [229] = 5, + [310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(180), 1, - sym__concat, - ACTIONS(877), 1, + ACTIONS(875), 1, sym_file_descriptor, - STATE(227), 1, + ACTIONS(877), 1, + sym__concat, + STATE(231), 1, aux_sym_concatenation_repeat1, - ACTIONS(875), 60, + ACTIONS(873), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -33223,57 +33312,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [304] = 8, + [385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(244), 1, - sym__concat, - ACTIONS(856), 1, - anon_sym_LPAREN, - ACTIONS(861), 1, + ACTIONS(882), 1, sym_file_descriptor, - STATE(247), 1, + ACTIONS(884), 1, + sym__concat, + STATE(231), 1, aux_sym_concatenation_repeat1, - ACTIONS(858), 12, + ACTIONS(880), 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_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, 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(854), 24, - anon_sym_EQ, - anon_sym_PLUS_EQ, anon_sym_BANG_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -33289,6 +33361,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -33296,18 +33369,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [385] = 5, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(882), 1, sym_file_descriptor, - ACTIONS(883), 1, + ACTIONS(886), 1, sym__concat, - STATE(232), 1, + STATE(241), 1, aux_sym_concatenation_repeat1, - ACTIONS(879), 60, + ACTIONS(880), 59, anon_sym_LF, - anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -33366,13 +33451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [460] = 3, + [534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 2, + ACTIONS(890), 2, sym_file_descriptor, sym__concat, - ACTIONS(886), 60, + ACTIONS(888), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -33433,13 +33518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [530] = 3, + [604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 2, + ACTIONS(894), 2, sym_file_descriptor, sym__concat, - ACTIONS(890), 60, + ACTIONS(892), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -33500,13 +33585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [600] = 3, + [674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 2, + ACTIONS(875), 2, sym_file_descriptor, sym__concat, - ACTIONS(894), 60, + ACTIONS(873), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -33567,13 +33652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [670] = 3, + [744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 2, + ACTIONS(898), 2, sym_file_descriptor, sym__concat, - ACTIONS(898), 60, + ACTIONS(896), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -33634,13 +33719,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [740] = 3, + [814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(902), 2, sym_file_descriptor, sym__concat, - ACTIONS(902), 60, + ACTIONS(900), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -33701,15 +33786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [810] = 3, + [884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 2, - sym_file_descriptor, + ACTIONS(236), 1, sym__concat, - ACTIONS(879), 60, + ACTIONS(865), 1, + sym_file_descriptor, + STATE(233), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 59, anon_sym_LF, - anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -33768,127 +33855,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [880] = 3, + [958] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 2, - sym_file_descriptor, + ACTIONS(236), 1, sym__concat, - ACTIONS(906), 60, - anon_sym_LF, - anon_sym_RPAREN_RPAREN, - anon_sym_SEMI, + ACTIONS(861), 1, + sym_file_descriptor, + STATE(233), 1, + aux_sym_concatenation_repeat1, + ACTIONS(858), 12, 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, - sym__special_character, - anon_sym_DQUOTE, - 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(912), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(910), 60, + ACTIONS(852), 23, 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, sym__special_character, @@ -33901,38 +33901,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [1020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(916), 2, - sym_file_descriptor, - 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_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + ACTIONS(854), 24, 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, @@ -33948,7 +33919,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -33956,28 +33926,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [1090] = 3, + [1036] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 2, + ACTIONS(875), 1, sym_file_descriptor, + ACTIONS(904), 1, sym__concat, - ACTIONS(918), 60, + STATE(241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 59, anon_sym_LF, - anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -34036,82 +33995,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1160] = 5, + [1110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(924), 1, - sym__special_character, - ACTIONS(927), 1, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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, - anon_sym_DQUOTE, - 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, - [1234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(931), 2, + ACTIONS(909), 2, sym_file_descriptor, sym__concat, - ACTIONS(929), 60, + ACTIONS(907), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -34172,15 +34062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1304] = 3, + [1180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(869), 1, sym_file_descriptor, + ACTIONS(911), 1, sym__concat, - ACTIONS(933), 60, + STATE(241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 59, anon_sym_LF, - anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -34239,13 +34131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1374] = 3, + [1254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 2, + ACTIONS(915), 2, sym_file_descriptor, sym__concat, - ACTIONS(937), 60, + ACTIONS(913), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -34306,17 +34198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1444] = 5, + [1324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(919), 2, sym_file_descriptor, - ACTIONS(941), 1, sym__concat, - STATE(249), 1, - aux_sym_concatenation_repeat1, - ACTIONS(863), 59, + ACTIONS(917), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -34375,17 +34265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1518] = 5, + [1394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(923), 2, sym_file_descriptor, - ACTIONS(943), 1, sym__concat, - STATE(249), 1, - aux_sym_concatenation_repeat1, - ACTIONS(869), 59, + ACTIONS(921), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -34444,17 +34332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1592] = 5, + [1464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(927), 2, sym_file_descriptor, - ACTIONS(945), 1, sym__concat, - STATE(249), 1, - aux_sym_concatenation_repeat1, - ACTIONS(879), 59, + ACTIONS(925), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -34513,13 +34399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1666] = 3, + [1534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 2, + ACTIONS(931), 2, sym_file_descriptor, sym__concat, - ACTIONS(948), 60, + ACTIONS(929), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -34580,13 +34466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1736] = 3, + [1604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 2, + ACTIONS(935), 2, sym_file_descriptor, sym__concat, - ACTIONS(952), 60, + ACTIONS(933), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -34647,13 +34533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1806] = 3, + [1674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(939), 2, sym_file_descriptor, sym__concat, - ACTIONS(933), 60, + ACTIONS(937), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -34714,13 +34600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1876] = 3, + [1744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 2, + ACTIONS(943), 2, sym_file_descriptor, sym__concat, - ACTIONS(956), 60, + ACTIONS(941), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -34781,13 +34667,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [1946] = 3, + [1814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 2, + ACTIONS(947), 2, sym_file_descriptor, sym__concat, - ACTIONS(960), 60, + ACTIONS(945), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -34848,13 +34734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2016] = 3, + [1884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 2, + ACTIONS(951), 2, sym_file_descriptor, sym__concat, - ACTIONS(964), 60, + ACTIONS(949), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -34915,17 +34801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2086] = 5, + [1954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(244), 1, - sym__concat, - ACTIONS(877), 1, + ACTIONS(955), 1, + sym__special_character, + ACTIONS(958), 1, sym_file_descriptor, - STATE(247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 59, + STATE(254), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 59, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -34973,7 +34860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -34984,13 +34870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2160] = 3, + [2028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(962), 2, sym_file_descriptor, sym__concat, - ACTIONS(968), 60, + ACTIONS(960), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -35051,13 +34937,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2230] = 3, + [2098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(966), 2, sym_file_descriptor, sym__concat, - ACTIONS(972), 60, + ACTIONS(964), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -35118,13 +35004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2300] = 3, + [2168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(970), 2, sym_file_descriptor, sym__concat, - ACTIONS(976), 60, + ACTIONS(968), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -35185,13 +35071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2370] = 3, + [2238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(962), 2, sym_file_descriptor, sym__concat, - ACTIONS(980), 60, + ACTIONS(960), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -35252,85 +35138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2440] = 3, + [2308] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(178), 1, sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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(972), 1, sym__special_character, - anon_sym_DQUOTE, - 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(244), 1, - sym__concat, - ACTIONS(861), 1, - sym_file_descriptor, - STATE(247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(858), 12, + STATE(254), 1, + aux_sym__literal_repeat1, + ACTIONS(157), 11, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, @@ -35341,9 +35159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_AMP, sym_test_operator, - ACTIONS(852), 23, + ACTIONS(151), 23, anon_sym_LF, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -35355,7 +35174,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -35365,7 +35183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(854), 24, + ACTIONS(153), 25, + anon_sym_RPAREN_RPAREN, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_BANG_EQ, @@ -35390,13 +35209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [2588] = 3, + [2386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(976), 2, sym_file_descriptor, sym__concat, - ACTIONS(988), 60, + ACTIONS(974), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -35457,84 +35276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2658] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(178), 1, - sym_file_descriptor, - ACTIONS(992), 1, - sym__special_character, - STATE(243), 1, - aux_sym__literal_repeat1, - ACTIONS(157), 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(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_DASH, - anon_sym_LT_LT_LT, - 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, - 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_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, - [2736] = 3, + [2456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(980), 2, sym_file_descriptor, sym__concat, - ACTIONS(994), 60, + ACTIONS(978), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -35595,13 +35343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2806] = 3, + [2526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(984), 2, sym_file_descriptor, sym__concat, - ACTIONS(998), 60, + ACTIONS(982), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -35662,13 +35410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2876] = 3, + [2596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(988), 2, sym_file_descriptor, sym__concat, - ACTIONS(1002), 60, + ACTIONS(986), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -35729,14 +35477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [2946] = 3, + [2666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 2, + ACTIONS(992), 2, sym_file_descriptor, sym__concat, - ACTIONS(960), 59, + ACTIONS(990), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -35795,84 +35544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3015] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(178), 1, - sym_file_descriptor, - 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, - anon_sym_DQUOTE, - 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), 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, + [2736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(996), 2, sym_file_descriptor, sym__concat, - ACTIONS(984), 59, + ACTIONS(994), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -35931,12 +35611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3161] = 3, + [2806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(1000), 2, sym_file_descriptor, - ACTIONS(875), 60, + sym__concat, + ACTIONS(998), 60, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -35997,14 +35678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3230] = 3, + [2876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(1004), 2, sym_file_descriptor, sym__concat, - ACTIONS(980), 59, + ACTIONS(1002), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -36063,13 +35745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3299] = 3, + [2946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(943), 2, sym_file_descriptor, sym__concat, - ACTIONS(976), 59, + ACTIONS(941), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36129,13 +35811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3368] = 3, + [3015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 2, + ACTIONS(992), 2, sym_file_descriptor, sym__concat, - ACTIONS(937), 59, + ACTIONS(990), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36195,13 +35877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3437] = 3, + [3084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(927), 2, sym_file_descriptor, sym__concat, - ACTIONS(972), 59, + ACTIONS(925), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36261,14 +35943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3506] = 3, + [3153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(865), 1, sym_file_descriptor, - sym__concat, - ACTIONS(968), 59, + ACTIONS(863), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -36327,13 +36009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3575] = 3, + [3222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 2, + ACTIONS(947), 2, sym_file_descriptor, sym__concat, - ACTIONS(964), 59, + ACTIONS(945), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36393,7 +36075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3644] = 3, + [3291] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(931), 2, @@ -36459,13 +36141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3713] = 3, + [3360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(935), 2, sym_file_descriptor, sym__concat, - ACTIONS(879), 59, + ACTIONS(933), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36525,13 +36207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3782] = 3, + [3429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 2, + ACTIONS(939), 2, sym_file_descriptor, sym__concat, - ACTIONS(894), 59, + ACTIONS(937), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36591,81 +36273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3851] = 5, + [3498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, - sym_file_descriptor, - 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - 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(888), 2, + ACTIONS(902), 2, sym_file_descriptor, sym__concat, - ACTIONS(886), 59, + ACTIONS(900), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36725,13 +36339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3993] = 3, + [3567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 2, + ACTIONS(951), 2, sym_file_descriptor, sym__concat, - ACTIONS(956), 59, + ACTIONS(949), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36791,125 +36405,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4062] = 3, + [3636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(861), 1, sym_file_descriptor, - sym__concat, - ACTIONS(933), 59, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(858), 11, 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, - sym__special_character, - anon_sym_DQUOTE, - 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(954), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(952), 59, + ACTIONS(852), 24, 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, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -36922,37 +36447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [4200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 2, - sym_file_descriptor, - 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, + ACTIONS(854), 25, + anon_sym_RPAREN_RPAREN, 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, @@ -36968,7 +36466,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -36976,26 +36473,13 @@ static const uint16_t ts_small_parse_table[] = { 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, + [3709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 2, + ACTIONS(1004), 2, sym_file_descriptor, sym__concat, - ACTIONS(948), 59, + ACTIONS(1002), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37055,13 +36539,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4338] = 3, + [3778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 2, + ACTIONS(890), 2, sym_file_descriptor, sym__concat, - ACTIONS(898), 59, + ACTIONS(888), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37121,13 +36605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4407] = 3, + [3847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(898), 2, sym_file_descriptor, sym__concat, - ACTIONS(933), 59, + ACTIONS(896), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37187,81 +36671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4476] = 5, + [3916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 1, - sym_file_descriptor, - 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_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, - anon_sym_DQUOTE, - 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, - [4549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(990), 2, + ACTIONS(1000), 2, sym_file_descriptor, sym__concat, - ACTIONS(988), 59, + ACTIONS(998), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37321,13 +36737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4618] = 3, + [3985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(909), 2, sym_file_descriptor, sym__concat, - ACTIONS(998), 59, + ACTIONS(907), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37387,13 +36803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4687] = 3, + [4054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 2, + ACTIONS(915), 2, sym_file_descriptor, sym__concat, - ACTIONS(890), 59, + ACTIONS(913), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37453,13 +36869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4756] = 3, + [4123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 2, + ACTIONS(875), 2, sym_file_descriptor, sym__concat, - ACTIONS(906), 59, + ACTIONS(873), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37519,13 +36935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4825] = 3, + [4192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 2, + ACTIONS(996), 2, sym_file_descriptor, sym__concat, - ACTIONS(910), 59, + ACTIONS(994), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37585,13 +37001,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4894] = 3, + [4261] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(958), 1, + sym_file_descriptor, + ACTIONS(1006), 1, + sym__special_character, + STATE(287), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 58, + 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, + 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, + [4334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(988), 2, sym_file_descriptor, sym__concat, - ACTIONS(1002), 59, + ACTIONS(986), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37651,13 +37135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [4963] = 3, + [4403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(976), 2, sym_file_descriptor, sym__concat, - ACTIONS(902), 59, + ACTIONS(974), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37717,13 +37201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5032] = 3, + [4472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 2, + ACTIONS(919), 2, sym_file_descriptor, sym__concat, - ACTIONS(918), 59, + ACTIONS(917), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37783,13 +37267,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5101] = 3, + [4541] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(178), 1, + sym_file_descriptor, + ACTIONS(1009), 1, + sym__special_character, + STATE(287), 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, + anon_sym_DQUOTE, + 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), 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, + [4618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 2, + ACTIONS(984), 2, sym_file_descriptor, sym__concat, - ACTIONS(914), 59, + ACTIONS(982), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37849,12 +37403,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5170] = 3, + [4687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [4756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 2, + sym_file_descriptor, + 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [4825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(980), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(978), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [4894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(964), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [4963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(892), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [5032] = 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_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, + sym__special_character, + anon_sym_DQUOTE, + 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(923), 2, sym_file_descriptor, - ACTIONS(875), 59, + sym__concat, + ACTIONS(921), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37914,7 +37865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5238] = 5, + [5170] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(861), 1, @@ -37981,7 +37932,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [5310] = 30, + [5242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(863), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [5310] = 32, ACTIONS(59), 1, sym_comment, ACTIONS(63), 1, @@ -37992,6 +38008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(91), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(119), 1, + sym_variable_name, ACTIONS(123), 1, anon_sym_LPAREN, ACTIONS(127), 1, @@ -38010,19 +38028,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(147), 1, sym_test_operator, - ACTIONS(226), 1, + ACTIONS(218), 1, anon_sym_BANG, - ACTIONS(1011), 1, - sym_variable_name, - STATE(269), 1, + STATE(291), 1, aux_sym__literal_repeat1, - STATE(301), 1, + STATE(300), 1, sym_concatenation, - STATE(371), 1, + STATE(385), 1, sym_command_name, - STATE(2066), 1, + STATE(2140), 1, sym__expression, - STATE(4009), 1, + STATE(2165), 1, + sym_variable_assignment, + STATE(2801), 1, + sym_command, + STATE(3958), 1, sym_subscript, ACTIONS(137), 2, sym_raw_string, @@ -38033,31 +38053,29 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(1626), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(2819), 3, + STATE(2791), 2, sym_subshell, sym_test_command, - sym_command, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, 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, + STATE(2117), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(262), 7, + STATE(240), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -38065,7 +38083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [5424] = 30, + [5428] = 32, ACTIONS(59), 1, sym_comment, ACTIONS(63), 1, @@ -38094,19 +38112,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(117), 1, sym_test_operator, + ACTIONS(119), 1, + sym_variable_name, ACTIONS(160), 1, anon_sym_BANG, - ACTIONS(1011), 1, - sym_variable_name, - STATE(264), 1, + STATE(259), 1, aux_sym__literal_repeat1, - STATE(281), 1, + STATE(278), 1, sym_concatenation, - STATE(371), 1, + STATE(385), 1, sym_command_name, - STATE(2092), 1, + STATE(2089), 1, sym__expression, - STATE(4009), 1, + STATE(2165), 1, + sym_variable_assignment, + STATE(2801), 1, + sym_command, + STATE(3958), 1, sym_subscript, ACTIONS(107), 2, sym_raw_string, @@ -38117,31 +38139,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 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, + STATE(1626), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(2819), 3, + STATE(2791), 2, sym_subshell, sym_test_command, - sym_command, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, 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, + STATE(1351), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(228), 7, + STATE(229), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -38149,46 +38169,166 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [5538] = 18, - ACTIONS(3), 1, + [5546] = 8, + ACTIONS(59), 1, sym_comment, - ACTIONS(1017), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(1019), 1, + sym__simple_heredoc_body, + ACTIONS(1021), 1, + sym__heredoc_body_beginning, + STATE(3445), 1, + sym_heredoc_body, + ACTIONS(1015), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1017), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1013), 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(1011), 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, + [5614] = 8, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1019), 1, + sym__simple_heredoc_body, ACTIONS(1021), 1, + sym__heredoc_body_beginning, + STATE(3453), 1, + sym_heredoc_body, + ACTIONS(1023), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1025), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1013), 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(1011), 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, - ACTIONS(1023), 1, + sym_number, + sym_word, + [5682] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1035), 1, + anon_sym_DOLLAR, + ACTIONS(1038), 1, + sym__special_character, + ACTIONS(1041), 1, anon_sym_DQUOTE, - ACTIONS(1025), 1, + ACTIONS(1044), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_BQUOTE, - ACTIONS(1031), 1, + ACTIONS(1053), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1033), 1, + ACTIONS(1056), 1, sym_test_operator, - ACTIONS(1035), 1, + ACTIONS(1059), 1, sym_file_descriptor, - ACTIONS(1037), 1, + ACTIONS(1061), 1, sym_variable_name, - STATE(817), 1, + STATE(823), 1, aux_sym__literal_repeat1, - STATE(3940), 1, + STATE(4003), 1, sym_subscript, - ACTIONS(1029), 2, + ACTIONS(1050), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(305), 3, + STATE(306), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1013), 4, + ACTIONS(1027), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(472), 7, + STATE(477), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -38196,7 +38336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1015), 22, + ACTIONS(1030), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -38219,46 +38359,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [5626] = 18, + [5770] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1044), 1, + ACTIONS(1068), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1047), 1, + ACTIONS(1070), 1, anon_sym_DOLLAR, - ACTIONS(1050), 1, + ACTIONS(1072), 1, sym__special_character, - ACTIONS(1053), 1, + ACTIONS(1074), 1, anon_sym_DQUOTE, - ACTIONS(1056), 1, + ACTIONS(1076), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, + ACTIONS(1078), 1, anon_sym_BQUOTE, - ACTIONS(1065), 1, + ACTIONS(1082), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1068), 1, + ACTIONS(1084), 1, sym_test_operator, - ACTIONS(1071), 1, + ACTIONS(1086), 1, sym_file_descriptor, - ACTIONS(1073), 1, + ACTIONS(1088), 1, sym_variable_name, - STATE(817), 1, + STATE(823), 1, aux_sym__literal_repeat1, - STATE(3940), 1, + STATE(4003), 1, sym_subscript, - ACTIONS(1062), 2, + ACTIONS(1080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(305), 3, + STATE(309), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1039), 4, + ACTIONS(1064), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(472), 7, + STATE(477), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -38266,7 +38406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1042), 22, + ACTIONS(1066), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -38289,74 +38429,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [5782] = 6, + [5858] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(1088), 1, - sym__simple_heredoc_body, ACTIONS(1090), 1, + sym__simple_heredoc_body, + ACTIONS(1092), 1, sym__heredoc_body_beginning, - STATE(3627), 1, + STATE(3617), 1, sym_heredoc_body, ACTIONS(607), 19, sym_file_descriptor, @@ -38378,7 +38458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(437), 28, + ACTIONS(435), 28, anon_sym_for, anon_sym_select, anon_sym_while, @@ -38407,106 +38487,46 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [5914] = 18, + [5922] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 1, + ACTIONS(1068), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1019), 1, + ACTIONS(1070), 1, anon_sym_DOLLAR, - ACTIONS(1021), 1, + ACTIONS(1072), 1, sym__special_character, - ACTIONS(1023), 1, + ACTIONS(1074), 1, anon_sym_DQUOTE, - ACTIONS(1025), 1, + ACTIONS(1076), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1027), 1, + ACTIONS(1078), 1, anon_sym_BQUOTE, - ACTIONS(1033), 1, + ACTIONS(1084), 1, sym_test_operator, - ACTIONS(1037), 1, + ACTIONS(1088), 1, sym_variable_name, - ACTIONS(1098), 1, + ACTIONS(1096), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1100), 1, + ACTIONS(1098), 1, sym_file_descriptor, - STATE(817), 1, + STATE(823), 1, aux_sym__literal_repeat1, - STATE(3940), 1, + STATE(4003), 1, sym_subscript, - ACTIONS(1029), 2, + ACTIONS(1080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(304), 3, + STATE(306), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1013), 4, + ACTIONS(1064), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(472), 7, + STATE(477), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -38514,7 +38534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1096), 22, + ACTIONS(1094), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -38537,80 +38557,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6002] = 8, - ACTIONS(59), 1, - sym_comment, - 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, - 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, - [6069] = 8, + [6010] = 8, ACTIONS(59), 1, sym_comment, - ACTIONS(1084), 1, + ACTIONS(1019), 1, sym__simple_heredoc_body, - ACTIONS(1086), 1, + ACTIONS(1021), 1, sym__heredoc_body_beginning, - ACTIONS(1092), 1, + ACTIONS(1023), 1, anon_sym_SEMI_SEMI, - STATE(3483), 1, + STATE(3501), 1, sym_heredoc_body, - ACTIONS(1094), 2, + ACTIONS(1025), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(1078), 19, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -38630,7 +38591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -38655,46 +38616,46 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [6136] = 18, + [6077] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1098), 1, sym_file_descriptor, - ACTIONS(1104), 1, + ACTIONS(1102), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1104), 1, anon_sym_DOLLAR, - ACTIONS(1108), 1, + ACTIONS(1106), 1, sym__special_character, - ACTIONS(1110), 1, + ACTIONS(1108), 1, anon_sym_DQUOTE, - ACTIONS(1112), 1, + ACTIONS(1110), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1114), 1, + ACTIONS(1112), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1116), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1120), 1, + ACTIONS(1118), 1, sym_test_operator, - ACTIONS(1122), 1, + ACTIONS(1120), 1, sym_variable_name, - STATE(989), 1, + STATE(996), 1, aux_sym__literal_repeat1, - STATE(3904), 1, + STATE(3974), 1, sym_subscript, - ACTIONS(1116), 2, + ACTIONS(1114), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(313), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1102), 4, + ACTIONS(1100), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(914), 7, + STATE(902), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -38702,7 +38663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1015), 21, + ACTIONS(1094), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -38724,46 +38685,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6223] = 18, + [6164] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1086), 1, sym_file_descriptor, - ACTIONS(1127), 1, + ACTIONS(1102), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1130), 1, + ACTIONS(1104), 1, anon_sym_DOLLAR, - ACTIONS(1133), 1, + ACTIONS(1106), 1, sym__special_character, - ACTIONS(1136), 1, + ACTIONS(1108), 1, anon_sym_DQUOTE, - ACTIONS(1139), 1, + ACTIONS(1110), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1142), 1, + ACTIONS(1112), 1, anon_sym_BQUOTE, - ACTIONS(1148), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1151), 1, + ACTIONS(1118), 1, sym_test_operator, - ACTIONS(1154), 1, + ACTIONS(1120), 1, sym_variable_name, - STATE(989), 1, + ACTIONS(1122), 1, + aux_sym__simple_variable_name_token1, + STATE(996), 1, aux_sym__literal_repeat1, - STATE(3904), 1, + STATE(3974), 1, sym_subscript, - ACTIONS(1145), 2, + ACTIONS(1114), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(313), 3, + STATE(311), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1124), 4, + ACTIONS(1100), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(914), 7, + STATE(902), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -38771,7 +38732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1042), 21, + ACTIONS(1066), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -38793,46 +38754,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6310] = 18, + [6251] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1100), 1, + ACTIONS(1059), 1, sym_file_descriptor, - ACTIONS(1104), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1130), 1, anon_sym_DOLLAR, - ACTIONS(1108), 1, + ACTIONS(1133), 1, sym__special_character, - ACTIONS(1110), 1, + ACTIONS(1136), 1, anon_sym_DQUOTE, - ACTIONS(1112), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1114), 1, + ACTIONS(1142), 1, anon_sym_BQUOTE, - ACTIONS(1120), 1, + ACTIONS(1148), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1151), 1, sym_test_operator, - ACTIONS(1122), 1, + ACTIONS(1154), 1, sym_variable_name, - ACTIONS(1157), 1, - aux_sym__simple_variable_name_token1, - STATE(989), 1, + STATE(996), 1, aux_sym__literal_repeat1, - STATE(3904), 1, + STATE(3974), 1, sym_subscript, - ACTIONS(1116), 2, + ACTIONS(1145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(312), 3, + STATE(313), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1102), 4, + ACTIONS(1124), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(914), 7, + STATE(902), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -38840,7 +38801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1096), 21, + ACTIONS(1030), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -38862,100 +38823,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6397] = 7, - ACTIONS(3), 1, + [6338] = 8, + ACTIONS(59), 1, sym_comment, - ACTIONS(838), 1, - sym_file_descriptor, - 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_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, + ACTIONS(1015), 1, anon_sym_SEMI_SEMI, + ACTIONS(1019), 1, + sym__simple_heredoc_body, + ACTIONS(1021), 1, + sym__heredoc_body_beginning, + STATE(3490), 1, + sym_heredoc_body, + ACTIONS(1017), 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(1013), 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_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_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [6461] = 17, + ACTIONS(1011), 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, + [6405] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_DOLLAR, - ACTIONS(290), 1, + ACTIONS(288), 1, sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1171), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1173), 1, + ACTIONS(1165), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1175), 1, + ACTIONS(1169), 1, anon_sym_BQUOTE, - ACTIONS(1179), 1, + ACTIONS(1173), 1, sym_test_operator, - ACTIONS(1181), 1, + ACTIONS(1175), 1, sym_file_descriptor, - STATE(319), 1, + STATE(328), 1, aux_sym_command_repeat2, - STATE(842), 1, + STATE(848), 1, aux_sym__literal_repeat1, - STATE(1258), 1, + STATE(1092), 1, sym_concatenation, - ACTIONS(1169), 2, + ACTIONS(1161), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1177), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1165), 4, + ACTIONS(1157), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(451), 7, + STATE(457), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -38963,7 +38926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1167), 22, + ACTIONS(1159), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -38986,167 +38949,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6545] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1186), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1189), 1, - anon_sym_DOLLAR, - ACTIONS(1192), 1, - sym__special_character, - ACTIONS(1195), 1, - anon_sym_DQUOTE, - ACTIONS(1198), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1201), 1, - anon_sym_BQUOTE, - ACTIONS(1207), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1210), 1, - sym_test_operator, - ACTIONS(1213), 1, - sym_variable_name, - STATE(1648), 1, - aux_sym__literal_repeat1, - 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(317), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1183), 4, - sym_raw_string, - sym_ansi_c_string, - sym_number, - sym_word, - STATE(961), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1042), 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [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, + [6489] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 1, + ACTIONS(1185), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1231), 1, + ACTIONS(1188), 1, anon_sym_DOLLAR, - ACTIONS(1234), 1, + ACTIONS(1191), 1, sym__special_character, - ACTIONS(1237), 1, + ACTIONS(1194), 1, anon_sym_DQUOTE, - ACTIONS(1240), 1, + ACTIONS(1197), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1200), 1, anon_sym_BQUOTE, - ACTIONS(1249), 1, + ACTIONS(1206), 1, sym_test_operator, - ACTIONS(1252), 1, + ACTIONS(1209), 1, sym_file_descriptor, - STATE(319), 1, + STATE(316), 1, aux_sym_command_repeat2, - STATE(842), 1, + STATE(848), 1, aux_sym__literal_repeat1, - STATE(1258), 1, + STATE(1092), 1, sym_concatenation, - ACTIONS(1225), 2, + ACTIONS(1182), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1246), 2, + ACTIONS(1203), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1220), 4, + ACTIONS(1177), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(451), 7, + STATE(457), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -39154,7 +38993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1223), 22, + ACTIONS(1180), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -39177,43 +39016,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6777] = 17, + [6573] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_DOLLAR, - ACTIONS(290), 1, + ACTIONS(288), 1, sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1171), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1173), 1, + ACTIONS(1165), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1175), 1, + ACTIONS(1169), 1, anon_sym_BQUOTE, - ACTIONS(1179), 1, + ACTIONS(1173), 1, sym_test_operator, - ACTIONS(1256), 1, + ACTIONS(1213), 1, sym_file_descriptor, - STATE(319), 1, + STATE(316), 1, aux_sym_command_repeat2, - STATE(842), 1, + STATE(848), 1, aux_sym__literal_repeat1, - STATE(1258), 1, + STATE(1092), 1, sym_concatenation, - ACTIONS(1169), 2, + ACTIONS(1161), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1177), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1165), 4, + ACTIONS(1157), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(451), 7, + STATE(457), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -39221,7 +39060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1254), 22, + ACTIONS(1211), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -39244,47 +39083,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6861] = 18, + [6657] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 1, + ACTIONS(1098), 1, + sym_file_descriptor, + ACTIONS(1217), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1262), 1, + ACTIONS(1219), 1, anon_sym_DOLLAR, - ACTIONS(1264), 1, + ACTIONS(1221), 1, sym__special_character, - ACTIONS(1266), 1, + ACTIONS(1223), 1, anon_sym_DQUOTE, - ACTIONS(1268), 1, + ACTIONS(1225), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1270), 1, + ACTIONS(1227), 1, anon_sym_BQUOTE, - ACTIONS(1274), 1, + ACTIONS(1231), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1276), 1, + ACTIONS(1233), 1, sym_test_operator, - ACTIONS(1278), 1, + ACTIONS(1235), 1, sym_variable_name, - STATE(1648), 1, + STATE(1628), 1, aux_sym__literal_repeat1, - STATE(4042), 1, + STATE(3949), 1, sym_subscript, - ACTIONS(1100), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1272), 2, + ACTIONS(1229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(326), 3, + STATE(324), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1258), 4, + ACTIONS(1215), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(961), 7, + STATE(1416), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -39292,10 +39130,11 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1096), 19, + ACTIONS(1094), 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, @@ -39312,46 +39151,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6947] = 18, + [6743] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1100), 1, - sym_file_descriptor, - ACTIONS(1282), 1, + ACTIONS(1239), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1284), 1, + ACTIONS(1241), 1, anon_sym_DOLLAR, - ACTIONS(1286), 1, + ACTIONS(1243), 1, sym__special_character, - ACTIONS(1288), 1, + ACTIONS(1245), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1247), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1292), 1, + ACTIONS(1249), 1, anon_sym_BQUOTE, - ACTIONS(1296), 1, + ACTIONS(1253), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1298), 1, + ACTIONS(1255), 1, sym_test_operator, - ACTIONS(1300), 1, + ACTIONS(1257), 1, sym_variable_name, - STATE(1909), 1, + STATE(1912), 1, aux_sym__literal_repeat1, - STATE(3993), 1, + STATE(3992), 1, sym_subscript, - ACTIONS(1294), 2, + ACTIONS(1098), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1251), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(324), 3, + STATE(323), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1280), 4, + ACTIONS(1237), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1193), 7, + STATE(1345), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -39359,11 +39199,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1096), 20, + ACTIONS(1094), 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, @@ -39380,18 +39219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [7033] = 7, + [6829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - sym_file_descriptor, - ACTIONS(1161), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1163), 1, + ACTIONS(1261), 1, aux_sym__simple_variable_name_token1, - STATE(647), 1, + STATE(468), 1, sym_string, - ACTIONS(1159), 9, + ACTIONS(1259), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -39401,98 +39238,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 35, + ACTIONS(840), 36, 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_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_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, + 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, - [7097] = 18, + [6891] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(842), 1, sym_file_descriptor, - ACTIONS(1282), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1284), 1, - anon_sym_DOLLAR, - ACTIONS(1286), 1, - sym__special_character, - ACTIONS(1288), 1, + ACTIONS(1165), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1292), 1, - anon_sym_BQUOTE, - ACTIONS(1298), 1, - sym_test_operator, - ACTIONS(1300), 1, - sym_variable_name, - ACTIONS(1302), 1, + ACTIONS(1265), 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, + STATE(622), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1015), 20, + ACTIONS(1263), 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(840), 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, @@ -39505,16 +39321,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [7183] = 6, + 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, + [6955] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1218), 1, + ACTIONS(1261), 1, aux_sym__simple_variable_name_token1, - STATE(462), 1, + STATE(468), 1, sym_string, - ACTIONS(1216), 9, + ACTIONS(1259), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -39524,7 +39351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 36, + ACTIONS(774), 36, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -39561,47 +39388,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [7245] = 18, + [7017] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 1, + ACTIONS(1270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1262), 1, + ACTIONS(1273), 1, anon_sym_DOLLAR, - ACTIONS(1264), 1, + ACTIONS(1276), 1, sym__special_character, - ACTIONS(1266), 1, + ACTIONS(1279), 1, anon_sym_DQUOTE, - ACTIONS(1268), 1, + ACTIONS(1282), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1270), 1, + ACTIONS(1285), 1, anon_sym_BQUOTE, - ACTIONS(1276), 1, + ACTIONS(1291), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1294), 1, sym_test_operator, - ACTIONS(1278), 1, + ACTIONS(1297), 1, sym_variable_name, - ACTIONS(1304), 1, - aux_sym__simple_variable_name_token1, - STATE(1648), 1, + STATE(1912), 1, aux_sym__literal_repeat1, - STATE(4042), 1, + STATE(3992), 1, sym_subscript, - ACTIONS(1035), 2, + ACTIONS(1059), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1272), 2, + ACTIONS(1288), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(317), 3, + STATE(323), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1258), 4, + ACTIONS(1267), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(961), 7, + STATE(1345), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -39609,7 +39436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1015), 19, + ACTIONS(1030), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -39629,46 +39456,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [7331] = 18, + [7103] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1059), 1, sym_file_descriptor, - ACTIONS(1309), 1, + ACTIONS(1303), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1306), 1, anon_sym_DOLLAR, - ACTIONS(1315), 1, + ACTIONS(1309), 1, sym__special_character, - ACTIONS(1318), 1, + ACTIONS(1312), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(1315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1318), 1, anon_sym_BQUOTE, - ACTIONS(1330), 1, + ACTIONS(1324), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1333), 1, + ACTIONS(1327), 1, sym_test_operator, - ACTIONS(1336), 1, + ACTIONS(1330), 1, sym_variable_name, - STATE(1909), 1, + STATE(1628), 1, aux_sym__literal_repeat1, - STATE(3993), 1, + STATE(3949), 1, sym_subscript, - ACTIONS(1327), 2, + ACTIONS(1321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(327), 3, + STATE(324), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1306), 4, + ACTIONS(1300), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1193), 7, + STATE(1416), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -39676,7 +39503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1042), 20, + ACTIONS(1030), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -39697,43 +39524,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [7417] = 17, + [7189] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(1239), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1241), 1, anon_sym_DOLLAR, - ACTIONS(290), 1, + ACTIONS(1243), 1, sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1245), 1, + anon_sym_DQUOTE, + ACTIONS(1247), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1249), 1, + anon_sym_BQUOTE, + ACTIONS(1255), 1, + sym_test_operator, + ACTIONS(1257), 1, + sym_variable_name, + ACTIONS(1333), 1, + aux_sym__simple_variable_name_token1, + STATE(1912), 1, + aux_sym__literal_repeat1, + STATE(3992), 1, + sym_subscript, + ACTIONS(1086), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1251), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(319), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1237), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1345), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1066), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [7275] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(782), 1, + sym_file_descriptor, + ACTIONS(1165), 1, anon_sym_DQUOTE, - ACTIONS(1171), 1, + ACTIONS(1265), 1, + aux_sym__simple_variable_name_token1, + STATE(622), 1, + sym_string, + ACTIONS(1263), 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(774), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(1173), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1175), 1, anon_sym_BQUOTE, - ACTIONS(1179), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(1341), 1, + [7339] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(286), 1, + anon_sym_DOLLAR, + ACTIONS(288), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1165), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_BQUOTE, + ACTIONS(1173), 1, + sym_test_operator, + ACTIONS(1337), 1, sym_file_descriptor, - STATE(316), 1, + STATE(317), 1, aux_sym_command_repeat2, - STATE(842), 1, + STATE(848), 1, aux_sym__literal_repeat1, - STATE(1258), 1, + STATE(1092), 1, sym_concatenation, - ACTIONS(1169), 2, + ACTIONS(1161), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1177), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1165), 4, + ACTIONS(1157), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(451), 7, + STATE(457), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -39741,7 +39693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1339), 22, + ACTIONS(1335), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -39764,43 +39716,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [7501] = 17, + [7423] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_DOLLAR, - ACTIONS(290), 1, + ACTIONS(288), 1, sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1171), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1173), 1, + ACTIONS(1165), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1175), 1, + ACTIONS(1169), 1, anon_sym_BQUOTE, - ACTIONS(1179), 1, + ACTIONS(1173), 1, sym_test_operator, - ACTIONS(1345), 1, + ACTIONS(1341), 1, sym_file_descriptor, - STATE(320), 1, + STATE(316), 1, aux_sym_command_repeat2, - STATE(842), 1, + STATE(848), 1, aux_sym__literal_repeat1, - STATE(1258), 1, + STATE(1092), 1, sym_concatenation, - ACTIONS(1169), 2, + ACTIONS(1161), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1177), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1165), 4, + ACTIONS(1157), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(451), 7, + STATE(457), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -39808,7 +39760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1343), 22, + ACTIONS(1339), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -39831,43 +39783,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [7585] = 17, + [7507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(392), 1, + ACTIONS(1086), 1, + sym_file_descriptor, + ACTIONS(1217), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1219), 1, anon_sym_DOLLAR, - ACTIONS(394), 1, + ACTIONS(1221), 1, sym__special_character, - ACTIONS(1181), 1, + ACTIONS(1223), 1, + anon_sym_DQUOTE, + ACTIONS(1225), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1227), 1, + anon_sym_BQUOTE, + ACTIONS(1233), 1, + sym_test_operator, + ACTIONS(1235), 1, + sym_variable_name, + ACTIONS(1343), 1, + aux_sym__simple_variable_name_token1, + STATE(1628), 1, + aux_sym__literal_repeat1, + STATE(3949), 1, + sym_subscript, + ACTIONS(1229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(318), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1215), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1416), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1066), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [7593] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 1, sym_file_descriptor, ACTIONS(1351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1353), 1, + ACTIONS(1354), 1, + anon_sym_DOLLAR, + ACTIONS(1357), 1, + sym__special_character, + ACTIONS(1360), 1, anon_sym_DQUOTE, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1357), 1, + ACTIONS(1366), 1, anon_sym_BQUOTE, - ACTIONS(1361), 1, + ACTIONS(1372), 1, sym_test_operator, - STATE(353), 1, + STATE(330), 1, aux_sym_command_repeat2, - STATE(1013), 1, + STATE(1020), 1, aux_sym__literal_repeat1, - STATE(1710), 1, + STATE(1777), 1, sym_concatenation, - ACTIONS(1349), 2, + ACTIONS(1348), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1359), 2, + ACTIONS(1369), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1347), 4, + ACTIONS(1345), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(905), 7, + STATE(895), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -39875,7 +39895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1167), 21, + ACTIONS(1180), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -39897,16 +39917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [7668] = 5, + [7676] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(1367), 2, + ACTIONS(1379), 2, anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(1369), 2, + ACTIONS(1381), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(1365), 19, + ACTIONS(1377), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -39926,7 +39946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1363), 24, + ACTIONS(1375), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -39951,18 +39971,10 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [7727] = 7, + [7735] = 3, 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, + ACTIONS(1385), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -39982,12 +39994,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1383), 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, @@ -40010,13 +40026,13 @@ static const uint16_t ts_small_parse_table[] = { [7790] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(1080), 1, + ACTIONS(1389), 1, anon_sym_SEMI_SEMI, - ACTIONS(1082), 3, + ACTIONS(1387), 3, anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(1078), 19, + ACTIONS(1377), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -40036,7 +40052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1375), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -40064,40 +40080,41 @@ static const uint16_t ts_small_parse_table[] = { [7849] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(392), 1, - anon_sym_DOLLAR, - ACTIONS(394), 1, - sym__special_character, - ACTIONS(1345), 1, + ACTIONS(1086), 1, sym_file_descriptor, - ACTIONS(1351), 1, + ACTIONS(1217), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1353), 1, + ACTIONS(1219), 1, + anon_sym_DOLLAR, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1223), 1, anon_sym_DQUOTE, - ACTIONS(1355), 1, + ACTIONS(1225), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1357), 1, - anon_sym_BQUOTE, - ACTIONS(1361), 1, + ACTIONS(1233), 1, sym_test_operator, - STATE(339), 1, - aux_sym_command_repeat2, - STATE(1013), 1, + ACTIONS(1235), 1, + sym_variable_name, + ACTIONS(1391), 1, + aux_sym__simple_variable_name_token1, + STATE(1628), 1, aux_sym__literal_repeat1, - STATE(1710), 1, - sym_concatenation, - ACTIONS(1349), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1359), 2, + STATE(3949), 1, + sym_subscript, + ACTIONS(1229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1347), 4, + STATE(339), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1215), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(905), 7, + STATE(1416), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -40105,13 +40122,11 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1343), 21, + ACTIONS(1066), 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, @@ -40127,18 +40142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [7932] = 7, + anon_sym_BQUOTE, + [7932] = 3, ACTIONS(59), 1, sym_comment, - 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, + ACTIONS(607), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -40158,12 +40166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(435), 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, @@ -40183,18 +40195,18 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [7995] = 7, + [7987] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, + ACTIONS(842), 1, sym_file_descriptor, - ACTIONS(1353), 1, + ACTIONS(1395), 1, anon_sym_DQUOTE, - ACTIONS(1377), 1, + ACTIONS(1397), 1, aux_sym__simple_variable_name_token1, - STATE(1027), 1, + STATE(1149), 1, sym_string, - ACTIONS(1375), 9, + ACTIONS(1393), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -40204,7 +40216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 34, + ACTIONS(840), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40239,103 +40251,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8058] = 5, - ACTIONS(59), 1, + [8050] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(782), 1, + sym_file_descriptor, + ACTIONS(1395), 1, + anon_sym_DQUOTE, + ACTIONS(1397), 1, + aux_sym__simple_variable_name_token1, + STATE(1149), 1, + sym_string, + ACTIONS(1393), 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(774), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, 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, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + 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_DQUOTE, + 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_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, - [8117] = 16, + sym_test_operator, + [8113] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1388), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1391), 1, - anon_sym_DOLLAR, - ACTIONS(1394), 1, - sym__special_character, - ACTIONS(1397), 1, + ACTIONS(1074), 1, anon_sym_DQUOTE, - ACTIONS(1400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1403), 1, - anon_sym_BQUOTE, - ACTIONS(1409), 1, + ACTIONS(1401), 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, - ACTIONS(1406), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(338), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1383), 4, - sym_raw_string, - sym_ansi_c_string, - sym_number, - sym_word, - STATE(818), 7, - sym_arithmetic_expansion, + STATE(663), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1386), 22, + ACTIONS(842), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1399), 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(840), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -40358,43 +40352,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [8198] = 17, + 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, + [8176] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(392), 1, - anon_sym_DOLLAR, - ACTIONS(394), 1, - sym__special_character, - ACTIONS(1256), 1, + ACTIONS(1098), 1, sym_file_descriptor, - ACTIONS(1351), 1, + ACTIONS(1217), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1353), 1, + ACTIONS(1219), 1, + anon_sym_DOLLAR, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1223), 1, anon_sym_DQUOTE, - ACTIONS(1355), 1, + ACTIONS(1225), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1357), 1, - anon_sym_BQUOTE, - ACTIONS(1361), 1, + ACTIONS(1231), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1233), 1, sym_test_operator, - STATE(353), 1, - aux_sym_command_repeat2, - STATE(1013), 1, + ACTIONS(1235), 1, + sym_variable_name, + STATE(1628), 1, aux_sym__literal_repeat1, - STATE(1710), 1, - sym_concatenation, - ACTIONS(1349), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1359), 2, + STATE(3949), 1, + sym_subscript, + ACTIONS(1229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1347), 4, + STATE(324), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1215), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(905), 7, + STATE(1416), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -40402,13 +40408,11 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1254), 21, + ACTIONS(1094), 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, @@ -40424,19 +40428,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [8281] = 7, + anon_sym_BQUOTE, + [8259] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, + ACTIONS(1074), 1, anon_sym_DQUOTE, - ACTIONS(1419), 1, + ACTIONS(1401), 1, aux_sym__simple_variable_name_token1, - STATE(623), 1, + STATE(663), 1, sym_string, - ACTIONS(838), 2, + ACTIONS(782), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1417), 9, + ACTIONS(1399), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -40446,7 +40451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 33, + ACTIONS(774), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -40480,97 +40485,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8344] = 7, - ACTIONS(3), 1, + [8322] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1025), 1, + ts_builtin_sym_end, + ACTIONS(1403), 1, + sym__simple_heredoc_body, + ACTIONS(1405), 1, + sym__heredoc_body_beginning, + STATE(3560), 1, + sym_heredoc_body, + ACTIONS(1013), 19, 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(842), 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_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_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [8407] = 16, + ACTIONS(1011), 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, + [8385] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1427), 1, + ACTIONS(1415), 1, anon_sym_DOLLAR, - ACTIONS(1429), 1, + ACTIONS(1418), 1, sym__special_character, - ACTIONS(1431), 1, + ACTIONS(1421), 1, anon_sym_DQUOTE, - ACTIONS(1433), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1435), 1, + ACTIONS(1427), 1, anon_sym_BQUOTE, - ACTIONS(1439), 1, + ACTIONS(1433), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1441), 1, + ACTIONS(1436), 1, sym_test_operator, - ACTIONS(1443), 1, + ACTIONS(1439), 1, sym_file_descriptor, - STATE(1396), 1, + STATE(1183), 1, aux_sym__literal_repeat1, - ACTIONS(1437), 2, + ACTIONS(1430), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(338), 2, + STATE(342), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(1421), 4, + ACTIONS(1407), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(818), 7, + STATE(824), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -40578,7 +40583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1423), 22, + ACTIONS(1410), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -40601,99 +40606,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [8488] = 7, + [8466] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, - anon_sym_DQUOTE, - ACTIONS(1419), 1, - aux_sym__simple_variable_name_token1, - STATE(623), 1, - sym_string, - ACTIONS(844), 2, - sym_file_descriptor, - sym_variable_name, - 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, - anon_sym_PIPE, - anon_sym_SEMI_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, + ACTIONS(1445), 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, - [8551] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(392), 1, + ACTIONS(1447), 1, anon_sym_DOLLAR, - ACTIONS(394), 1, + ACTIONS(1449), 1, sym__special_character, - ACTIONS(1341), 1, - sym_file_descriptor, - ACTIONS(1351), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1353), 1, + ACTIONS(1451), 1, anon_sym_DQUOTE, - ACTIONS(1355), 1, + ACTIONS(1453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1357), 1, + ACTIONS(1455), 1, anon_sym_BQUOTE, - ACTIONS(1361), 1, + ACTIONS(1459), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1461), 1, sym_test_operator, - STATE(330), 1, - aux_sym_command_repeat2, - STATE(1013), 1, + ACTIONS(1463), 1, + sym_file_descriptor, + STATE(1183), 1, aux_sym__literal_repeat1, - STATE(1710), 1, - sym_concatenation, - ACTIONS(1349), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1359), 2, + ACTIONS(1457), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1347), 4, + STATE(345), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1441), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(905), 7, + STATE(824), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -40701,9 +40648,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1339), 21, + ACTIONS(1443), 22, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40723,10 +40671,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [8634] = 3, + [8547] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(1447), 19, + ACTIONS(1025), 1, + anon_sym_RPAREN, + ACTIONS(1090), 1, + sym__simple_heredoc_body, + ACTIONS(1092), 1, + sym__heredoc_body_beginning, + STATE(3548), 1, + sym_heredoc_body, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -40746,16 +40702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1445), 28, + ACTIONS(1011), 24, 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, @@ -40775,73 +40727,137 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [8689] = 8, + [8610] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 1, + ACTIONS(1445), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1447), 1, + anon_sym_DOLLAR, + ACTIONS(1449), 1, + sym__special_character, + ACTIONS(1451), 1, anon_sym_DQUOTE, ACTIONS(1453), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1455), 1, + anon_sym_BQUOTE, + ACTIONS(1461), 1, + sym_test_operator, + ACTIONS(1467), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1469), 1, + sym_file_descriptor, + STATE(1183), 1, + aux_sym__literal_repeat1, + ACTIONS(1457), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(342), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1441), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(824), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1465), 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, + [8691] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1473), 1, + anon_sym_DQUOTE, + ACTIONS(1475), 1, aux_sym__simple_variable_name_token1, - STATE(632), 1, + STATE(1234), 1, sym_string, - ACTIONS(1451), 4, + ACTIONS(842), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1471), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, 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, + ACTIONS(840), 33, + anon_sym_LF, + 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - 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, + 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, [8754] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(1080), 2, + ACTIONS(1015), 2, anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(1082), 2, + ACTIONS(1017), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(1078), 19, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -40861,7 +40877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -40886,127 +40902,74 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [8813] = 8, + [8813] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 1, + ACTIONS(1473), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(1475), 1, aux_sym__simple_variable_name_token1, - STATE(632), 1, + STATE(1234), 1, sym_string, - ACTIONS(1451), 4, + ACTIONS(782), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1471), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, 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, + ACTIONS(774), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, 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), 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, - [8878] = 5, - ACTIONS(59), 1, - sym_comment, - ACTIONS(1379), 2, + anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - 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_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - anon_sym_DQUOTE, + 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_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, - [8937] = 5, + sym_test_operator, + [8876] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(1367), 1, - anon_sym_SEMI_SEMI, - ACTIONS(1369), 3, + ACTIONS(1017), 1, anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1365), 19, + ACTIONS(1090), 1, + sym__simple_heredoc_body, + ACTIONS(1092), 1, + sym__heredoc_body_beginning, + STATE(3561), 1, + sym_heredoc_body, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -41026,7 +40989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1363), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -41051,16 +41014,18 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [8996] = 5, + [8939] = 7, ACTIONS(59), 1, sym_comment, - 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, + ACTIONS(1017), 1, + ts_builtin_sym_end, + ACTIONS(1403), 1, + sym__simple_heredoc_body, + ACTIONS(1405), 1, + sym__heredoc_body_beginning, + STATE(3579), 1, + sym_heredoc_body, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -41080,7 +41045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -41105,21 +41070,20 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [9055] = 6, + [9002] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(1088), 1, - sym__simple_heredoc_body, - ACTIONS(1090), 1, - sym__heredoc_body_beginning, - STATE(3615), 1, - sym_heredoc_body, - ACTIONS(607), 20, + ACTIONS(1015), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1017), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, anon_sym_AMP_GT_GT, @@ -41135,7 +41099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(437), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -41160,43 +41124,100 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [9116] = 17, + [9061] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 1, - sym_file_descriptor, - ACTIONS(1461), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1464), 1, + ACTIONS(760), 1, + anon_sym_DQUOTE, + ACTIONS(1481), 1, + aux_sym__simple_variable_name_token1, + STATE(636), 1, + sym_string, + ACTIONS(1479), 4, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1467), 1, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1477), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(840), 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(842), 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, + [9126] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(392), 1, + anon_sym_DOLLAR, + ACTIONS(394), 1, sym__special_character, - ACTIONS(1470), 1, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(1395), 1, anon_sym_DQUOTE, - ACTIONS(1473), 1, + ACTIONS(1487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1476), 1, + ACTIONS(1491), 1, anon_sym_BQUOTE, - ACTIONS(1482), 1, + ACTIONS(1495), 1, sym_test_operator, - STATE(353), 1, + STATE(330), 1, aux_sym_command_repeat2, - STATE(1013), 1, + STATE(1020), 1, aux_sym__literal_repeat1, - STATE(1710), 1, + STATE(1777), 1, sym_concatenation, - ACTIONS(1458), 2, + ACTIONS(1485), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1479), 2, + ACTIONS(1493), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1455), 4, + ACTIONS(1483), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(905), 7, + STATE(895), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -41204,7 +41225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1223), 21, + ACTIONS(1211), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41226,41 +41247,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [9199] = 16, + [9209] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1427), 1, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(1429), 1, + ACTIONS(394), 1, sym__special_character, - ACTIONS(1431), 1, + ACTIONS(1175), 1, + sym_file_descriptor, + ACTIONS(1395), 1, anon_sym_DQUOTE, - ACTIONS(1433), 1, + ACTIONS(1487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1435), 1, + ACTIONS(1491), 1, anon_sym_BQUOTE, - ACTIONS(1441), 1, + ACTIONS(1495), 1, sym_test_operator, - ACTIONS(1487), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1489), 1, - sym_file_descriptor, - STATE(1396), 1, + STATE(360), 1, + aux_sym_command_repeat2, + STATE(1020), 1, aux_sym__literal_repeat1, - ACTIONS(1437), 2, + STATE(1777), 1, + sym_concatenation, + ACTIONS(1485), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1493), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(342), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1421), 4, + ACTIONS(1483), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(818), 7, + STATE(895), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -41268,10 +41291,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1485), 22, + ACTIONS(1159), 21, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41291,18 +41313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [9280] = 7, + [9292] = 5, ACTIONS(59), 1, sym_comment, - 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, + ACTIONS(1023), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1025), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -41322,7 +41342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -41347,16 +41367,16 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [9343] = 5, + [9351] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(1092), 1, + ACTIONS(1023), 1, anon_sym_SEMI_SEMI, - ACTIONS(1094), 3, + ACTIONS(1025), 3, anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(1078), 19, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -41376,7 +41396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -41401,44 +41421,98 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [9402] = 17, - ACTIONS(3), 1, + [9410] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(1100), 1, + ACTIONS(1090), 1, + sym__simple_heredoc_body, + ACTIONS(1092), 1, + sym__heredoc_body_beginning, + STATE(3633), 1, + sym_heredoc_body, + ACTIONS(607), 20, sym_file_descriptor, - ACTIONS(1282), 1, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, - ACTIONS(1284), 1, + 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(435), 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, + [9471] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(1286), 1, + ACTIONS(394), 1, sym__special_character, - ACTIONS(1288), 1, + ACTIONS(1337), 1, + sym_file_descriptor, + ACTIONS(1395), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1489), 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, + anon_sym_BQUOTE, + ACTIONS(1495), 1, + sym_test_operator, + STATE(353), 1, + aux_sym_command_repeat2, + STATE(1020), 1, aux_sym__literal_repeat1, - STATE(3993), 1, - sym_subscript, - ACTIONS(1294), 2, + STATE(1777), 1, + sym_concatenation, + ACTIONS(1485), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1493), 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, + ACTIONS(1483), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1193), 7, + STATE(895), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -41446,11 +41520,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1096), 20, + ACTIONS(1335), 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, @@ -41466,11 +41542,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [9554] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(760), 1, + anon_sym_DQUOTE, + ACTIONS(1481), 1, + aux_sym__simple_variable_name_token1, + STATE(636), 1, + sym_string, + ACTIONS(1479), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1477), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(774), 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(782), 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, + [9619] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(392), 1, + anon_sym_DOLLAR, + ACTIONS(394), 1, + sym__special_character, + ACTIONS(1341), 1, + sym_file_descriptor, + ACTIONS(1395), 1, + anon_sym_DQUOTE, + ACTIONS(1487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1489), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1491), 1, anon_sym_BQUOTE, - [9485] = 3, + ACTIONS(1495), 1, + sym_test_operator, + STATE(330), 1, + aux_sym_command_repeat2, + STATE(1020), 1, + aux_sym__literal_repeat1, + STATE(1777), 1, + sym_concatenation, + ACTIONS(1485), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1493), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1483), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(895), 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, + anon_sym_SEMI_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, + [9702] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(607), 19, + ACTIONS(1379), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1381), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1377), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -41490,16 +41694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(437), 28, + ACTIONS(1375), 24, 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, @@ -41519,18 +41719,16 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [9540] = 7, + [9761] = 5, 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, + ACTIONS(1387), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1389), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1377), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -41550,7 +41748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1375), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -41575,19 +41773,18 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [9603] = 7, + [9820] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, + ACTIONS(782), 1, + sym_file_descriptor, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1497), 1, + ACTIONS(1501), 1, aux_sym__simple_variable_name_token1, - STATE(1149), 1, + STATE(1648), 1, sym_string, - ACTIONS(838), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1493), 9, + ACTIONS(1497), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -41597,17 +41794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 33, + ACTIONS(774), 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, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41631,100 +41828,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9666] = 7, - ACTIONS(3), 1, + [9882] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(1495), 1, - anon_sym_DQUOTE, - ACTIONS(1497), 1, - aux_sym__simple_variable_name_token1, - STATE(1149), 1, - sym_string, - ACTIONS(844), 2, + ACTIONS(1090), 1, + sym__simple_heredoc_body, + ACTIONS(1092), 1, + sym__heredoc_body_beginning, + STATE(3583), 1, + sym_heredoc_body, + ACTIONS(1013), 19, sym_file_descriptor, 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, - anon_sym_PIPE, - anon_sym_SEMI_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_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_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [9729] = 17, + ACTIONS(1011), 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, + [9942] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - sym_file_descriptor, - ACTIONS(1282), 1, + ACTIONS(1509), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1284), 1, + ACTIONS(1512), 1, anon_sym_DOLLAR, - ACTIONS(1286), 1, + ACTIONS(1515), 1, sym__special_character, - ACTIONS(1288), 1, + ACTIONS(1518), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1521), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1298), 1, + ACTIONS(1524), 1, + anon_sym_BQUOTE, + ACTIONS(1530), 1, sym_test_operator, - ACTIONS(1300), 1, - sym_variable_name, - ACTIONS(1302), 1, - aux_sym__simple_variable_name_token1, - STATE(1909), 1, + STATE(365), 1, + aux_sym_command_repeat2, + STATE(1859), 1, aux_sym__literal_repeat1, - STATE(3993), 1, - sym_subscript, - ACTIONS(1294), 2, + STATE(2057), 1, + sym_concatenation, + ACTIONS(1209), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1506), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1527), 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, + ACTIONS(1503), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1193), 7, + STATE(1421), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -41732,7 +41927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1015), 20, + ACTIONS(1180), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41752,44 +41947,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [9812] = 17, + [10024] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_DOLLAR, - ACTIONS(198), 1, - sym__special_character, - ACTIONS(1181), 1, + ACTIONS(1209), 1, sym_file_descriptor, - ACTIONS(1503), 1, + ACTIONS(1539), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1505), 1, + ACTIONS(1542), 1, + anon_sym_DOLLAR, + ACTIONS(1545), 1, + sym__special_character, + ACTIONS(1548), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1509), 1, + ACTIONS(1554), 1, anon_sym_BQUOTE, - ACTIONS(1513), 1, + ACTIONS(1560), 1, sym_test_operator, STATE(366), 1, aux_sym_command_repeat2, - STATE(1877), 1, + STATE(1640), 1, aux_sym__literal_repeat1, - STATE(1940), 1, + STATE(1951), 1, sym_concatenation, - ACTIONS(1501), 2, + ACTIONS(1536), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1511), 2, + ACTIONS(1557), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1499), 4, + ACTIONS(1533), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1217), 7, + STATE(1386), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -41797,7 +41991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1167), 20, + ACTIONS(1180), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41818,98 +42012,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, 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_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, - [9956] = 17, + [10106] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(196), 1, + ACTIONS(43), 1, anon_sym_DOLLAR, - ACTIONS(198), 1, + ACTIONS(45), 1, sym__special_character, - ACTIONS(1256), 1, - sym_file_descriptor, - ACTIONS(1503), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1505), 1, + ACTIONS(1569), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1509), 1, + ACTIONS(1573), 1, anon_sym_BQUOTE, - ACTIONS(1513), 1, + ACTIONS(1577), 1, sym_test_operator, - STATE(366), 1, + STATE(365), 1, aux_sym_command_repeat2, - STATE(1877), 1, + STATE(1859), 1, aux_sym__literal_repeat1, - STATE(1940), 1, + STATE(2057), 1, sym_concatenation, - ACTIONS(1501), 2, + ACTIONS(1213), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1565), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1511), 2, + ACTIONS(1575), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1499), 4, + ACTIONS(1563), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1217), 7, + STATE(1421), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -41917,11 +42057,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1254), 20, + ACTIONS(1211), 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, @@ -41938,59 +42077,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [10038] = 17, + [10188] = 7, 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, + ACTIONS(1569), 1, anon_sym_DQUOTE, - ACTIONS(1533), 1, - anon_sym_DOLLAR_LBRACE, - 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, - STATE(1217), 7, - sym_arithmetic_expansion, + ACTIONS(1581), 1, + aux_sym__simple_variable_name_token1, + STATE(1875), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1223), 20, + ACTIONS(842), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1579), 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(840), 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_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42003,19 +42121,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [10120] = 7, + 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, + [10250] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 1, + ACTIONS(1108), 1, anon_sym_DQUOTE, - ACTIONS(1547), 1, + ACTIONS(1585), 1, aux_sym__simple_variable_name_token1, - STATE(978), 1, + STATE(1101), 1, sym_string, - ACTIONS(844), 2, + ACTIONS(842), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1545), 9, + ACTIONS(1583), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -42025,7 +42154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 32, + ACTIONS(840), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -42058,44 +42187,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [10182] = 17, + [10312] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(196), 1, anon_sym_DOLLAR, - ACTIONS(45), 1, + ACTIONS(198), 1, sym__special_character, - ACTIONS(1553), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1559), 1, + ACTIONS(1595), 1, anon_sym_BQUOTE, - ACTIONS(1563), 1, + ACTIONS(1599), 1, sym_test_operator, - STATE(374), 1, + STATE(366), 1, aux_sym_command_repeat2, - STATE(1658), 1, + STATE(1640), 1, aux_sym__literal_repeat1, - STATE(2106), 1, + STATE(1951), 1, sym_concatenation, - ACTIONS(1256), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1551), 2, + ACTIONS(1589), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1561), 2, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1549), 4, + ACTIONS(1587), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(974), 7, + STATE(1386), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -42103,58 +42231,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1254), 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [10264] = 7, - ACTIONS(3), 1, - sym_comment, - 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, - 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, + ACTIONS(1211), 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_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42167,54 +42252,43 @@ static const uint16_t ts_small_parse_table[] = { 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10326] = 17, + [10394] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(196), 1, anon_sym_DOLLAR, ACTIONS(198), 1, sym__special_character, - ACTIONS(1345), 1, + ACTIONS(1341), 1, sym_file_descriptor, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1505), 1, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1509), 1, + ACTIONS(1595), 1, anon_sym_BQUOTE, - ACTIONS(1513), 1, + ACTIONS(1599), 1, sym_test_operator, - STATE(365), 1, + STATE(366), 1, aux_sym_command_repeat2, - STATE(1877), 1, + STATE(1640), 1, aux_sym__literal_repeat1, - STATE(1940), 1, + STATE(1951), 1, sym_concatenation, - ACTIONS(1501), 2, + ACTIONS(1589), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1511), 2, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1499), 4, + ACTIONS(1587), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1217), 7, + STATE(1386), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -42222,7 +42296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1343), 20, + ACTIONS(1339), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -42243,43 +42317,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [10408] = 17, + [10476] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(196), 1, anon_sym_DOLLAR, ACTIONS(198), 1, sym__special_character, - ACTIONS(1341), 1, + ACTIONS(1337), 1, sym_file_descriptor, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1505), 1, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1509), 1, + ACTIONS(1595), 1, anon_sym_BQUOTE, - ACTIONS(1513), 1, + ACTIONS(1599), 1, sym_test_operator, - STATE(363), 1, + STATE(370), 1, aux_sym_command_repeat2, - STATE(1877), 1, + STATE(1640), 1, aux_sym__literal_repeat1, - STATE(1940), 1, + STATE(1951), 1, sym_concatenation, - ACTIONS(1501), 2, + ACTIONS(1589), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1511), 2, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1499), 4, + ACTIONS(1587), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1217), 7, + STATE(1386), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -42287,7 +42361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1339), 20, + ACTIONS(1335), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -42308,29 +42382,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [10490] = 7, + [10558] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 1, + ACTIONS(1469), 1, + sym_file_descriptor, + ACTIONS(1603), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1605), 1, + anon_sym_DOLLAR, + ACTIONS(1607), 1, + sym__special_character, + ACTIONS(1609), 1, anon_sym_DQUOTE, - ACTIONS(1547), 1, + ACTIONS(1611), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1613), 1, + anon_sym_BQUOTE, + ACTIONS(1617), 1, aux_sym__simple_variable_name_token1, - STATE(978), 1, + ACTIONS(1619), 1, + sym_test_operator, + STATE(1773), 1, + aux_sym__literal_repeat1, + ACTIONS(1615), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(381), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1601), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(997), 7, + sym_arithmetic_expansion, sym_string, - ACTIONS(838), 2, - sym_file_descriptor, - 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(830), 32, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1465), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -42352,55 +42446,44 @@ static const uint16_t ts_small_parse_table[] = { 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10552] = 17, + [10638] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_DOLLAR, ACTIONS(45), 1, sym__special_character, - ACTIONS(1553), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1569), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1559), 1, + ACTIONS(1573), 1, anon_sym_BQUOTE, - ACTIONS(1563), 1, + ACTIONS(1577), 1, sym_test_operator, - STATE(374), 1, + STATE(387), 1, aux_sym_command_repeat2, - STATE(1658), 1, + STATE(1859), 1, aux_sym__literal_repeat1, - STATE(2106), 1, + STATE(2057), 1, sym_concatenation, - ACTIONS(1181), 2, + ACTIONS(1175), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1551), 2, + ACTIONS(1565), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1561), 2, + ACTIONS(1575), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1549), 4, + ACTIONS(1563), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(974), 7, + STATE(1421), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -42408,7 +42491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1167), 19, + ACTIONS(1159), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -42428,44 +42511,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [10634] = 17, + [10720] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 1, + ACTIONS(1463), 1, + sym_file_descriptor, + ACTIONS(1603), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1578), 1, + ACTIONS(1605), 1, anon_sym_DOLLAR, - ACTIONS(1581), 1, + ACTIONS(1607), 1, sym__special_character, - ACTIONS(1584), 1, + ACTIONS(1609), 1, anon_sym_DQUOTE, - ACTIONS(1587), 1, + ACTIONS(1611), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1590), 1, + ACTIONS(1613), 1, anon_sym_BQUOTE, - ACTIONS(1596), 1, + ACTIONS(1619), 1, sym_test_operator, - STATE(374), 1, - aux_sym_command_repeat2, - STATE(1658), 1, + ACTIONS(1621), 1, + aux_sym__simple_variable_name_token1, + STATE(1773), 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, + ACTIONS(1615), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1569), 4, + STATE(373), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1601), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(974), 7, + STATE(997), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -42473,11 +42553,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1223), 19, + ACTIONS(1443), 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, @@ -42493,18 +42575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [10716] = 7, + [10800] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, - sym_file_descriptor, - ACTIONS(1431), 1, + ACTIONS(1108), 1, anon_sym_DQUOTE, - ACTIONS(1601), 1, + ACTIONS(1585), 1, aux_sym__simple_variable_name_token1, - STATE(1163), 1, + STATE(1101), 1, sym_string, - ACTIONS(1599), 9, + ACTIONS(782), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1583), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -42514,10 +42597,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 33, + ACTIONS(774), 32, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42548,96 +42630,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [10778] = 7, - ACTIONS(3), 1, + [10862] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1025), 1, + anon_sym_BQUOTE, + ACTIONS(1090), 1, + sym__simple_heredoc_body, + ACTIONS(1092), 1, + sym__heredoc_body_beginning, + STATE(3535), 1, + sym_heredoc_body, + ACTIONS(1013), 18, sym_file_descriptor, - 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_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_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_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [10840] = 16, + ACTIONS(1011), 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, + [10924] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, - sym_file_descriptor, - ACTIONS(1609), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1611), 1, + ACTIONS(43), 1, anon_sym_DOLLAR, - ACTIONS(1613), 1, + ACTIONS(45), 1, sym__special_character, - ACTIONS(1615), 1, + ACTIONS(1567), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1569), 1, anon_sym_DQUOTE, - ACTIONS(1617), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1619), 1, + ACTIONS(1573), 1, anon_sym_BQUOTE, - ACTIONS(1623), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1625), 1, + ACTIONS(1577), 1, sym_test_operator, - STATE(1681), 1, + STATE(367), 1, + aux_sym_command_repeat2, + STATE(1859), 1, aux_sym__literal_repeat1, - ACTIONS(1621), 2, + STATE(2057), 1, + sym_concatenation, + ACTIONS(1337), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1565), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1575), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(386), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1607), 4, + ACTIONS(1563), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(990), 7, + STATE(1421), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -42645,13 +42730,11 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1423), 21, + ACTIONS(1335), 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, @@ -42667,18 +42750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [10920] = 7, + [11006] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(842), 1, sym_file_descriptor, - ACTIONS(1431), 1, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1601), 1, + ACTIONS(1501), 1, aux_sym__simple_variable_name_token1, - STATE(1163), 1, + STATE(1648), 1, sym_string, - ACTIONS(1599), 9, + ACTIONS(1497), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -42688,17 +42771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 33, + ACTIONS(840), 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, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42722,18 +42805,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [10982] = 7, + [11068] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(1088), 1, - sym__simple_heredoc_body, + ACTIONS(1017), 1, + anon_sym_BQUOTE, ACTIONS(1090), 1, + sym__simple_heredoc_body, + ACTIONS(1092), 1, sym__heredoc_body_beginning, - ACTIONS(1094), 1, - anon_sym_BQUOTE, - STATE(3561), 1, + STATE(3547), 1, sym_heredoc_body, - ACTIONS(1078), 18, + ACTIONS(1013), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -42752,7 +42835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -42777,41 +42860,41 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [11044] = 16, + [11130] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(1439), 1, sym_file_descriptor, - ACTIONS(1609), 1, + ACTIONS(1626), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1611), 1, + ACTIONS(1629), 1, anon_sym_DOLLAR, - ACTIONS(1613), 1, + ACTIONS(1632), 1, sym__special_character, - ACTIONS(1615), 1, + ACTIONS(1635), 1, anon_sym_DQUOTE, - ACTIONS(1617), 1, + ACTIONS(1638), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1619), 1, + ACTIONS(1641), 1, anon_sym_BQUOTE, - ACTIONS(1625), 1, - sym_test_operator, - ACTIONS(1627), 1, + ACTIONS(1647), 1, aux_sym__simple_variable_name_token1, - STATE(1681), 1, + ACTIONS(1650), 1, + sym_test_operator, + STATE(1773), 1, aux_sym__literal_repeat1, - ACTIONS(1621), 2, + ACTIONS(1644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(377), 2, + STATE(381), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(1607), 4, + ACTIONS(1623), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(990), 7, + STATE(997), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -42819,7 +42902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1485), 21, + ACTIONS(1410), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -42841,73 +42924,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [11124] = 6, - ACTIONS(59), 1, + [11210] = 7, + ACTIONS(3), 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, + ACTIONS(1655), 1, + anon_sym_DQUOTE, + ACTIONS(1657), 1, + aux_sym__simple_variable_name_token1, + STATE(1768), 1, + sym_string, + ACTIONS(842), 2, sym_file_descriptor, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + ACTIONS(1653), 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(840), 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, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - anon_sym_DQUOTE, + 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_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, - [11184] = 7, + sym_test_operator, + [11272] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(842), 1, + sym_file_descriptor, + ACTIONS(1451), 1, anon_sym_DQUOTE, - ACTIONS(1633), 1, + ACTIONS(1661), 1, aux_sym__simple_variable_name_token1, - STATE(1690), 1, + STATE(1274), 1, sym_string, - ACTIONS(844), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1629), 9, + ACTIONS(1659), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -42917,9 +43000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 32, + ACTIONS(840), 33, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42950,84 +43034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11246] = 17, + [11334] = 7, 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, - 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, - 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_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, - [11328] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + ACTIONS(1655), 1, anon_sym_DQUOTE, - ACTIONS(1633), 1, + ACTIONS(1657), 1, aux_sym__simple_variable_name_token1, - STATE(1690), 1, + STATE(1768), 1, sym_string, - ACTIONS(838), 2, + ACTIONS(782), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1629), 9, + ACTIONS(1653), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -43037,7 +43056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 32, + ACTIONS(774), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43070,19 +43089,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11390] = 7, + [11396] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(198), 1, + sym__special_character, + ACTIONS(1175), 1, + sym_file_descriptor, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1567), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1593), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1595), 1, + anon_sym_BQUOTE, + ACTIONS(1599), 1, + sym_test_operator, + STATE(371), 1, + aux_sym_command_repeat2, + STATE(1640), 1, + aux_sym__literal_repeat1, + STATE(1951), 1, + sym_concatenation, + ACTIONS(1589), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1587), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1386), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1159), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [11478] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1569), 1, + anon_sym_DQUOTE, + ACTIONS(1581), 1, aux_sym__simple_variable_name_token1, - STATE(1654), 1, + STATE(1875), 1, sym_string, - ACTIONS(838), 2, + ACTIONS(782), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1565), 9, + ACTIONS(1579), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -43092,7 +43176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 32, + ACTIONS(774), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43125,108 +43209,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11452] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 1, - sym_file_descriptor, - 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_PIPE, - anon_sym_SEMI_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, - [11532] = 17, + [11540] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_DOLLAR, ACTIONS(45), 1, sym__special_character, - ACTIONS(1553), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1569), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1559), 1, + ACTIONS(1573), 1, anon_sym_BQUOTE, - ACTIONS(1563), 1, + ACTIONS(1577), 1, sym_test_operator, - STATE(368), 1, + STATE(365), 1, aux_sym_command_repeat2, - STATE(1658), 1, + STATE(1859), 1, aux_sym__literal_repeat1, - STATE(2106), 1, + STATE(2057), 1, sym_concatenation, - ACTIONS(1345), 2, + ACTIONS(1341), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1551), 2, + ACTIONS(1565), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1561), 2, + ACTIONS(1575), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1549), 4, + ACTIONS(1563), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(974), 7, + STATE(1421), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -43234,7 +43254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1343), 19, + ACTIONS(1339), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43254,18 +43274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [11614] = 7, + [11622] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, + ACTIONS(782), 1, sym_file_descriptor, - ACTIONS(1505), 1, + ACTIONS(1451), 1, anon_sym_DQUOTE, - ACTIONS(1605), 1, + ACTIONS(1661), 1, aux_sym__simple_variable_name_token1, - STATE(1807), 1, + STATE(1274), 1, sym_string, - ACTIONS(1603), 9, + ACTIONS(1659), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -43275,17 +43295,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 33, + ACTIONS(774), 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, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -43309,74 +43329,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [11684] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1223), 1, anon_sym_DQUOTE, - ACTIONS(1673), 1, + ACTIONS(1665), 1, aux_sym__simple_variable_name_token1, - STATE(1737), 1, + STATE(1825), 1, sym_string, - ACTIONS(838), 2, + ACTIONS(782), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1671), 9, + ACTIONS(1663), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -43386,7 +43351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 31, + ACTIONS(774), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43418,34 +43383,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11800] = 7, + [11745] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1463), 1, sym_file_descriptor, - ACTIONS(1615), 1, + ACTIONS(1669), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, + sym__special_character, + ACTIONS(1675), 1, anon_sym_DQUOTE, ACTIONS(1677), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1679), 1, + anon_sym_BQUOTE, + ACTIONS(1683), 1, aux_sym__simple_variable_name_token1, - STATE(1649), 1, + ACTIONS(1685), 1, + sym_test_operator, + STATE(1948), 1, + aux_sym__literal_repeat1, + ACTIONS(1681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(401), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1667), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1631), 7, + sym_arithmetic_expansion, 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, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1443), 20, 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, @@ -43461,53 +43446,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [11824] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(1693), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1695), 1, + anon_sym_DQUOTE, + ACTIONS(1697), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1699), 1, anon_sym_BQUOTE, + ACTIONS(1703), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1705), 1, + sym_test_operator, + STATE(2029), 1, + aux_sym__literal_repeat1, + ACTIONS(1463), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1701), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(398), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1687), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - sym_test_operator, - [11861] = 16, + STATE(1895), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1443), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [11903] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1681), 1, + ACTIONS(1439), 1, + sym_file_descriptor, + ACTIONS(1710), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1713), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1716), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1719), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1722), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, + ACTIONS(1725), 1, anon_sym_BQUOTE, - ACTIONS(1695), 1, + ACTIONS(1731), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1697), 1, + ACTIONS(1734), 1, sym_test_operator, - STATE(2113), 1, + STATE(1948), 1, aux_sym__literal_repeat1, - ACTIONS(1489), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1693), 2, + ACTIONS(1728), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(408), 2, + STATE(392), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(1679), 4, + ACTIONS(1707), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1650), 7, + STATE(1631), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -43515,10 +43551,11 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1485), 19, + ACTIONS(1410), 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, @@ -43535,82 +43572,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [11940] = 8, + [11982] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(816), 1, + ACTIONS(1245), 1, anon_sym_DQUOTE, - ACTIONS(1703), 1, + ACTIONS(1739), 1, aux_sym__simple_variable_name_token1, - STATE(1763), 1, + STATE(1857), 1, sym_string, - ACTIONS(1701), 4, + ACTIONS(842), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1737), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, 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(842), 11, + ACTIONS(840), 30, + anon_sym_LF, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + 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, - [12003] = 8, + [12043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(780), 1, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(1669), 1, + ACTIONS(1745), 1, aux_sym__simple_variable_name_token1, - STATE(1750), 1, + STATE(1855), 1, sym_string, - ACTIONS(1667), 4, + ACTIONS(1743), 4, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - ACTIONS(1665), 5, + ACTIONS(1741), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, anon_sym_0, anon_sym__, - ACTIONS(842), 11, + ACTIONS(840), 11, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -43622,7 +43658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(844), 22, + ACTIONS(842), 22, anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -43645,41 +43681,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [12066] = 16, + [12106] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 1, - sym_file_descriptor, - ACTIONS(1708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1711), 1, + ACTIONS(196), 1, anon_sym_DOLLAR, - ACTIONS(1714), 1, + ACTIONS(198), 1, sym__special_character, - ACTIONS(1717), 1, + ACTIONS(1175), 1, + sym_file_descriptor, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1720), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1723), 1, - anon_sym_BQUOTE, - ACTIONS(1729), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1732), 1, + ACTIONS(1599), 1, sym_test_operator, - STATE(1914), 1, + STATE(409), 1, + aux_sym_command_repeat2, + STATE(1640), 1, aux_sym__literal_repeat1, - ACTIONS(1726), 2, + STATE(1951), 1, + sym_concatenation, + ACTIONS(1589), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(395), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1705), 4, + ACTIONS(1587), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1910), 7, + STATE(1386), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -43687,11 +43723,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1386), 20, + ACTIONS(1159), 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, @@ -43708,20 +43743,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [12145] = 7, + anon_sym_BQUOTE, + [12185] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, + ACTIONS(1749), 1, anon_sym_DQUOTE, - ACTIONS(1737), 1, + ACTIONS(1751), 1, aux_sym__simple_variable_name_token1, - STATE(1863), 1, + STATE(1928), 1, sym_string, - ACTIONS(844), 3, + ACTIONS(842), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1735), 9, + ACTIONS(1747), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -43731,7 +43767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 30, + ACTIONS(840), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43762,30 +43798,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12206] = 7, + [12246] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(1756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1762), 1, + sym__special_character, + ACTIONS(1765), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1771), 1, + anon_sym_BQUOTE, + ACTIONS(1777), 1, aux_sym__simple_variable_name_token1, - STATE(1984), 1, - sym_string, - ACTIONS(838), 3, + ACTIONS(1780), 1, + sym_test_operator, + STATE(2029), 1, + aux_sym__literal_repeat1, + ACTIONS(1439), 2, sym_file_descriptor, - 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, + ACTIONS(1774), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(397), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1753), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1895), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1410), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43805,45 +43861,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [12325] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(1693), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1695), 1, + anon_sym_DQUOTE, + ACTIONS(1697), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1699), 1, anon_sym_BQUOTE, + ACTIONS(1705), 1, + sym_test_operator, + ACTIONS(1783), 1, + aux_sym__simple_variable_name_token1, + STATE(2029), 1, + aux_sym__literal_repeat1, + ACTIONS(1469), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1701), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(397), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1687), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - sym_test_operator, - [12267] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - sym_file_descriptor, - ACTIONS(1615), 1, - anon_sym_DQUOTE, - ACTIONS(1677), 1, - aux_sym__simple_variable_name_token1, - STATE(1649), 1, + STATE(1895), 7, + sym_arithmetic_expansion, 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, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1465), 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, @@ -43859,31 +43924,19 @@ static const uint16_t ts_small_parse_table[] = { 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12328] = 7, + [12404] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, + ACTIONS(1787), 1, anon_sym_DQUOTE, - ACTIONS(1737), 1, + ACTIONS(1789), 1, aux_sym__simple_variable_name_token1, - STATE(1863), 1, + STATE(2073), 1, sym_string, - ACTIONS(838), 3, + ACTIONS(842), 2, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1735), 9, + ACTIONS(1785), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -43893,10 +43946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 30, + ACTIONS(840), 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, @@ -43924,27 +43978,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12389] = 8, + [12465] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(816), 1, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(1703), 1, + ACTIONS(1745), 1, aux_sym__simple_variable_name_token1, - STATE(1763), 1, + STATE(1855), 1, sym_string, - ACTIONS(1701), 4, + ACTIONS(1743), 4, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - ACTIONS(1699), 5, + ACTIONS(1741), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, anon_sym_0, anon_sym__, - ACTIONS(830), 11, + ACTIONS(774), 11, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -43956,10 +44010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(838), 22, + ACTIONS(782), 22, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -43979,41 +44033,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [12452] = 16, + [12528] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, + ACTIONS(1469), 1, sym_file_descriptor, - ACTIONS(1747), 1, + ACTIONS(1669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - ACTIONS(1751), 1, + ACTIONS(1673), 1, sym__special_character, - ACTIONS(1753), 1, + ACTIONS(1675), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1677), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1757), 1, + ACTIONS(1679), 1, anon_sym_BQUOTE, - ACTIONS(1761), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1763), 1, + ACTIONS(1685), 1, sym_test_operator, - STATE(1914), 1, + ACTIONS(1791), 1, + aux_sym__simple_variable_name_token1, + STATE(1948), 1, aux_sym__literal_repeat1, - ACTIONS(1759), 2, + ACTIONS(1681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(395), 2, + STATE(392), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(1745), 4, + ACTIONS(1667), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1910), 7, + STATE(1631), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -44021,7 +44075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1423), 20, + ACTIONS(1465), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44042,20 +44096,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [12531] = 7, + [12607] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(1245), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1739), 1, aux_sym__simple_variable_name_token1, - STATE(1984), 1, + STATE(1857), 1, sym_string, - ACTIONS(844), 3, + ACTIONS(782), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1739), 9, + ACTIONS(1737), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -44065,7 +44119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 30, + ACTIONS(774), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44096,73 +44150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12592] = 7, + [12668] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, - aux_sym__simple_variable_name_token1, - STATE(2072), 1, - sym_string, - ACTIONS(838), 2, + ACTIONS(842), 1, sym_file_descriptor, - 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_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, - 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, - [12653] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, + ACTIONS(1609), 1, anon_sym_DQUOTE, - ACTIONS(1769), 1, + ACTIONS(1795), 1, aux_sym__simple_variable_name_token1, - STATE(2072), 1, + STATE(1792), 1, sym_string, - ACTIONS(844), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1765), 9, + ACTIONS(1793), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -44172,12 +44171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 31, + ACTIONS(840), 32, 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, @@ -44204,42 +44204,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12714] = 16, + [12729] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1774), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(196), 1, anon_sym_DOLLAR, - ACTIONS(1780), 1, + ACTIONS(198), 1, sym__special_character, - ACTIONS(1783), 1, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1786), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1789), 1, - anon_sym_BQUOTE, - ACTIONS(1795), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1798), 1, + ACTIONS(1599), 1, sym_test_operator, - STATE(2113), 1, + STATE(366), 1, + aux_sym_command_repeat2, + STATE(1640), 1, aux_sym__literal_repeat1, - ACTIONS(1415), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1792), 2, + STATE(1951), 1, + sym_concatenation, + ACTIONS(1589), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(405), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1771), 4, + ACTIONS(1587), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1650), 7, + STATE(1386), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -44247,7 +44246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1386), 19, + ACTIONS(1211), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44267,52 +44266,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [12793] = 16, + anon_sym_BQUOTE, + [12808] = 7, 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, + ACTIONS(1787), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LBRACE, - 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, + ACTIONS(1789), 1, + aux_sym__simple_variable_name_token1, + STATE(2073), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1254), 20, + ACTIONS(782), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1785), 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(774), 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, @@ -44329,20 +44310,30 @@ static const uint16_t ts_small_parse_table[] = { 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_BQUOTE, - [12872] = 7, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [12869] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1223), 1, anon_sym_DQUOTE, - ACTIONS(1673), 1, + ACTIONS(1665), 1, aux_sym__simple_variable_name_token1, - STATE(1737), 1, + STATE(1825), 1, sym_string, - ACTIONS(844), 2, + ACTIONS(842), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1671), 9, + ACTIONS(1663), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -44352,7 +44343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 31, + ACTIONS(840), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44384,54 +44375,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12933] = 16, + [12930] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1683), 1, - anon_sym_DOLLAR, - ACTIONS(1685), 1, - sym__special_character, - ACTIONS(1687), 1, + ACTIONS(782), 1, + sym_file_descriptor, + ACTIONS(1609), 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, + ACTIONS(1795), 1, aux_sym__simple_variable_name_token1, - STATE(2113), 1, - aux_sym__literal_repeat1, - ACTIONS(1443), 2, - sym_file_descriptor, - 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, + STATE(1792), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1423), 19, + ACTIONS(1793), 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(774), 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, @@ -44447,41 +44418,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [13012] = 16, + 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, + [12991] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(196), 1, anon_sym_DOLLAR, ACTIONS(198), 1, sym__special_character, - ACTIONS(1341), 1, + ACTIONS(1337), 1, sym_file_descriptor, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1505), 1, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1513), 1, + ACTIONS(1599), 1, sym_test_operator, - STATE(410), 1, + STATE(404), 1, aux_sym_command_repeat2, - STATE(1877), 1, + STATE(1640), 1, aux_sym__literal_repeat1, - STATE(1940), 1, + STATE(1951), 1, sym_concatenation, - ACTIONS(1501), 2, + ACTIONS(1589), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1511), 2, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1499), 4, + ACTIONS(1587), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1217), 7, + STATE(1386), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -44489,7 +44471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1339), 20, + ACTIONS(1335), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44510,41 +44492,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [13091] = 16, + [13070] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(196), 1, anon_sym_DOLLAR, ACTIONS(198), 1, sym__special_character, - ACTIONS(1181), 1, + ACTIONS(1341), 1, sym_file_descriptor, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1505), 1, + ACTIONS(1499), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1513), 1, + ACTIONS(1599), 1, sym_test_operator, STATE(366), 1, aux_sym_command_repeat2, - STATE(1877), 1, + STATE(1640), 1, aux_sym__literal_repeat1, - STATE(1940), 1, + STATE(1951), 1, sym_concatenation, - ACTIONS(1501), 2, + ACTIONS(1589), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(1511), 2, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1499), 4, + ACTIONS(1587), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - STATE(1217), 7, + STATE(1386), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -44552,7 +44534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1167), 20, + ACTIONS(1339), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44573,112 +44555,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [13170] = 16, + [13149] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 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, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(1763), 1, - sym_test_operator, - ACTIONS(1803), 1, + ACTIONS(1801), 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, - STATE(1910), 7, - sym_arithmetic_expansion, + STATE(1798), 1, 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, + ACTIONS(1799), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1797), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(774), 11, 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, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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, - [13249] = 16, + anon_sym_CARET, + ACTIONS(782), 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, + [13212] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_DOLLAR, - ACTIONS(198), 1, - sym__special_character, - ACTIONS(1345), 1, - sym_file_descriptor, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1505), 1, + ACTIONS(798), 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, + ACTIONS(1801), 1, + aux_sym__simple_variable_name_token1, + STATE(1798), 1, + sym_string, + ACTIONS(1799), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1797), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(840), 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(842), 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, 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, + 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, + [13275] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_DQUOTE, + ACTIONS(1751), 1, + aux_sym__simple_variable_name_token1, + STATE(1928), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1343), 20, + ACTIONS(782), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1747), 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(774), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44698,72 +44708,84 @@ static const uint16_t ts_small_parse_table[] = { 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_BQUOTE, - [13328] = 26, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [13336] = 28, ACTIONS(59), 1, sym_comment, ACTIONS(63), 1, sym_file_descriptor, - ACTIONS(254), 1, + ACTIONS(73), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(264), 1, - anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(89), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(91), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(286), 1, + ACTIONS(119), 1, + sym_variable_name, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(288), 1, + ACTIONS(196), 1, anon_sym_DOLLAR, - ACTIONS(290), 1, + ACTIONS(198), 1, sym__special_character, - ACTIONS(292), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(298), 1, + ACTIONS(206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(300), 1, + ACTIONS(208), 1, anon_sym_BQUOTE, - ACTIONS(304), 1, + ACTIONS(212), 1, sym_test_operator, - ACTIONS(1011), 1, - sym_variable_name, - STATE(328), 1, + STATE(395), 1, sym_command_name, - STATE(807), 1, + STATE(1627), 1, aux_sym__literal_repeat1, - STATE(1418), 1, + STATE(1944), 1, sym_concatenation, - STATE(4009), 1, + STATE(2169), 1, + sym_variable_assignment, + STATE(2801), 1, + sym_command, + STATE(3958), 1, sym_subscript, - ACTIONS(294), 2, + ACTIONS(202), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(296), 2, + ACTIONS(204), 2, sym_number, sym_word, - ACTIONS(302), 2, + 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(1751), 3, - sym_variable_assignment, + STATE(1639), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(2572), 3, + STATE(2791), 2, sym_subshell, sym_test_command, - sym_command, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, 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, + STATE(1450), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -44771,19 +44793,71 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13426] = 7, + [13438] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1687), 1, + ACTIONS(842), 1, + sym_file_descriptor, + ACTIONS(1675), 1, anon_sym_DQUOTE, - ACTIONS(1807), 1, + ACTIONS(1805), 1, aux_sym__simple_variable_name_token1, - STATE(1924), 1, + STATE(2101), 1, sym_string, - ACTIONS(838), 2, + ACTIONS(1803), 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(840), 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_AMP, + 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, + [13498] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(782), 1, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1805), 9, + ACTIONS(1675), 1, + anon_sym_DQUOTE, + ACTIONS(1805), 1, + aux_sym__simple_variable_name_token1, + STATE(2101), 1, + sym_string, + ACTIONS(1803), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -44793,10 +44867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 30, + ACTIONS(774), 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, @@ -44824,12 +44899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [13486] = 4, + [13558] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(1025), 1, ts_builtin_sym_end, - ACTIONS(1365), 19, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -44849,7 +44924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1363), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -44874,71 +44949,39 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [13540] = 26, - ACTIONS(59), 1, + [13612] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(63), 1, + ACTIONS(1469), 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, + ACTIONS(1669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(196), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - ACTIONS(198), 1, + ACTIONS(1673), 1, sym__special_character, - ACTIONS(200), 1, + ACTIONS(1675), 1, anon_sym_DQUOTE, - ACTIONS(206), 1, + ACTIONS(1677), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, - anon_sym_BQUOTE, - ACTIONS(212), 1, + ACTIONS(1685), 1, sym_test_operator, - ACTIONS(1011), 1, - sym_variable_name, - STATE(409), 1, - sym_command_name, - STATE(1886), 1, + ACTIONS(1791), 1, + aux_sym__simple_variable_name_token1, + STATE(1948), 1, aux_sym__literal_repeat1, - STATE(1938), 1, + ACTIONS(1681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(392), 2, sym_concatenation, - STATE(4009), 1, - sym_subscript, - ACTIONS(202), 2, - sym_raw_string, + aux_sym_unset_command_repeat1, + ACTIONS(1667), 4, + 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(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, - STATE(1166), 7, + STATE(1631), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -44946,12 +44989,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13638] = 4, + ACTIONS(1465), 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, + [13688] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(1082), 1, + ACTIONS(1381), 1, ts_builtin_sym_end, - ACTIONS(1078), 19, + ACTIONS(1377), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -44971,7 +45035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1375), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -44996,71 +45060,73 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [13692] = 26, - ACTIONS(59), 1, - sym_comment, - ACTIONS(63), 1, - sym_file_descriptor, - ACTIONS(254), 1, + [13742] = 28, + ACTIONS(13), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(264), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(31), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(390), 1, + ACTIONS(41), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(392), 1, + ACTIONS(43), 1, anon_sym_DOLLAR, - ACTIONS(394), 1, + ACTIONS(45), 1, sym__special_character, - ACTIONS(396), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(402), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(404), 1, + ACTIONS(55), 1, anon_sym_BQUOTE, - ACTIONS(408), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(61), 1, sym_test_operator, - ACTIONS(1011), 1, + ACTIONS(63), 1, + sym_file_descriptor, + ACTIONS(65), 1, sym_variable_name, - STATE(344), 1, + STATE(374), 1, sym_command_name, - STATE(981), 1, + STATE(1667), 1, aux_sym__literal_repeat1, - STATE(1659), 1, + STATE(1975), 1, sym_concatenation, - STATE(4009), 1, + STATE(2161), 1, + sym_variable_assignment, + STATE(2852), 1, + sym_command, + STATE(3966), 1, sym_subscript, - ACTIONS(398), 2, + ACTIONS(49), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(400), 2, + ACTIONS(51), 2, sym_number, sym_word, - ACTIONS(406), 2, + 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(1664), 3, - sym_variable_assignment, + STATE(1654), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(2572), 3, + STATE(2864), 2, sym_subshell, sym_test_command, - sym_command, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, 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, + STATE(1403), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -45068,47 +45134,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13790] = 15, + [13844] = 7, 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, + ACTIONS(1695), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1761), 1, + ACTIONS(1809), 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, - STATE(1910), 7, - sym_arithmetic_expansion, + STATE(2017), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1423), 20, + ACTIONS(842), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1807), 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(840), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45128,183 +45176,74 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - 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_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, - 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_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, 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, + [13904] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1695), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, + aux_sym__simple_variable_name_token1, + STATE(2017), 1, + sym_string, + ACTIONS(782), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1807), 9, 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_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(774), 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_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_number, - sym_word, - [14018] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(1094), 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, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - anon_sym_DQUOTE, + 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_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, - [14072] = 3, + sym_test_operator, + [13964] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(1447), 20, + ACTIONS(607), 20, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -45325,7 +45264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1445), 24, + ACTIONS(435), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -45350,7 +45289,7 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [14124] = 26, + [14016] = 28, ACTIONS(59), 1, sym_comment, ACTIONS(63), 1, @@ -45361,6 +45300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(91), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(119), 1, + sym_variable_name, ACTIONS(190), 1, anon_sym_LPAREN, ACTIONS(194), 1, @@ -45377,15 +45318,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(212), 1, sym_test_operator, - ACTIONS(1011), 1, - sym_variable_name, - STATE(371), 1, + STATE(385), 1, sym_command_name, - STATE(1886), 1, + STATE(1627), 1, aux_sym__literal_repeat1, - STATE(1938), 1, + STATE(1944), 1, sym_concatenation, - STATE(4009), 1, + STATE(2165), 1, + sym_variable_assignment, + STATE(2801), 1, + sym_command, + STATE(3958), 1, sym_subscript, ACTIONS(202), 2, sym_raw_string, @@ -45396,25 +45339,23 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(1626), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(2819), 3, + STATE(2791), 2, sym_subshell, sym_test_command, - sym_command, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, 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, + STATE(1450), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -45422,85 +45363,198 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [14222] = 7, - ACTIONS(3), 1, + [14118] = 28, + ACTIONS(59), 1, sym_comment, - ACTIONS(838), 1, + ACTIONS(63), 1, sym_file_descriptor, - 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, + ACTIONS(254), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(264), 1, + anon_sym_LPAREN, + ACTIONS(276), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(286), 1, 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_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(288), 1, + sym__special_character, + ACTIONS(290), 1, + anon_sym_DQUOTE, + ACTIONS(296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(298), 1, + anon_sym_BQUOTE, + ACTIONS(302), 1, + sym_test_operator, + ACTIONS(304), 1, + sym_variable_name, + STATE(315), 1, + sym_command_name, + STATE(811), 1, + aux_sym__literal_repeat1, + STATE(1202), 1, + sym_concatenation, + STATE(1772), 1, + sym_variable_assignment, + STATE(2731), 1, + sym_command, + STATE(4000), 1, + sym_subscript, + ACTIONS(292), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(294), 2, + sym_number, + sym_word, + ACTIONS(300), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1645), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2732), 2, + sym_subshell, + sym_test_command, + ACTIONS(37), 3, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + 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_AMP, + STATE(453), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14220] = 28, + 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(276), 1, + anon_sym_LBRACK, + ACTIONS(278), 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(410), 1, + sym_variable_name, + STATE(354), 1, + sym_command_name, + STATE(987), 1, + aux_sym__literal_repeat1, + STATE(1769), 1, + sym_concatenation, + STATE(2114), 1, + sym_variable_assignment, + STATE(2731), 1, + sym_command, + STATE(3957), 1, + sym_subscript, + ACTIONS(398), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(400), 2, sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + sym_word, + ACTIONS(406), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [14282] = 7, + STATE(1788), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2732), 2, + sym_subshell, + sym_test_command, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + 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(919), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14322] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1463), 1, sym_file_descriptor, - ACTIONS(1753), 1, + ACTIONS(1669), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, + sym__special_character, + ACTIONS(1675), 1, anon_sym_DQUOTE, + ACTIONS(1677), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1685), 1, + sym_test_operator, ACTIONS(1811), 1, aux_sym__simple_variable_name_token1, - STATE(2080), 1, + STATE(1948), 1, + aux_sym__literal_repeat1, + ACTIONS(1681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(417), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1667), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1631), 7, + sym_arithmetic_expansion, 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, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1443), 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, @@ -45517,26 +45571,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_BQUOTE, + [14398] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1387), 1, + ts_builtin_sym_end, + ACTIONS(1377), 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, - sym__special_character, + anon_sym_DQUOTE, 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, - [14342] = 3, + ACTIONS(1375), 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, + [14452] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(607), 20, + ACTIONS(1017), 1, + ts_builtin_sym_end, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, anon_sym_AMP_GT_GT, @@ -45552,7 +45647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(437), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -45577,124 +45672,61 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [14394] = 7, - ACTIONS(3), 1, + [14506] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_DQUOTE, - ACTIONS(1807), 1, - aux_sym__simple_variable_name_token1, - STATE(1924), 1, - sym_string, - ACTIONS(844), 2, + ACTIONS(1385), 20, sym_file_descriptor, - 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_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_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_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_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [14454] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1489), 1, - sym_file_descriptor, - ACTIONS(1747), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1383), 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, - 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_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, - [14530] = 3, + [14558] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(1365), 19, + ACTIONS(1017), 1, + anon_sym_BQUOTE, + ACTIONS(1013), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -45710,11 +45742,10 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1363), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -45739,12 +45770,12 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [14581] = 4, + [14611] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(1387), 1, anon_sym_BQUOTE, - ACTIONS(1078), 18, + ACTIONS(1377), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -45763,7 +45794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1375), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -45788,10 +45819,10 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [14634] = 3, + [14664] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(1078), 19, + ACTIONS(1013), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -45811,7 +45842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -45836,12 +45867,12 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [14685] = 4, + [14715] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(1082), 1, + ACTIONS(1025), 1, anon_sym_BQUOTE, - ACTIONS(1078), 18, + ACTIONS(1013), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -45860,7 +45891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1076), 24, + ACTIONS(1011), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -45885,12 +45916,10 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [14738] = 4, + [14768] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(1369), 1, - anon_sym_BQUOTE, - ACTIONS(1365), 18, + ACTIONS(1377), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -45906,10 +45935,11 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1363), 24, + ACTIONS(1375), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -45934,12 +45964,12 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [14791] = 4, + [14819] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(1381), 1, anon_sym_BQUOTE, - ACTIONS(1365), 18, + ACTIONS(1377), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -45958,7 +45988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(1363), 24, + ACTIONS(1375), 24, anon_sym_for, anon_sym_select, anon_sym_while, @@ -45983,14 +46013,14 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_number, sym_word, - [14844] = 4, + [14872] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(746), 1, sym__concat, STATE(444), 1, aux_sym_concatenation_repeat1, - ACTIONS(875), 40, + ACTIONS(863), 40, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -46031,61 +46061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, sym__special_character, sym_test_operator, - [14896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(746), 1, - sym__concat, - STATE(444), 1, - aux_sym_concatenation_repeat1, - ACTIONS(854), 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, - 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, + [14924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1813), 1, sym__special_character, - STATE(443), 1, + STATE(437), 1, aux_sym__literal_repeat1, - ACTIONS(153), 39, + ACTIONS(953), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -46125,19 +46108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [14998] = 6, + [14975] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, + ACTIONS(1820), 1, sym_file_descriptor, - ACTIONS(1823), 1, + ACTIONS(1822), 1, sym_variable_name, - STATE(2308), 4, + STATE(2327), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1817), 13, + ACTIONS(1816), 13, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -46151,7 +46134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - ACTIONS(1819), 22, + ACTIONS(1818), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46174,86 +46157,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [15053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1825), 1, - sym__concat, - STATE(440), 1, - aux_sym_concatenation_repeat1, - ACTIONS(879), 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, - 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, + [15030] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(1824), 1, anon_sym_LF, - ACTIONS(1838), 1, + ACTIONS(1836), 1, anon_sym_LT_LT_LT, - ACTIONS(1823), 2, + ACTIONS(1822), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1830), 2, + ACTIONS(1826), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(1832), 2, + ACTIONS(1830), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1834), 2, + ACTIONS(1832), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1836), 2, + ACTIONS(1834), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1080), 4, + ACTIONS(1828), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(2308), 4, + STATE(2327), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1817), 21, + ACTIONS(1816), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -46275,21 +46211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15169] = 6, + [15095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 2, + ACTIONS(1822), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1832), 2, + ACTIONS(1830), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2308), 4, + STATE(2327), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1840), 12, + ACTIONS(1838), 12, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46302,7 +46238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(1817), 21, + ACTIONS(1816), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -46324,14 +46260,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15224] = 4, + [15150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1842), 1, - sym__special_character, - STATE(443), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 39, + ACTIONS(1840), 1, + sym__concat, + STATE(441), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -46371,14 +46307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [15275] = 4, + [15201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1843), 1, sym__concat, - STATE(440), 1, + STATE(441), 1, aux_sym_concatenation_repeat1, - ACTIONS(863), 39, + ACTIONS(867), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -46418,39 +46354,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [15326] = 11, + [15252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1838), 1, - anon_sym_LT_LT_LT, - ACTIONS(1847), 1, + ACTIONS(1845), 1, + sym__special_character, + STATE(437), 1, + aux_sym__literal_repeat1, + ACTIONS(153), 39, anon_sym_LF, - ACTIONS(1823), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1832), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1834), 2, + anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1836), 2, + 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_LT_LT_DASH, - ACTIONS(1849), 2, + 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, + [15303] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + sym__concat, + STATE(441), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 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, - ACTIONS(1851), 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, + sym_test_operator, + [15354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(861), 1, + sym_file_descriptor, + ACTIONS(1849), 1, + anon_sym_LPAREN, + ACTIONS(1851), 1, + sym__concat, + STATE(474), 1, + aux_sym_concatenation_repeat1, + 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, - STATE(2308), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1817), 21, + 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, @@ -46459,6 +46480,10 @@ 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, @@ -46472,14 +46497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15391] = 4, + [15409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1853), 1, + ACTIONS(746), 1, sym__concat, - STATE(440), 1, + STATE(444), 1, aux_sym_concatenation_repeat1, - ACTIONS(869), 39, + ACTIONS(854), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -46519,18 +46544,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [15442] = 6, + [15460] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, + ACTIONS(1836), 1, + anon_sym_LT_LT_LT, + ACTIONS(1853), 1, + anon_sym_LF, + ACTIONS(1822), 2, sym_file_descriptor, - ACTIONS(1855), 1, - anon_sym_LPAREN, - ACTIONS(1857), 1, + sym_variable_name, + ACTIONS(1830), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1832), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1834), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1855), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1015), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2327), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [15525] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1861), 1, sym__concat, - STATE(465), 1, + STATE(467), 1, aux_sym_concatenation_repeat1, - ACTIONS(852), 37, + ACTIONS(1859), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1857), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46541,8 +46619,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, @@ -46566,66 +46642,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [15497] = 5, - ACTIONS(59), 1, + [15577] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(915), 1, sym__concat, - STATE(494), 1, - aux_sym_concatenation_repeat1, - ACTIONS(863), 13, + ACTIONS(913), 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_PERCENT, - anon_sym_AMP, - 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, anon_sym_PERCENT_EQ, anon_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, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [15549] = 5, + [15625] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(1851), 1, sym__concat, - STATE(450), 1, - aux_sym_concatenation_repeat1, - ACTIONS(877), 2, + ACTIONS(1865), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(875), 36, + STATE(455), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1863), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46636,6 +46710,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, @@ -46659,20 +46735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [15601] = 5, + [15677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1851), 1, sym__concat, - STATE(456), 1, - aux_sym_concatenation_repeat1, - ACTIONS(865), 2, + ACTIONS(1869), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(863), 36, + STATE(474), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1867), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46683,6 +46757,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, @@ -46706,19 +46782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [15653] = 5, + [15729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - sym__concat, - ACTIONS(1867), 1, + ACTIONS(178), 1, sym_file_descriptor, - STATE(465), 1, + ACTIONS(1851), 1, + sym__concat, + STATE(455), 1, aux_sym_concatenation_repeat1, - ACTIONS(1865), 37, + ACTIONS(151), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46756,17 +46831,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15705] = 5, + [15781] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(861), 1, + sym_file_descriptor, + ACTIONS(1851), 1, sym__concat, - STATE(450), 1, + STATE(474), 1, aux_sym_concatenation_repeat1, - ACTIONS(1871), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1869), 36, + ACTIONS(852), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46777,6 +46851,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, @@ -46800,17 +46876,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [15757] = 5, + [15833] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(772), 1, sym__concat, - STATE(448), 1, + STATE(486), 1, aux_sym_concatenation_repeat1, - ACTIONS(875), 13, + ACTIONS(854), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -46824,10 +46899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(877), 25, + ACTIONS(1871), 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, @@ -46848,18 +46924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym__special_character, sym_test_operator, - [15809] = 5, + [15885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - sym__concat, - ACTIONS(1875), 1, + ACTIONS(869), 1, sym_file_descriptor, - STATE(464), 1, + ACTIONS(1873), 1, + sym__concat, + STATE(484), 1, aux_sym_concatenation_repeat1, - ACTIONS(1873), 37, + ACTIONS(867), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46897,17 +46972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15861] = 5, + [15937] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, + ACTIONS(1851), 1, sym__concat, - STATE(456), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 2, + ACTIONS(1877), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(869), 36, + STATE(455), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1875), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46918,6 +46992,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, @@ -46941,20 +47017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [15913] = 5, + [15989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1851), 1, sym__concat, - STATE(456), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 2, + ACTIONS(1881), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(879), 36, + STATE(474), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1879), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -46965,6 +47039,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, @@ -46988,20 +47064,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [15965] = 5, + [16041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(1851), 1, sym__concat, - STATE(455), 1, + STATE(474), 1, aux_sym_concatenation_repeat1, - ACTIONS(1884), 2, - sym_file_descriptor, + ACTIONS(863), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [16093] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__concat, + STATE(469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1882), 36, + ACTIONS(880), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -47038,12 +47160,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [16017] = 3, + [16145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 1, + ACTIONS(919), 1, sym__concat, - ACTIONS(998), 39, + ACTIONS(917), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -47083,19 +47205,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [16065] = 5, + [16193] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(1885), 1, + anon_sym_LF, + ACTIONS(1893), 1, + anon_sym_LT_LT_LT, + ACTIONS(1822), 2, sym_file_descriptor, - ACTIONS(1857), 1, - sym__concat, - STATE(465), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 37, + sym_variable_name, + ACTIONS(1834), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1887), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1889), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1891), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1828), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2363), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [16257] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + anon_sym_LT_LT_LT, + ACTIONS(1895), 1, + anon_sym_LF, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1834), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1889), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1891), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1897), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1015), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2363), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [16321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1820), 1, + sym_file_descriptor, + ACTIONS(1822), 1, + sym_variable_name, + STATE(2363), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 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(1818), 21, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -47103,8 +47347,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, @@ -47117,6 +47359,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [16375] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1889), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2363), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1838), 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(1816), 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, sym__special_character, @@ -47130,16 +47407,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [16117] = 5, + [16429] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, - sym_file_descriptor, - ACTIONS(1886), 1, + ACTIONS(1861), 1, sym__concat, - STATE(460), 1, + STATE(459), 1, aux_sym_concatenation_repeat1, - ACTIONS(879), 37, + ACTIONS(1901), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1899), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -47150,8 +47428,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, @@ -47175,16 +47451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [16169] = 5, + [16481] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(1903), 1, sym__concat, - STATE(494), 1, + STATE(466), 1, aux_sym_concatenation_repeat1, - ACTIONS(869), 13, + ACTIONS(873), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -47198,7 +47475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(871), 25, + ACTIONS(875), 25, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -47224,57 +47501,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [16221] = 3, + [16533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 1, + ACTIONS(1906), 1, sym__concat, - ACTIONS(937), 39, + STATE(469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(867), 36, 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_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_LT_LT_DASH, + anon_sym_LT_LT_LT, 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - [16269] = 3, + [16585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 1, + ACTIONS(909), 1, sym__concat, - ACTIONS(929), 39, + ACTIONS(907), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -47314,16 +47593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [16317] = 5, + [16633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, - sym_file_descriptor, - ACTIONS(1891), 1, + ACTIONS(1908), 1, sym__concat, - STATE(460), 1, + STATE(469), 1, aux_sym_concatenation_repeat1, - ACTIONS(869), 37, + ACTIONS(875), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(873), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -47334,8 +47614,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, @@ -47359,18 +47637,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [16369] = 5, + [16685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - sym_file_descriptor, - ACTIONS(1893), 1, + ACTIONS(898), 1, + sym__concat, + ACTIONS(896), 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, + 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, + [16733] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1861), 1, sym__concat, - STATE(460), 1, + STATE(467), 1, aux_sym_concatenation_repeat1, - ACTIONS(863), 37, + ACTIONS(1913), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1911), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -47381,8 +47706,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, @@ -47406,14 +47729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [16421] = 3, + [16785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(875), 1, sym__concat, - ACTIONS(879), 39, + ACTIONS(873), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -47453,12 +47777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [16469] = 3, + [16833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 1, + ACTIONS(894), 1, sym__concat, - ACTIONS(894), 39, + ACTIONS(892), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -47498,12 +47822,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [16517] = 3, + [16881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 1, + ACTIONS(882), 1, + sym_file_descriptor, + ACTIONS(1915), 1, + sym__concat, + STATE(484), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [16933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 1, sym__concat, - ACTIONS(898), 39, + ACTIONS(941), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -47543,113 +47914,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [16565] = 6, + [16981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 2, - sym_file_descriptor, - 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_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(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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [16619] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 1, - sym_file_descriptor, - 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(1819), 21, + ACTIONS(976), 1, + sym__concat, + ACTIONS(974), 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, - [16673] = 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, + [17029] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1861), 1, sym__concat, - STATE(455), 1, + STATE(459), 1, aux_sym_concatenation_repeat1, - ACTIONS(1899), 2, + ACTIONS(1919), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1897), 36, + ACTIONS(1917), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -47686,20 +48006,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [16725] = 5, + [17081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(861), 1, + sym_file_descriptor, + ACTIONS(1849), 1, + anon_sym_LPAREN, + ACTIONS(1921), 1, sym__concat, - STATE(450), 1, + STATE(830), 1, aux_sym_concatenation_repeat1, - ACTIONS(1903), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1901), 36, + ACTIONS(852), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -47707,6 +48027,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, @@ -47730,68 +48052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [16777] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_LF, - ACTIONS(1911), 1, - anon_sym_LT_LT_LT, - 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_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(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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [16841] = 3, + [17135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 1, + ACTIONS(1004), 1, sym__concat, - ACTIONS(890), 39, + ACTIONS(1002), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -47831,12 +48099,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [16889] = 3, + [17183] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1861), 1, + sym__concat, + STATE(459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, + sym_variable_name, + 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, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [17235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, + ACTIONS(902), 1, sym__concat, - ACTIONS(906), 39, + ACTIONS(900), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -47876,12 +48191,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [16937] = 3, + [17283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 1, + ACTIONS(947), 1, sym__concat, - ACTIONS(910), 39, + ACTIONS(945), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -47921,12 +48236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [16985] = 3, + [17331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 1, - sym__concat, - ACTIONS(914), 39, + ACTIONS(863), 40, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -47965,65 +48278,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_test_operator, - [17033] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - sym_file_descriptor, - ACTIONS(1855), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - sym__concat, - STATE(541), 1, - aux_sym_concatenation_repeat1, - 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, sym__special_character, - anon_sym_DQUOTE, - 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, - [17087] = 5, + [17377] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(178), 1, + ACTIONS(875), 1, sym_file_descriptor, - ACTIONS(1857), 1, + ACTIONS(1923), 1, sym__concat, - STATE(464), 1, + STATE(484), 1, aux_sym_concatenation_repeat1, - ACTIONS(151), 37, + ACTIONS(873), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -48061,106 +48327,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17139] = 5, - ACTIONS(3), 1, + [17429] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(861), 1, - sym_file_descriptor, - ACTIONS(1857), 1, + ACTIONS(1926), 1, sym__concat, - STATE(465), 1, + STATE(466), 1, aux_sym_concatenation_repeat1, - ACTIONS(852), 37, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(867), 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_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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [17191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(920), 1, - sym__concat, - ACTIONS(918), 39, - anon_sym_LF, + anon_sym_CARET, + ACTIONS(869), 25, anon_sym_RPAREN_RPAREN, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, 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_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17239] = 5, + [17481] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(772), 1, + ACTIONS(1928), 1, sym__concat, - STATE(448), 1, + STATE(466), 1, aux_sym_concatenation_repeat1, - ACTIONS(854), 13, + ACTIONS(880), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -48174,7 +48395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1915), 25, + ACTIONS(882), 25, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -48200,63 +48421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17291] = 11, + [17533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1911), 1, - anon_sym_LT_LT_LT, - ACTIONS(1917), 1, - anon_sym_LF, - 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_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, - 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, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [17355] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(875), 40, + ACTIONS(962), 1, + sym__concat, + ACTIONS(960), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48295,14 +48465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym__special_character, sym_test_operator, - [17401] = 3, + [17581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(966), 1, sym__concat, - ACTIONS(933), 39, + ACTIONS(964), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48342,12 +48511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17449] = 3, + [17629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, + ACTIONS(970), 1, sym__concat, - ACTIONS(948), 39, + ACTIONS(968), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48387,12 +48556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17497] = 3, + [17677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, + ACTIONS(962), 1, sym__concat, - ACTIONS(952), 39, + ACTIONS(960), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48432,12 +48601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17545] = 3, + [17725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(980), 1, sym__concat, - ACTIONS(933), 39, + ACTIONS(978), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48477,12 +48646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17593] = 3, + [17773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, + ACTIONS(984), 1, sym__concat, - ACTIONS(956), 39, + ACTIONS(982), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48522,57 +48691,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17641] = 3, - ACTIONS(3), 1, + [17821] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(888), 1, + ACTIONS(772), 1, sym__concat, - ACTIONS(886), 39, - anon_sym_LF, - anon_sym_RPAREN_RPAREN, - anon_sym_SEMI, + STATE(486), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 13, 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_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(865), 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, anon_sym_PERCENT_EQ, anon_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, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + sym__special_character, sym_test_operator, - [17689] = 3, + [17873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 1, + ACTIONS(988), 1, sym__concat, - ACTIONS(960), 39, + ACTIONS(986), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48612,12 +48783,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17737] = 3, + [17921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, + ACTIONS(992), 1, sym__concat, - ACTIONS(964), 39, + ACTIONS(990), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48657,12 +48828,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17785] = 3, + [17969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 1, + ACTIONS(996), 1, sym__concat, - ACTIONS(968), 39, + ACTIONS(994), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48702,106 +48873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17833] = 5, - ACTIONS(59), 1, - sym_comment, - ACTIONS(1921), 1, - sym__concat, - STATE(494), 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, - 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(1857), 1, - sym__concat, - 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, - anon_sym_PIPE, - anon_sym_SEMI_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, - [17937] = 3, + [18017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 1, + ACTIONS(1000), 1, sym__concat, - ACTIONS(972), 39, + ACTIONS(998), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48841,12 +48918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [17985] = 3, + [18065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 1, + ACTIONS(890), 1, sym__concat, - ACTIONS(976), 39, + ACTIONS(888), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48886,59 +48963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [18033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1857), 1, - sym__concat, - 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, - 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, - [18085] = 3, + [18113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 1, + ACTIONS(951), 1, sym__concat, - ACTIONS(980), 39, + ACTIONS(949), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -48978,12 +49008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [18133] = 3, + [18161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 1, + ACTIONS(939), 1, sym__concat, - ACTIONS(984), 39, + ACTIONS(937), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -49023,12 +49053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [18181] = 3, + [18209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 1, + ACTIONS(935), 1, sym__concat, - ACTIONS(988), 39, + ACTIONS(933), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -49068,12 +49098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [18229] = 3, + [18257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(931), 1, sym__concat, - ACTIONS(994), 39, + ACTIONS(929), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -49113,12 +49143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [18277] = 3, + [18305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 1, + ACTIONS(927), 1, sym__concat, - ACTIONS(1002), 39, + ACTIONS(925), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -49158,12 +49188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [18325] = 3, + [18353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 1, + ACTIONS(923), 1, sym__concat, - ACTIONS(902), 39, + ACTIONS(921), 39, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -49203,110 +49233,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [18373] = 19, + [18401] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_RPAREN, + ACTIONS(1930), 1, + anon_sym_LF, ACTIONS(1938), 1, - anon_sym_RBRACE, - ACTIONS(1942), 1, + anon_sym_LT_LT_LT, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1932), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1934), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1887), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 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, - 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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1172), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(1934), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [18452] = 19, + sym_word, + sym_test_operator, + [18464] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1946), 1, + anon_sym_RBRACE, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, - anon_sym_DQUOTE, - ACTIONS(1952), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(1956), 1, - anon_sym_BQUOTE, + anon_sym_DQUOTE, ACTIONS(1960), 1, - sym_test_operator, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1962), 1, + anon_sym_SLASH2, ACTIONS(1964), 1, - anon_sym_RBRACE, + anon_sym_BQUOTE, ACTIONS(1968), 1, - anon_sym_SLASH2, - STATE(2285), 1, + sym_test_operator, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1233), 3, + STATE(931), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(1962), 4, + ACTIONS(1942), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49314,7 +49336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1966), 8, + ACTIONS(1948), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -49323,41 +49345,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [18531] = 19, + [18543] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(1972), 1, anon_sym_RBRACE, ACTIONS(1976), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1232), 3, + STATE(1615), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49366,7 +49388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49383,41 +49405,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [18610] = 19, + [18622] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(1980), 1, anon_sym_RBRACE, ACTIONS(1984), 1, - sym_regex, - STATE(2285), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1224), 3, + STATE(1559), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49426,7 +49448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49443,41 +49465,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [18689] = 19, + [18701] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(1988), 1, anon_sym_RBRACE, ACTIONS(1992), 1, - sym_regex, - STATE(2285), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1227), 3, + STATE(1584), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49486,7 +49508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49503,41 +49525,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [18768] = 19, + [18780] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(1996), 1, anon_sym_RBRACE, ACTIONS(2000), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1220), 3, + STATE(1574), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49546,7 +49568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49563,41 +49585,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [18847] = 19, + [18859] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2004), 1, anon_sym_RBRACE, ACTIONS(2008), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1221), 3, + STATE(1521), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49606,7 +49628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49623,50 +49645,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [18926] = 19, + [18938] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(1996), 1, + ACTIONS(1988), 1, anon_sym_RBRACE, ACTIONS(2010), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1220), 3, + STATE(1584), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(1994), 4, + ACTIONS(1986), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49674,7 +49696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1998), 8, + ACTIONS(1990), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -49683,41 +49705,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19005] = 19, + [19017] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2014), 1, anon_sym_RBRACE, ACTIONS(2018), 1, - sym_regex, - STATE(2285), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1216), 3, + STATE(1605), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49726,7 +49748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49743,41 +49765,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19084] = 19, + [19096] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2022), 1, anon_sym_RBRACE, ACTIONS(2026), 1, - anon_sym_SLASH2, - STATE(2285), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1213), 3, + STATE(1497), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49786,7 +49808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49803,41 +49825,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19163] = 19, + [19175] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2030), 1, anon_sym_RBRACE, ACTIONS(2034), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1211), 3, + STATE(1431), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49846,7 +49868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49863,41 +49885,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19242] = 19, + [19254] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2038), 1, anon_sym_RBRACE, ACTIONS(2042), 1, - sym_regex, - STATE(2285), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1205), 3, + STATE(1619), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49906,7 +49928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49923,41 +49945,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19321] = 19, + [19333] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2046), 1, anon_sym_RBRACE, ACTIONS(2050), 1, - sym_regex, - STATE(2285), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1207), 3, + STATE(1618), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -49966,7 +49988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -49983,41 +50005,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19400] = 19, + [19412] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2054), 1, anon_sym_RBRACE, ACTIONS(2058), 1, - anon_sym_SLASH2, - STATE(2285), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1202), 3, + STATE(1600), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -50026,7 +50048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50043,41 +50065,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19479] = 19, + [19491] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2062), 1, anon_sym_RBRACE, ACTIONS(2066), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1203), 3, + STATE(1597), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -50086,7 +50108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50103,50 +50125,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19558] = 19, + [19570] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2054), 1, + ACTIONS(2070), 1, anon_sym_RBRACE, - ACTIONS(2068), 1, + ACTIONS(2074), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1202), 3, + STATE(1602), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2052), 4, + ACTIONS(2068), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50154,7 +50176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2056), 8, + ACTIONS(2072), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -50163,110 +50185,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19637] = 19, + [19649] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2072), 1, + ACTIONS(2078), 1, anon_sym_RBRACE, - ACTIONS(2076), 1, + ACTIONS(2082), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, - sym_raw_string, - sym_ansi_c_string, ACTIONS(1958), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1199), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2070), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1197), 3, + STATE(1617), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2078), 4, + ACTIONS(2076), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50274,7 +50236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2082), 8, + ACTIONS(2080), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -50283,41 +50245,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19795] = 19, + [19728] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(1972), 1, + anon_sym_RBRACE, + ACTIONS(2084), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1615), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(1970), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 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_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19807] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2088), 1, anon_sym_RBRACE, ACTIONS(2092), 1, - anon_sym_SLASH2, - STATE(2285), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 3, + STATE(1446), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -50326,7 +50348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50343,41 +50365,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19874] = 19, + [19886] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2096), 1, anon_sym_RBRACE, ACTIONS(2100), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1183), 3, + STATE(1445), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -50386,7 +50408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50403,41 +50425,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [19953] = 19, + [19965] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2104), 1, anon_sym_RBRACE, ACTIONS(2108), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1185), 3, + STATE(1604), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -50446,7 +50468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50463,41 +50485,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [20032] = 19, + [20044] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2112), 1, anon_sym_RBRACE, ACTIONS(2116), 1, - anon_sym_SLASH2, - STATE(2285), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1177), 3, + STATE(1591), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -50506,7 +50528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50523,41 +50545,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [20111] = 19, + [20123] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, ACTIONS(2120), 1, anon_sym_RBRACE, ACTIONS(2124), 1, - anon_sym_SLASH2, - STATE(2285), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1178), 3, + STATE(1608), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, @@ -50566,7 +50588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50583,50 +50605,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [20190] = 19, + [20202] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2112), 1, + ACTIONS(2128), 1, anon_sym_RBRACE, - ACTIONS(2126), 1, + ACTIONS(2132), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1177), 3, + STATE(1441), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2110), 4, + ACTIONS(2126), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50634,7 +50656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2114), 8, + ACTIONS(2130), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -50643,50 +50665,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [20269] = 19, + [20281] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2130), 1, + ACTIONS(2136), 1, anon_sym_RBRACE, - ACTIONS(2134), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2140), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1175), 3, + STATE(1372), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2128), 4, + ACTIONS(2134), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50694,7 +50716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2132), 8, + ACTIONS(2138), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -50703,50 +50725,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [20348] = 19, + [20360] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2138), 1, + ACTIONS(2144), 1, anon_sym_RBRACE, - ACTIONS(2142), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2148), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1171), 3, + STATE(1594), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2136), 4, + ACTIONS(2142), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50754,7 +50776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2140), 8, + ACTIONS(2146), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -50763,50 +50785,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [20427] = 19, + [20439] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2146), 1, + ACTIONS(2152), 1, anon_sym_RBRACE, - ACTIONS(2150), 1, + ACTIONS(2156), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1170), 3, + STATE(1433), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2144), 4, + ACTIONS(2150), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -50814,7 +50836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2148), 8, + ACTIONS(2154), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -50823,372 +50845,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [20506] = 5, + [20518] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - sym__concat, - STATE(535), 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_PIPE, - anon_sym_SEMI_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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2128), 1, + anon_sym_RBRACE, + ACTIONS(2158), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [20557] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2154), 1, - sym__concat, - STATE(533), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(879), 35, - anon_sym_LF, + STATE(1441), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2126), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2130), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20597] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2162), 1, + anon_sym_RBRACE, + ACTIONS(2166), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [20608] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - sym__concat, - STATE(533), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(869), 35, - anon_sym_LF, + STATE(1582), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2160), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2164), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20676] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2170), 1, + anon_sym_RBRACE, + ACTIONS(2174), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [20659] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 1, - sym__concat, - STATE(533), 1, - aux_sym_concatenation_repeat1, - ACTIONS(865), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(863), 35, - anon_sym_LF, + STATE(1588), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2168), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2172), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20755] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2178), 1, + anon_sym_RBRACE, + ACTIONS(2182), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [20710] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(877), 1, - sym_file_descriptor, - ACTIONS(1913), 1, - sym__concat, - STATE(541), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 36, - anon_sym_LF, + STATE(1590), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2176), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2180), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20834] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2186), 1, + anon_sym_RBRACE, + ACTIONS(2190), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20761] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(881), 1, - sym_file_descriptor, - ACTIONS(2161), 1, - sym__concat, - STATE(537), 1, - aux_sym_concatenation_repeat1, - ACTIONS(879), 36, - anon_sym_LF, + STATE(1587), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2184), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2188), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20913] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2194), 1, + anon_sym_RBRACE, + ACTIONS(2198), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20812] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(871), 1, - sym_file_descriptor, - ACTIONS(2164), 1, - sym__concat, - STATE(537), 1, - aux_sym_concatenation_repeat1, - ACTIONS(869), 36, - anon_sym_LF, + STATE(1522), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2192), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2196), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [20863] = 19, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20992] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2168), 1, + ACTIONS(2170), 1, anon_sym_RBRACE, - ACTIONS(2172), 1, + ACTIONS(2200), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1237), 3, + STATE(1588), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2166), 4, + ACTIONS(2168), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -51196,7 +51256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2170), 8, + ACTIONS(2172), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -51205,50 +51265,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [20942] = 19, + [21071] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2176), 1, + ACTIONS(2162), 1, anon_sym_RBRACE, - ACTIONS(2180), 1, + ACTIONS(2202), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1235), 3, + STATE(1582), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2174), 4, + ACTIONS(2160), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -51256,7 +51316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2178), 8, + ACTIONS(2164), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -51265,480 +51325,500 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [21021] = 5, + [21150] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - sym_file_descriptor, - ACTIONS(2182), 1, - sym__concat, - STATE(537), 1, - aux_sym_concatenation_repeat1, - ACTIONS(863), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2206), 1, + anon_sym_RBRACE, + ACTIONS(2210), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21072] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - sym__concat, - STATE(566), 1, - aux_sym_concatenation_repeat1, - ACTIONS(877), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(875), 35, - anon_sym_LF, + STATE(1580), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2204), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2208), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21229] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2214), 1, + anon_sym_RBRACE, + ACTIONS(2218), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(904), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(902), 36, - anon_sym_LF, + STATE(1531), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2212), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2216), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21308] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2222), 1, + anon_sym_RBRACE, + ACTIONS(2226), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [21170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1002), 36, - anon_sym_LF, + STATE(1575), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2220), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2224), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21387] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2230), 1, + anon_sym_RBRACE, + ACTIONS(2234), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [21217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1000), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(998), 36, - anon_sym_LF, + STATE(1583), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2228), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2232), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21466] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2238), 1, + anon_sym_RBRACE, + ACTIONS(2242), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [21264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(994), 36, - anon_sym_LF, + STATE(1434), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2236), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2240), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21545] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [21311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(990), 3, - sym_file_descriptor, - sym__concat, - 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, - 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, + ACTIONS(2246), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [21358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(984), 36, - anon_sym_LF, + STATE(1577), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2244), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2248), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21624] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [21405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(982), 3, - sym_file_descriptor, - 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(2254), 1, + anon_sym_RBRACE, + ACTIONS(2258), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [21452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(976), 36, - anon_sym_LF, + STATE(1576), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2252), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2256), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21703] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2262), 1, + anon_sym_RBRACE, + ACTIONS(2266), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [21499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(972), 36, - anon_sym_LF, + STATE(1573), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2260), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2264), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 1, + sym_variable_name, + ACTIONS(1820), 2, + sym_file_descriptor, + ts_builtin_sym_end, + STATE(2403), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 13, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -51750,24 +51830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [21546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(968), 36, + ACTIONS(1818), 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, @@ -51783,64 +51852,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [21593] = 19, + [21835] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2188), 1, + ACTIONS(2270), 1, anon_sym_RBRACE, - ACTIONS(2192), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2274), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 3, + STATE(1564), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2186), 4, + ACTIONS(2268), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -51848,7 +51903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2190), 8, + ACTIONS(2272), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -51857,112 +51912,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [21672] = 3, + [21914] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 3, + ACTIONS(2276), 1, + ts_builtin_sym_end, + ACTIONS(1822), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(964), 36, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(2278), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [21719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(960), 36, + STATE(2403), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1838), 9, 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, - [21766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 3, - sym_file_descriptor, - sym__concat, - 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, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1816), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -51971,10 +51947,6 @@ 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, @@ -51986,53 +51958,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [21813] = 19, + [21969] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2196), 1, + ACTIONS(2282), 1, anon_sym_RBRACE, - ACTIONS(2200), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2286), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1238), 3, + STATE(1566), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2194), 4, + ACTIONS(2280), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -52040,7 +52011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2198), 8, + ACTIONS(2284), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -52049,318 +52020,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [21892] = 3, + [22048] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, - sym_file_descriptor, - sym__concat, - 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, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [21939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(2290), 1, + anon_sym_RBRACE, + ACTIONS(2294), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [21986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(948), 36, - anon_sym_LF, + STATE(1405), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2288), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2292), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22127] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [22033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2202), 1, - sym__concat, - STATE(561), 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, - 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, + ACTIONS(2298), 1, + anon_sym_RBRACE, + ACTIONS(2302), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(933), 36, - anon_sym_LF, + STATE(1556), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2296), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2300), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22206] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2306), 1, + anon_sym_RBRACE, + ACTIONS(2310), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [22131] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2205), 1, - sym__concat, - STATE(561), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(869), 35, - anon_sym_LF, + STATE(1557), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2304), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2308), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [22182] = 19, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22285] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2168), 1, + ACTIONS(2314), 1, anon_sym_RBRACE, - ACTIONS(2207), 1, + ACTIONS(2318), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1237), 3, + STATE(1560), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2166), 4, + ACTIONS(2312), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -52368,7 +52251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2170), 8, + ACTIONS(2316), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -52377,140 +52260,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [22261] = 3, + [22364] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 3, - sym_file_descriptor, - 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2322), 1, + anon_sym_RBRACE, + ACTIONS(2326), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [22308] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 1, - sym__concat, - STATE(561), 1, - aux_sym_concatenation_repeat1, - ACTIONS(865), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(863), 35, - anon_sym_LF, + STATE(1561), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2320), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2324), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [22359] = 19, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22443] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2213), 1, + ACTIONS(2298), 1, anon_sym_RBRACE, - ACTIONS(2217), 1, + ACTIONS(2328), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1242), 3, + STATE(1556), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2211), 4, + ACTIONS(2296), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -52518,7 +52371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2215), 8, + ACTIONS(2300), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -52527,50 +52380,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [22438] = 19, + [22522] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2221), 1, + ACTIONS(2332), 1, anon_sym_RBRACE, - ACTIONS(2225), 1, + ACTIONS(2336), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1240), 3, + STATE(1554), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2219), 4, + ACTIONS(2330), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -52578,7 +52431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2223), 8, + ACTIONS(2334), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -52587,50 +52440,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [22517] = 19, + [22601] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2229), 1, + ACTIONS(2340), 1, anon_sym_RBRACE, - ACTIONS(2233), 1, + ACTIONS(2344), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1254), 3, + STATE(1547), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2227), 4, + ACTIONS(2338), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -52638,7 +52491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2231), 8, + ACTIONS(2342), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -52647,624 +52500,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [22596] = 3, + [22680] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2348), 1, + anon_sym_RBRACE, + ACTIONS(2352), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [22643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(912), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(910), 36, - anon_sym_LF, + STATE(1545), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2346), 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_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [22690] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(877), 1, - sym_file_descriptor, - ACTIONS(2235), 1, - sym__concat, - STATE(597), 1, - aux_sym_concatenation_repeat1, - 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, - [22741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(904), 2, - sym_file_descriptor, - 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, - 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, - [22788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 2, - sym_file_descriptor, - 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, - 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, - [22835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1000), 2, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [22882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 2, - sym_file_descriptor, - 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, - 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, - [22929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(990), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(988), 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [22976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(984), 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_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2350), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [23023] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22759] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(980), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [23070] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(976), 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2356), 1, + anon_sym_RBRACE, + ACTIONS(2360), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(972), 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(968), 37, - anon_sym_LF, + STATE(1548), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2354), 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(2259), 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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [23211] = 19, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22838] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2239), 1, + ACTIONS(2364), 1, anon_sym_RBRACE, - ACTIONS(2243), 1, + ACTIONS(2368), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1263), 3, + STATE(1549), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2237), 4, + ACTIONS(2362), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -53272,7 +52671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2241), 8, + ACTIONS(2366), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -53281,182 +52680,50 @@ static const uint16_t ts_small_parse_table[] = { 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__concat, - ACTIONS(964), 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [23337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(960), 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [23384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(886), 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [23431] = 19, + [22917] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2247), 1, + ACTIONS(2372), 1, anon_sym_RBRACE, - ACTIONS(2251), 1, + ACTIONS(2376), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1278), 3, + STATE(1535), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2245), 4, + ACTIONS(2370), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -53464,7 +52731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2249), 8, + ACTIONS(2374), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -53473,542 +52740,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [23510] = 3, + [22996] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [23557] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(933), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [23604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(952), 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2356), 1, + anon_sym_RBRACE, + ACTIONS(2378), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 2, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(881), 1, - sym_file_descriptor, - ACTIONS(2253), 1, - sym__concat, - STATE(592), 1, - aux_sym_concatenation_repeat1, - ACTIONS(879), 36, - anon_sym_LF, + STATE(1548), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2354), 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(2259), 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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [23749] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [23075] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(933), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [23796] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2256), 1, - sym__special_character, - STATE(594), 1, + ACTIONS(2382), 1, + anon_sym_RBRACE, + ACTIONS(2386), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(927), 2, - sym_file_descriptor, - sym_variable_name, - 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, - 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, - [23847] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(871), 1, - sym_file_descriptor, - ACTIONS(2259), 1, - sym__concat, - STATE(592), 1, - aux_sym_concatenation_repeat1, - ACTIONS(869), 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, + ACTIONS(1940), 2, 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, - [23898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(920), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(918), 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [23945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(865), 1, - sym_file_descriptor, - ACTIONS(2261), 1, - sym__concat, - 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, - 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, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [23996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(916), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(914), 37, - anon_sym_LF, + STATE(1537), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2380), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2384), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [24043] = 19, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [23154] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2265), 1, + ACTIONS(2390), 1, anon_sym_RBRACE, - ACTIONS(2269), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2394), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1284), 3, + STATE(1530), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2263), 4, + ACTIONS(2388), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54016,7 +52911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2267), 8, + ACTIONS(2392), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54025,50 +52920,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [24122] = 19, + [23233] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2273), 1, + ACTIONS(2398), 1, anon_sym_RBRACE, - ACTIONS(2277), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2402), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1299), 3, + STATE(1543), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2271), 4, + ACTIONS(2396), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54076,7 +52971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 8, + ACTIONS(2400), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54085,50 +52980,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [24201] = 19, + [23312] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2265), 1, + ACTIONS(2406), 1, anon_sym_RBRACE, - ACTIONS(2279), 1, + ACTIONS(2410), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1284), 3, + STATE(1532), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2263), 4, + ACTIONS(2404), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54136,7 +53031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2267), 8, + ACTIONS(2408), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54145,141 +53040,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [24280] = 3, + [23391] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(910), 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [24327] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(856), 1, - anon_sym_LPAREN, - 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, - sym_test_operator, - [24380] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2285), 1, + ACTIONS(2390), 1, anon_sym_RBRACE, - ACTIONS(2289), 1, + ACTIONS(2412), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1329), 3, + STATE(1530), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2283), 4, + ACTIONS(2388), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54287,7 +53091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2287), 8, + ACTIONS(2392), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54296,50 +53100,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [24459] = 19, + [23470] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2293), 1, + ACTIONS(2416), 1, anon_sym_RBRACE, - ACTIONS(2297), 1, + ACTIONS(2420), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(928), 3, + STATE(1527), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2291), 4, + ACTIONS(2414), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54347,7 +53151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2295), 8, + ACTIONS(2418), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54356,50 +53160,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [24538] = 19, + [23549] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2301), 1, + ACTIONS(2424), 1, anon_sym_RBRACE, - ACTIONS(2305), 1, + ACTIONS(2428), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1338), 3, + STATE(1523), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2299), 4, + ACTIONS(2422), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54407,7 +53211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2303), 8, + ACTIONS(2426), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54416,146 +53220,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [24617] = 11, - ACTIONS(3), 1, - sym_comment, - 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(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(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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [24680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 3, - sym_file_descriptor, - sym__concat, - 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, - 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, - [24727] = 19, + [23628] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2319), 1, + ACTIONS(2432), 1, anon_sym_RBRACE, - ACTIONS(2323), 1, + ACTIONS(2436), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1340), 3, + STATE(1541), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2317), 4, + ACTIONS(2430), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54563,7 +53271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2321), 8, + ACTIONS(2434), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54572,50 +53280,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [24806] = 19, + [23707] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2327), 1, + ACTIONS(2440), 1, anon_sym_RBRACE, - ACTIONS(2331), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2444), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1342), 3, + STATE(1533), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2325), 4, + ACTIONS(2438), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54623,7 +53331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2329), 8, + ACTIONS(2442), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54632,138 +53340,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [24885] = 3, + [23786] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(956), 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [24932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [24979] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2335), 1, + ACTIONS(2448), 1, anon_sym_RBRACE, - ACTIONS(2339), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2452), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1348), 3, + STATE(1520), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2333), 4, + ACTIONS(2446), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54771,7 +53391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2337), 8, + ACTIONS(2450), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54780,94 +53400,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [25058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(900), 3, - sym_file_descriptor, - sym__concat, - 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, - 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, - [25105] = 19, + [23865] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2343), 1, + ACTIONS(2456), 1, anon_sym_RBRACE, - ACTIONS(2347), 1, + ACTIONS(2460), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1349), 3, + STATE(1384), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2341), 4, + ACTIONS(2454), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -54875,7 +53451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2345), 8, + ACTIONS(2458), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -54884,184 +53460,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [25184] = 3, + [23944] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [25231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(881), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(2464), 1, + anon_sym_RBRACE, + ACTIONS(2468), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [25278] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(927), 1, - sym_file_descriptor, - ACTIONS(2349), 1, - sym__special_character, - STATE(618), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 36, - anon_sym_LF, + STATE(1510), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2462), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2466), 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, - 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, - [25329] = 19, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24023] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2335), 1, + ACTIONS(2472), 1, anon_sym_RBRACE, - ACTIONS(2352), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2476), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1348), 3, + STATE(1512), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2333), 4, + ACTIONS(2470), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -55069,7 +53571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2337), 8, + ACTIONS(2474), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -55078,50 +53580,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [25408] = 19, + [24102] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2356), 1, + ACTIONS(2480), 1, anon_sym_RBRACE, - ACTIONS(2360), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2484), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1358), 3, + STATE(1505), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2354), 4, + ACTIONS(2478), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -55129,7 +53631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2358), 8, + ACTIONS(2482), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -55138,94 +53640,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [25487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(931), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [25534] = 19, + [24181] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2364), 1, + ACTIONS(2488), 1, anon_sym_RBRACE, - ACTIONS(2368), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2492), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1352), 3, + STATE(1507), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2362), 4, + ACTIONS(2486), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -55233,7 +53691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2366), 8, + ACTIONS(2490), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -55242,138 +53700,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [25613] = 3, + [24260] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2480), 1, + anon_sym_RBRACE, + ACTIONS(2494), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [25660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2372), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(2370), 38, - anon_sym_LF, + STATE(1505), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2478), 4, 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_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2482), 8, 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, - [25707] = 19, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24339] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2376), 1, + ACTIONS(2498), 1, anon_sym_RBRACE, - ACTIONS(2380), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2502), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1366), 3, + STATE(1500), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2374), 4, + ACTIONS(2496), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -55381,7 +53811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2378), 8, + ACTIONS(2500), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -55390,182 +53820,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [25786] = 3, + [24418] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(906), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [25833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 2, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(2506), 1, + anon_sym_RBRACE, + ACTIONS(2510), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(900), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(898), 37, - anon_sym_LF, + STATE(1503), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2504), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2508), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [25927] = 19, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24497] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2384), 1, + ACTIONS(2514), 1, anon_sym_RBRACE, - ACTIONS(2388), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2518), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1369), 3, + STATE(1508), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2382), 4, + ACTIONS(2512), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -55573,7 +53931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2386), 8, + ACTIONS(2516), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -55582,182 +53940,50 @@ static const uint16_t ts_small_parse_table[] = { 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_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, + [24576] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2392), 1, + ACTIONS(2522), 1, anon_sym_RBRACE, - ACTIONS(2396), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2526), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1377), 3, + STATE(1498), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2390), 4, + ACTIONS(2520), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -55765,7 +53991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2394), 8, + ACTIONS(2524), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -55774,138 +54000,50 @@ static const uint16_t ts_small_parse_table[] = { 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_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, + [24655] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2400), 1, + ACTIONS(2530), 1, anon_sym_RBRACE, - ACTIONS(2404), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2534), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1379), 3, + STATE(1496), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2398), 4, + ACTIONS(2528), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -55913,7 +54051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2402), 8, + ACTIONS(2532), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -55922,50 +54060,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [26399] = 19, + [24734] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2408), 1, + ACTIONS(2538), 1, anon_sym_RBRACE, - ACTIONS(2412), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2542), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1381), 3, + STATE(1487), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2406), 4, + ACTIONS(2536), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -55973,7 +54111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2410), 8, + ACTIONS(2540), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -55982,50 +54120,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [26478] = 19, + [24813] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2400), 1, + ACTIONS(2290), 1, anon_sym_RBRACE, - ACTIONS(2414), 1, + ACTIONS(2544), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1379), 3, + STATE(1405), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2398), 4, + ACTIONS(2288), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56033,7 +54171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2402), 8, + ACTIONS(2292), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56042,50 +54180,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [26557] = 19, + [24892] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2418), 1, + ACTIONS(2548), 1, anon_sym_RBRACE, - ACTIONS(2422), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2552), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1393), 3, + STATE(1495), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2416), 4, + ACTIONS(2546), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56093,7 +54231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2420), 8, + ACTIONS(2550), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56102,50 +54240,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [26636] = 19, + [24971] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2426), 1, + ACTIONS(2556), 1, anon_sym_RBRACE, - ACTIONS(2430), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2560), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1383), 3, + STATE(1397), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2424), 4, + ACTIONS(2554), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56153,7 +54291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2428), 8, + ACTIONS(2558), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56162,138 +54300,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [26715] = 3, + [25050] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 2, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2564), 1, + anon_sym_RBRACE, + ACTIONS(2568), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26762] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(881), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(879), 37, - anon_sym_LF, + STATE(1489), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2562), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2566), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [26809] = 19, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [25129] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2434), 1, + ACTIONS(2548), 1, anon_sym_RBRACE, - ACTIONS(2438), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2570), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1399), 3, + STATE(1495), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2432), 4, + ACTIONS(2546), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56301,7 +54411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2436), 8, + ACTIONS(2550), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56310,94 +54420,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [26888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(931), 2, - sym_file_descriptor, - sym__concat, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [26935] = 19, + [25208] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2442), 1, + ACTIONS(2574), 1, anon_sym_RBRACE, - ACTIONS(2446), 1, + ACTIONS(2578), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1401), 3, + STATE(1481), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2440), 4, + ACTIONS(2572), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56405,7 +54471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2444), 8, + ACTIONS(2576), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56414,50 +54480,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27014] = 19, + [25287] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2450), 1, + ACTIONS(2582), 1, anon_sym_RBRACE, - ACTIONS(2454), 1, + ACTIONS(2586), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1406), 3, + STATE(1493), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2448), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56465,7 +54531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2452), 8, + ACTIONS(2584), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56474,94 +54540,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27093] = 3, + [25366] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(937), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2590), 1, + anon_sym_RBRACE, + ACTIONS(2594), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27140] = 19, + STATE(1484), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2588), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2592), 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, + [25445] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2458), 1, + ACTIONS(2598), 1, anon_sym_RBRACE, - ACTIONS(2462), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2602), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1408), 3, + STATE(1483), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2456), 4, + ACTIONS(2596), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56569,7 +54651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2460), 8, + ACTIONS(2600), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56578,102 +54660,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27219] = 11, + [25524] = 19, ACTIONS(3), 1, sym_comment, - 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_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(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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(2606), 1, + anon_sym_RBRACE, + ACTIONS(2610), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27282] = 19, + STATE(1482), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2604), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2608), 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, + [25603] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2468), 1, + ACTIONS(2574), 1, anon_sym_RBRACE, - ACTIONS(2472), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2612), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1409), 3, + STATE(1481), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2466), 4, + ACTIONS(2572), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56681,7 +54771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2470), 8, + ACTIONS(2576), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56690,50 +54780,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27361] = 19, + [25682] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2458), 1, + ACTIONS(2616), 1, anon_sym_RBRACE, - ACTIONS(2474), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2620), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1408), 3, + STATE(1479), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2456), 4, + ACTIONS(2614), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56741,7 +54831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2460), 8, + ACTIONS(2618), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56750,14 +54840,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27440] = 5, + [25761] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(2476), 1, - sym__special_character, - STATE(652), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 13, + ACTIONS(838), 1, + sym__concat, + STATE(1429), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -56771,8 +54861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(927), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(865), 24, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, @@ -56792,54 +54882,54 @@ static const uint16_t ts_small_parse_table[] = { 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, - [27491] = 19, + [25812] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2481), 1, + ACTIONS(2624), 1, anon_sym_RBRACE, - ACTIONS(2485), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2628), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1413), 3, + STATE(1469), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2479), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56847,7 +54937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2483), 8, + ACTIONS(2626), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56856,50 +54946,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27570] = 19, + [25891] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2489), 1, + ACTIONS(2632), 1, anon_sym_RBRACE, - ACTIONS(2493), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2636), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1411), 3, + STATE(1466), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2487), 4, + ACTIONS(2630), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56907,7 +54997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2491), 8, + ACTIONS(2634), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56916,50 +55006,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27649] = 19, + [25970] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2497), 1, + ACTIONS(2640), 1, anon_sym_RBRACE, - ACTIONS(2501), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2644), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1417), 3, + STATE(1452), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2495), 4, + ACTIONS(2638), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -56967,7 +55057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2499), 8, + ACTIONS(2642), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56976,50 +55066,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27728] = 19, + [26049] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2505), 1, + ACTIONS(2648), 1, anon_sym_RBRACE, - ACTIONS(2509), 1, + ACTIONS(2652), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1420), 3, + STATE(1428), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2503), 4, + ACTIONS(2646), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57027,7 +55117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2507), 8, + ACTIONS(2650), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57036,50 +55126,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27807] = 19, + [26128] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2513), 1, + ACTIONS(2656), 1, anon_sym_RBRACE, - ACTIONS(2517), 1, + ACTIONS(2660), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 3, + STATE(1454), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2511), 4, + ACTIONS(2654), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57087,7 +55177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2515), 8, + ACTIONS(2658), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57096,50 +55186,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27886] = 19, + [26207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(861), 1, + sym_file_descriptor, + ACTIONS(2662), 1, + sym__concat, + STATE(1144), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [26260] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2521), 1, + ACTIONS(2666), 1, anon_sym_RBRACE, - ACTIONS(2525), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2670), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1432), 3, + STATE(1444), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2519), 4, + ACTIONS(2664), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57147,7 +55284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2523), 8, + ACTIONS(2668), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57156,50 +55293,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [27965] = 19, + [26339] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2529), 1, + ACTIONS(2674), 1, anon_sym_RBRACE, - ACTIONS(2533), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2678), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1436), 3, + STATE(1096), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2527), 4, + ACTIONS(2672), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57207,7 +55344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2531), 8, + ACTIONS(2676), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57216,50 +55353,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28044] = 19, + [26418] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2521), 1, + ACTIONS(2682), 1, anon_sym_RBRACE, - ACTIONS(2535), 1, + ACTIONS(2686), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1432), 3, + STATE(1370), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2519), 4, + ACTIONS(2680), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57267,7 +55404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2523), 8, + ACTIONS(2684), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57276,50 +55413,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28123] = 19, + [26497] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2539), 1, + ACTIONS(2690), 1, anon_sym_RBRACE, - ACTIONS(2543), 1, + ACTIONS(2694), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1456), 3, + STATE(1389), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2537), 4, + ACTIONS(2688), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57327,7 +55464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2541), 8, + ACTIONS(2692), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57336,50 +55473,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28202] = 19, + [26576] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2547), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - ACTIONS(2551), 1, + ACTIONS(2702), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1440), 3, + STATE(1113), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2545), 4, + ACTIONS(2696), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57387,7 +55524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2549), 8, + ACTIONS(2700), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57396,50 +55533,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28281] = 19, + [26655] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2555), 1, + ACTIONS(2706), 1, anon_sym_RBRACE, - ACTIONS(2559), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2710), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1481), 3, + STATE(1390), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2553), 4, + ACTIONS(2704), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57447,7 +55584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2557), 8, + ACTIONS(2708), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57456,50 +55593,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28360] = 19, + [26734] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2563), 1, + ACTIONS(2714), 1, anon_sym_RBRACE, - ACTIONS(2567), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2718), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1463), 3, + STATE(1373), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2561), 4, + ACTIONS(2712), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57507,7 +55644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2565), 8, + ACTIONS(2716), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57516,50 +55653,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28439] = 19, + [26813] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1017), 1, + ts_builtin_sym_end, + ACTIONS(2720), 1, + anon_sym_LF, + ACTIONS(2728), 1, + anon_sym_LT_LT_LT, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2278), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2724), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2726), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2722), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2403), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [26876] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2571), 1, + ACTIONS(2732), 1, anon_sym_RBRACE, - ACTIONS(2575), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2736), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1466), 3, + STATE(1448), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2569), 4, + ACTIONS(2730), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57567,7 +55756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2573), 8, + ACTIONS(2734), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57576,50 +55765,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28518] = 19, + [26955] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2579), 1, + ACTIONS(2666), 1, anon_sym_RBRACE, - ACTIONS(2583), 1, + ACTIONS(2738), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1470), 3, + STATE(1444), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2577), 4, + ACTIONS(2664), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57627,7 +55816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2581), 8, + ACTIONS(2668), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57636,50 +55825,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28597] = 19, + [27034] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2587), 1, + ACTIONS(2742), 1, anon_sym_RBRACE, - ACTIONS(2591), 1, + ACTIONS(2746), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1471), 3, + STATE(1362), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2585), 4, + ACTIONS(2740), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57687,7 +55876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2589), 8, + ACTIONS(2744), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57696,50 +55885,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28676] = 19, + [27113] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2579), 1, + ACTIONS(2750), 1, anon_sym_RBRACE, - ACTIONS(2593), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2754), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1470), 3, + STATE(1437), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2577), 4, + ACTIONS(2748), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57747,7 +55936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2581), 8, + ACTIONS(2752), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57756,50 +55945,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28755] = 19, + [27192] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2597), 1, + ACTIONS(2758), 1, anon_sym_RBRACE, - ACTIONS(2601), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2762), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1476), 3, + STATE(1427), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2595), 4, + ACTIONS(2756), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57807,7 +55996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2599), 8, + ACTIONS(2760), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57816,50 +56005,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28834] = 19, + [27271] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2605), 1, + ACTIONS(2766), 1, anon_sym_RBRACE, - ACTIONS(2609), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2770), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1473), 3, + STATE(1425), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2603), 4, + ACTIONS(2764), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57867,7 +56056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2607), 8, + ACTIONS(2768), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57876,50 +56065,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28913] = 19, + [27350] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2613), 1, + ACTIONS(2774), 1, anon_sym_RBRACE, - ACTIONS(2617), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2778), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1362), 3, + STATE(1585), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2611), 4, + ACTIONS(2772), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57927,7 +56116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2615), 8, + ACTIONS(2776), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57936,50 +56125,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [28992] = 19, + [27429] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2621), 1, + ACTIONS(2782), 1, anon_sym_RBRACE, - ACTIONS(2625), 1, + ACTIONS(2786), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1482), 3, + STATE(1593), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2619), 4, + ACTIONS(2780), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -57987,7 +56176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2623), 8, + ACTIONS(2784), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -57996,50 +56185,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [29071] = 19, + [27508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(909), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(907), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [27555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(896), 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [27602] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2629), 1, + ACTIONS(2136), 1, anon_sym_RBRACE, - ACTIONS(2633), 1, + ACTIONS(2788), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1484), 3, + STATE(1372), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2627), 4, + ACTIONS(2134), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -58047,7 +56324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2631), 8, + ACTIONS(2138), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -58056,50 +56333,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [29150] = 19, + [27681] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2637), 1, + ACTIONS(2714), 1, anon_sym_RBRACE, - ACTIONS(2641), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2790), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1486), 3, + STATE(1373), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2635), 4, + ACTIONS(2712), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -58107,7 +56384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2639), 8, + ACTIONS(2716), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -58116,50 +56393,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [29229] = 19, + [27760] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2645), 1, + ACTIONS(2794), 1, anon_sym_RBRACE, - ACTIONS(2649), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2798), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1487), 3, + STATE(1408), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2643), 4, + ACTIONS(2792), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -58167,7 +56444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2647), 8, + ACTIONS(2796), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -58176,110 +56453,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [29308] = 19, + [27839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(875), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(873), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - 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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1950), 2, + sym_test_operator, + [27886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(892), 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, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1486), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2635), 4, + sym_word, + sym_test_operator, + [27933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(941), 37, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [29387] = 19, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [27980] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2655), 1, + ACTIONS(2802), 1, anon_sym_RBRACE, - ACTIONS(2659), 1, + ACTIONS(2806), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1491), 3, + STATE(1422), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2653), 4, + ACTIONS(2800), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -58287,7 +56636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2657), 8, + ACTIONS(2804), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -58296,50 +56645,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [29466] = 19, + [28059] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2663), 1, + ACTIONS(2810), 1, anon_sym_RBRACE, - ACTIONS(2667), 1, + ACTIONS(2814), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1489), 3, + STATE(1379), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2661), 4, + ACTIONS(2808), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -58347,7 +56696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2665), 8, + ACTIONS(2812), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -58356,50 +56705,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [29545] = 19, + [28138] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2671), 1, + ACTIONS(2818), 1, anon_sym_RBRACE, - ACTIONS(2675), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2822), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1496), 3, + STATE(1463), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2669), 4, + ACTIONS(2816), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -58407,7 +56756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2673), 8, + ACTIONS(2820), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -58416,50 +56765,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [29624] = 19, + [28217] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2679), 1, + ACTIONS(2826), 1, anon_sym_RBRACE, - ACTIONS(2683), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2830), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1497), 3, + STATE(1412), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2677), 4, + ACTIONS(2824), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -58467,7 +56816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2681), 8, + ACTIONS(2828), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -58476,10 +56825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [29703] = 3, + [28296] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(933), 13, + ACTIONS(1002), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -58493,7 +56842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(935), 26, + ACTIONS(1004), 26, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, @@ -58520,10 +56869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [29750] = 3, + [28343] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(879), 13, + ACTIONS(900), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -58537,7 +56886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(881), 26, + ACTIONS(902), 26, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, @@ -58564,10 +56913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [29797] = 3, + [28390] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(894), 13, + ACTIONS(907), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -58581,7 +56930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(896), 26, + ACTIONS(909), 26, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, @@ -58608,174 +56957,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [29844] = 19, + [28437] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(2832), 1, anon_sym_LPAREN, - ACTIONS(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(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, - STATE(1499), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2685), 4, + ACTIONS(2834), 1, + sym__concat, + STATE(1415), 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_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_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_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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - 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(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, - 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_word, sym_test_operator, - [30049] = 3, + [28490] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(948), 13, + ACTIONS(896), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -58789,7 +57021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(950), 26, + ACTIONS(898), 26, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, @@ -58816,10 +57048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [30096] = 3, + [28537] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(952), 13, + ACTIONS(945), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -58833,7 +57065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(954), 26, + ACTIONS(947), 26, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, @@ -58860,258 +57092,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [30143] = 3, - ACTIONS(59), 1, + [28584] = 3, + ACTIONS(3), 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, + ACTIONS(976), 2, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(974), 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_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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, - ACTIONS(1952), 1, - anon_sym_DOLLAR_LBRACE, - 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, - STATE(1502), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2701), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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, - ACTIONS(1952), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - 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, - 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, - [30395] = 19, + sym_word, + sym_test_operator, + [28631] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2713), 1, + ACTIONS(2838), 1, anon_sym_RBRACE, - ACTIONS(2717), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2842), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1507), 3, + STATE(1332), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2711), 4, + ACTIONS(2836), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59119,7 +57187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2715), 8, + ACTIONS(2840), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59128,50 +57196,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [30474] = 19, + [28710] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2721), 1, + ACTIONS(2846), 1, anon_sym_RBRACE, - ACTIONS(2725), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2850), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1504), 3, + STATE(1396), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2719), 4, + ACTIONS(2844), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59179,7 +57247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2723), 8, + ACTIONS(2848), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59188,41 +57256,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [30553] = 6, + [28789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, + ACTIONS(915), 2, 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(1819), 20, + sym__concat, + ACTIONS(913), 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, @@ -59235,100 +57287,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(1952), 1, - anon_sym_DOLLAR_LBRACE, - 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, - 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(1823), 2, - sym_file_descriptor, - sym_variable_name, - 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_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(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, sym__special_character, @@ -59342,110 +57300,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30738] = 19, + [28836] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2737), 1, + ACTIONS(2854), 1, anon_sym_RBRACE, - ACTIONS(2741), 1, + ACTIONS(2858), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, 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), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2735), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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, - ACTIONS(1952), 1, - anon_sym_DOLLAR_LBRACE, - 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, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1516), 3, + STATE(1401), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2743), 4, + ACTIONS(2852), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59453,7 +57351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2747), 8, + ACTIONS(2856), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59462,12 +57360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [30896] = 3, + [28915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 1, + ACTIONS(2862), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(2370), 38, + ACTIONS(2860), 38, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -59506,50 +57404,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [30943] = 19, + [28962] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2755), 1, + ACTIONS(2846), 1, anon_sym_RBRACE, - ACTIONS(2759), 1, + ACTIONS(2864), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1518), 3, + STATE(1396), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2753), 4, + ACTIONS(2844), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59557,7 +57455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2757), 8, + ACTIONS(2848), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59566,50 +57464,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [31022] = 19, + [29041] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2763), 1, + ACTIONS(2868), 1, anon_sym_RBRACE, - ACTIONS(2767), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2872), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1519), 3, + STATE(1381), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2761), 4, + ACTIONS(2866), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59617,7 +57515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2765), 8, + ACTIONS(2870), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59626,110 +57524,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [31101] = 19, + [29120] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2755), 1, + ACTIONS(2876), 1, anon_sym_RBRACE, - ACTIONS(2769), 1, + ACTIONS(2880), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, - sym_raw_string, - sym_ansi_c_string, ACTIONS(1958), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1518), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2753), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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, - ACTIONS(1952), 1, - anon_sym_DOLLAR_LBRACE, - 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, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1524), 3, + STATE(1367), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2771), 4, + ACTIONS(2874), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59737,7 +57575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2775), 8, + ACTIONS(2878), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59746,50 +57584,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [31259] = 19, + [29199] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2781), 1, + ACTIONS(2884), 1, anon_sym_RBRACE, - ACTIONS(2785), 1, + ACTIONS(2888), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1522), 3, + STATE(1393), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2779), 4, + ACTIONS(2882), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59797,7 +57635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2783), 8, + ACTIONS(2886), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59806,50 +57644,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [31338] = 19, + [29278] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2789), 1, + ACTIONS(2892), 1, anon_sym_RBRACE, - ACTIONS(2793), 1, + ACTIONS(2896), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1528), 3, + STATE(1387), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2787), 4, + ACTIONS(2890), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59857,7 +57695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2791), 8, + ACTIONS(2894), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59866,50 +57704,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [31417] = 19, + [29357] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2797), 1, + ACTIONS(2900), 1, anon_sym_RBRACE, - ACTIONS(2801), 1, + ACTIONS(2904), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1529), 3, + STATE(1363), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2795), 4, + ACTIONS(2898), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59917,7 +57755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2799), 8, + ACTIONS(2902), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59926,50 +57764,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [31496] = 19, + [29436] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2805), 1, + ACTIONS(2908), 1, anon_sym_RBRACE, - ACTIONS(2809), 1, + ACTIONS(2912), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1531), 3, + STATE(1352), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2803), 4, + ACTIONS(2906), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -59977,7 +57815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2807), 8, + ACTIONS(2910), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -59986,230 +57824,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [31575] = 19, + [29515] = 11, 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(2813), 1, - anon_sym_RBRACE, - ACTIONS(2817), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, + ACTIONS(1015), 1, + anon_sym_RPAREN, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(2914), 1, + anon_sym_LF, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, ACTIONS(1932), 2, - sym_number, - 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), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2811), 4, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_PIPE_AMP, + ACTIONS(1934), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1897), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 21, anon_sym_LT, anon_sym_GT, - 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_GT_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, - 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(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, - STATE(1539), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2819), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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, - ACTIONS(1952), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - 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, - 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_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [31812] = 19, + sym_word, + sym_test_operator, + [29578] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2831), 1, + ACTIONS(2918), 1, anon_sym_RBRACE, - ACTIONS(2835), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2922), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1548), 3, + STATE(1385), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2829), 4, + ACTIONS(2916), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60217,7 +57927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2833), 8, + ACTIONS(2920), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60226,50 +57936,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [31891] = 19, + [29657] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2839), 1, + ACTIONS(2926), 1, anon_sym_RBRACE, - ACTIONS(2843), 1, + ACTIONS(2930), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1543), 3, + STATE(1355), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2837), 4, + ACTIONS(2924), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60277,7 +57987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2841), 8, + ACTIONS(2928), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60286,110 +57996,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [31970] = 19, - ACTIONS(3), 1, + [29736] = 5, + ACTIONS(59), 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, + ACTIONS(2932), 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(2847), 1, - anon_sym_RBRACE, - ACTIONS(2851), 1, - anon_sym_SLASH2, - STATE(2285), 1, + STATE(656), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, - sym_word, - ACTIONS(1950), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1958), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2845), 4, - anon_sym_SEMI, + ACTIONS(953), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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, + 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_COLON_QMARK, - anon_sym_COLON_DASH, - [32049] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [29787] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2855), 1, + ACTIONS(2937), 1, anon_sym_RBRACE, - ACTIONS(2859), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2941), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1559), 3, + STATE(1349), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2853), 4, + ACTIONS(2935), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60397,7 +58093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2857), 8, + ACTIONS(2939), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60406,50 +58102,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [32128] = 19, + [29866] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2863), 1, + ACTIONS(2945), 1, anon_sym_RBRACE, - ACTIONS(2867), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2949), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1561), 3, + STATE(1343), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2861), 4, + ACTIONS(2943), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60457,7 +58153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2865), 8, + ACTIONS(2947), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60466,50 +58162,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [32207] = 19, + [29945] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2871), 1, + ACTIONS(2953), 1, anon_sym_RBRACE, - ACTIONS(2875), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(2957), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1563), 3, + STATE(1398), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2869), 4, + ACTIONS(2951), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60517,7 +58213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2873), 8, + ACTIONS(2955), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60526,50 +58222,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [32286] = 19, + [30024] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2879), 1, + ACTIONS(2961), 1, anon_sym_RBRACE, - ACTIONS(2883), 1, + ACTIONS(2965), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1565), 3, + STATE(1399), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2877), 4, + ACTIONS(2959), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60577,7 +58273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2881), 8, + ACTIONS(2963), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60586,50 +58282,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [32365] = 19, + [30103] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2871), 1, + ACTIONS(2937), 1, anon_sym_RBRACE, - ACTIONS(2885), 1, + ACTIONS(2967), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1563), 3, + STATE(1349), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2869), 4, + ACTIONS(2935), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60637,7 +58333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2873), 8, + ACTIONS(2939), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60646,50 +58342,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [32444] = 19, + [30182] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2889), 1, + ACTIONS(2971), 1, anon_sym_RBRACE, - ACTIONS(2893), 1, + ACTIONS(2975), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1592), 3, + STATE(1356), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2887), 4, + ACTIONS(2969), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60697,7 +58393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2891), 8, + ACTIONS(2973), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60706,110 +58402,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [32523] = 19, + [30261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(909), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(907), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - ACTIONS(2897), 1, - anon_sym_RBRACE, - ACTIONS(2901), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1932), 2, + [30308] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + sym__concat, + STATE(845), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1859), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1857), 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, - ACTIONS(1950), 2, + sym_test_operator, + [30359] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + sym__concat, + STATE(840), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1901), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1899), 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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1568), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(2895), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [30410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(896), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [32602] = 19, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [30457] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2905), 1, + ACTIONS(2981), 1, anon_sym_RBRACE, - ACTIONS(2909), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2985), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1610), 3, + STATE(1338), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2903), 4, + ACTIONS(2979), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60817,7 +58633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2907), 8, + ACTIONS(2983), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60826,50 +58642,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [32681] = 19, + [30536] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2913), 1, + ACTIONS(2989), 1, anon_sym_RBRACE, - ACTIONS(2917), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(2993), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1623), 3, + STATE(1359), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2911), 4, + ACTIONS(2987), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60877,7 +58693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2915), 8, + ACTIONS(2991), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60886,50 +58702,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [32760] = 19, + [30615] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2921), 1, + ACTIONS(2997), 1, anon_sym_RBRACE, - ACTIONS(2925), 1, + ACTIONS(3001), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1621), 3, + STATE(1340), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2919), 4, + ACTIONS(2995), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60937,7 +58753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2923), 8, + ACTIONS(2999), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -60946,50 +58762,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [32839] = 19, + [30694] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2929), 1, + ACTIONS(3005), 1, anon_sym_RBRACE, - ACTIONS(2933), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3009), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1619), 3, + STATE(1329), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2927), 4, + ACTIONS(3003), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -60997,7 +58813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2931), 8, + ACTIONS(3007), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61006,94 +58822,50 @@ static const uint16_t ts_small_parse_table[] = { 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_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, + [30773] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2937), 1, + ACTIONS(2953), 1, anon_sym_RBRACE, - ACTIONS(2941), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3011), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1618), 3, + STATE(1398), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2935), 4, + ACTIONS(2951), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61101,7 +58873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2939), 8, + ACTIONS(2955), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61110,226 +58882,50 @@ static const uint16_t ts_small_parse_table[] = { 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_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), 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, - [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_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), 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, - [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_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), 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, - [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_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, + [30852] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2929), 1, + ACTIONS(3015), 1, anon_sym_RBRACE, - ACTIONS(2943), 1, + ACTIONS(3019), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1619), 3, + STATE(1327), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2927), 4, + ACTIONS(3013), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61337,7 +58933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2931), 8, + ACTIONS(3017), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61346,50 +58942,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [33311] = 19, + [30931] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2947), 1, + ACTIONS(3023), 1, anon_sym_RBRACE, - ACTIONS(2951), 1, + ACTIONS(3027), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1614), 3, + STATE(1246), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2945), 4, + ACTIONS(3021), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61397,7 +58993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2949), 8, + ACTIONS(3025), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61406,50 +59002,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [33390] = 19, + [31010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(958), 1, + sym_file_descriptor, + ACTIONS(3029), 1, + sym__special_character, + STATE(674), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + 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, + [31061] = 19, + ACTIONS(3), 1, + sym_comment, ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2955), 1, + ACTIONS(3034), 1, anon_sym_RBRACE, - ACTIONS(2959), 1, + ACTIONS(3038), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1616), 3, + STATE(1325), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2953), 4, + ACTIONS(3032), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61457,7 +59099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2957), 8, + ACTIONS(3036), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61466,50 +59108,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [33469] = 19, + [31140] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2963), 1, + ACTIONS(3042), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3046), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1609), 3, + STATE(1323), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2961), 4, + ACTIONS(3040), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61517,7 +59159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2965), 8, + ACTIONS(3044), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61526,50 +59168,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [33548] = 19, + [31219] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2971), 1, + ACTIONS(3050), 1, anon_sym_RBRACE, - ACTIONS(2975), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3054), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1608), 3, + STATE(1328), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2969), 4, + ACTIONS(3048), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61577,7 +59219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2973), 8, + ACTIONS(3052), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61586,50 +59228,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [33627] = 19, + [31298] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2979), 1, + ACTIONS(3058), 1, anon_sym_RBRACE, - ACTIONS(2983), 1, + ACTIONS(3062), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1606), 3, + STATE(1320), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2977), 4, + ACTIONS(3056), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61637,7 +59279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2981), 8, + ACTIONS(3060), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61646,50 +59288,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [33706] = 19, + [31377] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2987), 1, + ACTIONS(3066), 1, anon_sym_RBRACE, - ACTIONS(2991), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3070), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1604), 3, + STATE(1318), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2985), 4, + ACTIONS(3064), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61697,7 +59339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2989), 8, + ACTIONS(3068), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61706,50 +59348,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [33785] = 19, + [31456] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2995), 1, + ACTIONS(3058), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(3072), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1603), 3, + STATE(1320), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2993), 4, + ACTIONS(3056), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61757,7 +59399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2997), 8, + ACTIONS(3060), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61766,50 +59408,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [33864] = 19, + [31535] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2987), 1, + ACTIONS(3076), 1, anon_sym_RBRACE, - ACTIONS(3001), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3080), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1604), 3, + STATE(1313), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2985), 4, + ACTIONS(3074), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61817,7 +59459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2989), 8, + ACTIONS(3078), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61826,50 +59468,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [33943] = 19, + [31614] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3005), 1, + ACTIONS(3084), 1, anon_sym_RBRACE, - ACTIONS(3009), 1, + ACTIONS(3088), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1596), 3, + STATE(1315), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3003), 4, + ACTIONS(3082), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61877,7 +59519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3007), 8, + ACTIONS(3086), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -61886,110 +59528,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [34022] = 19, + [31693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(875), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(873), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - 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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1950), 2, + sym_test_operator, + [31740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(892), 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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1601), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3011), 4, - anon_sym_SEMI, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [31787] = 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), 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, + [31834] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(873), 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(875), 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, + [31881] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(892), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_LT_LT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(894), 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_COLON_QMARK, - anon_sym_COLON_DASH, - [34101] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [31928] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3021), 1, + ACTIONS(3092), 1, anon_sym_RBRACE, - ACTIONS(3025), 1, + ACTIONS(3096), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1591), 3, + STATE(1348), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3019), 4, + ACTIONS(3090), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -61997,7 +59799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3023), 8, + ACTIONS(3094), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62006,50 +59808,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [34180] = 19, + [32007] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3029), 1, + ACTIONS(3100), 1, anon_sym_RBRACE, - ACTIONS(3033), 1, + ACTIONS(3104), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 3, + STATE(1284), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3027), 4, + ACTIONS(3098), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -62057,7 +59859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3031), 8, + ACTIONS(3102), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62066,170 +59868,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [34259] = 19, - ACTIONS(3), 1, + [32086] = 3, + ACTIONS(59), 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, + ACTIONS(941), 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(943), 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, - 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, - STATE(1588), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3035), 4, - anon_sym_SEMI, + [32133] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(964), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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_COLON_QMARK, - anon_sym_COLON_DASH, - [34338] = 19, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [32180] = 3, + ACTIONS(59), 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, + 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), 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, - 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, - STATE(1586), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3043), 4, - anon_sym_SEMI, + [32227] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(960), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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), 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_COLON_QMARK, - anon_sym_COLON_DASH, - [34417] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [32274] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(974), 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(976), 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, + [32321] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3053), 1, + ACTIONS(3108), 1, anon_sym_RBRACE, - ACTIONS(3057), 1, + ACTIONS(3112), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1585), 3, + STATE(1334), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3051), 4, + ACTIONS(3106), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -62237,7 +60139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3055), 8, + ACTIONS(3110), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62246,50 +60148,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [34496] = 19, + [32400] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3045), 1, + ACTIONS(3116), 1, anon_sym_RBRACE, - ACTIONS(3059), 1, + ACTIONS(3120), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1586), 3, + STATE(1300), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3043), 4, + ACTIONS(3114), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -62297,7 +60199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3047), 8, + ACTIONS(3118), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62306,50 +60208,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [34575] = 19, + [32479] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3063), 1, + ACTIONS(3124), 1, anon_sym_RBRACE, - ACTIONS(3067), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3128), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1581), 3, + STATE(1298), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3061), 4, + ACTIONS(3122), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -62357,7 +60259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3065), 8, + ACTIONS(3126), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62366,50 +60268,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [34654] = 19, + [32558] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3071), 1, + ACTIONS(3132), 1, anon_sym_RBRACE, - ACTIONS(3075), 1, + ACTIONS(3136), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1583), 3, + STATE(1364), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3069), 4, + ACTIONS(3130), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -62417,7 +60319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3073), 8, + ACTIONS(3134), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62426,110 +60328,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [34733] = 19, + [32637] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1820), 1, + sym_file_descriptor, + ACTIONS(1822), 1, + sym_variable_name, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 13, 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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1576), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3077), 4, + sym_word, + sym_test_operator, + ACTIONS(1818), 20, + anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_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_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [34812] = 19, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [32690] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3087), 1, + ACTIONS(3140), 1, anon_sym_RBRACE, - ACTIONS(3091), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3144), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1575), 3, + STATE(1226), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3085), 4, + ACTIONS(3138), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -62537,7 +60426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3089), 8, + ACTIONS(3142), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62546,110 +60435,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [34891] = 19, + [32769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1932), 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(1838), 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(1816), 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, - 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(3095), 1, - anon_sym_RBRACE, - ACTIONS(3099), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1573), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3093), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [34970] = 19, + sym_word, + sym_test_operator, + [32822] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3103), 1, + ACTIONS(3148), 1, anon_sym_RBRACE, - ACTIONS(3107), 1, + ACTIONS(3152), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1571), 3, + STATE(1188), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3101), 4, + ACTIONS(3146), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -62657,7 +60533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3105), 8, + ACTIONS(3150), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62666,226 +60542,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [35049] = 3, - ACTIONS(59), 1, + [32901] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(968), 13, + ACTIONS(943), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(941), 36, + anon_sym_LF, + 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [35096] = 3, - ACTIONS(59), 1, + [32948] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(972), 13, + ACTIONS(976), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(974), 36, + anon_sym_LF, + 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(974), 26, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [32995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(980), 2, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(978), 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_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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(978), 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [35190] = 3, - ACTIONS(59), 1, + [33042] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(980), 13, + ACTIONS(915), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(913), 36, + anon_sym_LF, + 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [35237] = 19, + [33089] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3111), 1, + ACTIONS(3156), 1, anon_sym_RBRACE, - ACTIONS(3115), 1, + ACTIONS(3160), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1569), 3, + STATE(1273), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3109), 4, + ACTIONS(3154), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -62893,7 +60769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3113), 8, + ACTIONS(3158), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62902,50 +60778,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [35316] = 19, + [33168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3103), 1, + ACTIONS(3164), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(3168), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1571), 3, + STATE(1296), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3101), 4, + ACTIONS(3162), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -62953,7 +60829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3105), 8, + ACTIONS(3166), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -62962,50 +60838,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [35395] = 19, + [33247] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3121), 1, + ACTIONS(3172), 1, anon_sym_RBRACE, - ACTIONS(3125), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3176), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1550), 3, + STATE(1310), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3119), 4, + ACTIONS(3170), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63013,7 +60889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3123), 8, + ACTIONS(3174), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63022,50 +60898,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [35474] = 19, + [33326] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3129), 1, + ACTIONS(3164), 1, anon_sym_RBRACE, - ACTIONS(3133), 1, + ACTIONS(3178), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1553), 3, + STATE(1296), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3127), 4, + ACTIONS(3162), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63073,7 +60949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3131), 8, + ACTIONS(3166), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63082,50 +60958,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [35553] = 19, + [33405] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3137), 1, + ACTIONS(3182), 1, anon_sym_RBRACE, - ACTIONS(3141), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3186), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1542), 3, + STATE(1294), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3135), 4, + ACTIONS(3180), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63133,7 +61009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3139), 8, + ACTIONS(3184), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63142,50 +61018,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [35632] = 19, + [33484] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3145), 1, + ACTIONS(3190), 1, anon_sym_RBRACE, - ACTIONS(3149), 1, + ACTIONS(3194), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1538), 3, + STATE(1267), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3143), 4, + ACTIONS(3188), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63193,7 +61069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3147), 8, + ACTIONS(3192), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63202,50 +61078,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [35711] = 19, + [33563] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3153), 1, + ACTIONS(3198), 1, anon_sym_RBRACE, - ACTIONS(3157), 1, + ACTIONS(3202), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1535), 3, + STATE(1245), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3151), 4, + ACTIONS(3196), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63253,7 +61129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3155), 8, + ACTIONS(3200), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63262,96 +61138,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [35790] = 5, - ACTIONS(59), 1, + [33642] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(792), 1, - sym__concat, - STATE(1421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 13, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3206), 1, + anon_sym_RBRACE, + ACTIONS(3210), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1287), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3204), 4, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3208), 8, 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, - [35841] = 19, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33721] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3161), 1, + ACTIONS(3214), 1, anon_sym_RBRACE, - ACTIONS(3165), 1, + ACTIONS(3218), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1520), 3, + STATE(1208), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3159), 4, + ACTIONS(3212), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63359,7 +61249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3163), 8, + ACTIONS(3216), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63368,50 +61258,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [35920] = 19, + [33800] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3169), 1, + ACTIONS(3222), 1, anon_sym_RBRACE, - ACTIONS(3173), 1, + ACTIONS(3226), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1515), 3, + STATE(1285), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3167), 4, + ACTIONS(3220), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63419,7 +61309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3171), 8, + ACTIONS(3224), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63428,226 +61318,50 @@ static const uint16_t ts_small_parse_table[] = { 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_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), 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_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), 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, - [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_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), 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, - [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_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, + [33879] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3161), 1, + ACTIONS(3230), 1, anon_sym_RBRACE, - ACTIONS(3175), 1, + ACTIONS(3234), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1520), 3, + STATE(1260), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3159), 4, + ACTIONS(3228), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63655,7 +61369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3163), 8, + ACTIONS(3232), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63664,50 +61378,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [36266] = 19, + [33958] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3179), 1, + ACTIONS(3238), 1, anon_sym_RBRACE, - ACTIONS(3183), 1, + ACTIONS(3242), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1475), 3, + STATE(1244), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3177), 4, + ACTIONS(3236), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63715,7 +61429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3181), 8, + ACTIONS(3240), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63724,50 +61438,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [36345] = 19, + [34037] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3187), 1, + ACTIONS(3246), 1, anon_sym_RBRACE, - ACTIONS(3191), 1, + ACTIONS(3250), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1506), 3, + STATE(1293), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3185), 4, + ACTIONS(3244), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63775,7 +61489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3189), 8, + ACTIONS(3248), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63784,50 +61498,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [36424] = 19, + [34116] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3195), 1, + ACTIONS(3254), 1, anon_sym_RBRACE, - ACTIONS(3199), 1, + ACTIONS(3258), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1452), 3, + STATE(1180), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3193), 4, + ACTIONS(3252), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63835,7 +61549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3197), 8, + ACTIONS(3256), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63844,50 +61558,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [36503] = 19, + [34195] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3203), 1, + ACTIONS(3262), 1, anon_sym_RBRACE, - ACTIONS(3207), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3266), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1451), 3, + STATE(1299), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3201), 4, + ACTIONS(3260), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63895,7 +61609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3205), 8, + ACTIONS(3264), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63904,50 +61618,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [36582] = 19, + [34274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1004), 2, + sym_file_descriptor, + 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, + 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [34321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(900), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [34368] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + sym_file_descriptor, + ACTIONS(3268), 1, + sym__concat, + STATE(740), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 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, + [34419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(947), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(945), 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [34466] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3211), 1, + ACTIONS(3148), 1, anon_sym_RBRACE, - ACTIONS(3215), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3270), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1449), 3, + STATE(1188), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3209), 4, + ACTIONS(3146), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -63955,7 +61847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3213), 8, + ACTIONS(3150), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -63964,50 +61856,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [36661] = 19, + [34545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(869), 1, + sym_file_descriptor, + ACTIONS(3272), 1, + sym__concat, + STATE(740), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [34596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3274), 1, + sym__special_character, + STATE(728), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(953), 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, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [34647] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3219), 1, + ACTIONS(3279), 1, anon_sym_RBRACE, - ACTIONS(3223), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3283), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1447), 3, + STATE(1277), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3217), 4, + ACTIONS(3277), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64015,7 +61999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3221), 8, + ACTIONS(3281), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64024,10 +62008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [36740] = 3, + [34726] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(1002), 13, + ACTIONS(978), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -64041,7 +62025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1004), 26, + ACTIONS(980), 26, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, @@ -64068,10 +62052,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [36787] = 3, + [34773] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, + sym__special_character, + STATE(728), 1, + aux_sym__literal_repeat1, + ACTIONS(1859), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1857), 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, + 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, + [34824] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(902), 13, + ACTIONS(913), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -64085,7 +62115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(904), 26, + ACTIONS(915), 26, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, @@ -64112,170 +62142,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [36834] = 19, - ACTIONS(3), 1, + [34871] = 3, + ACTIONS(59), 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(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, - STATE(1446), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3225), 4, - anon_sym_SEMI, + ACTIONS(982), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_LT_LT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(984), 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_COLON_QMARK, - anon_sym_COLON_DASH, - [36913] = 19, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [34918] = 3, + ACTIONS(59), 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, + ACTIONS(986), 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(988), 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, - 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, - STATE(1447), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3217), 4, - anon_sym_SEMI, + [34965] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(990), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_LT_LT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(992), 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_COLON_QMARK, - anon_sym_COLON_DASH, - [36992] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [35012] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3237), 1, + ACTIONS(3289), 1, anon_sym_RBRACE, - ACTIONS(3241), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3293), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1442), 3, + STATE(1282), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3235), 4, + ACTIONS(3287), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64283,7 +62325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3239), 8, + ACTIONS(3291), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64292,50 +62334,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37071] = 19, + [35091] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3245), 1, + ACTIONS(3297), 1, anon_sym_RBRACE, - ACTIONS(3249), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3301), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1444), 3, + STATE(1206), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3243), 4, + ACTIONS(3295), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64343,7 +62385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3247), 8, + ACTIONS(3299), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64352,110 +62394,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37150] = 19, + [35170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 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, - 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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - 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_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [37229] = 19, + sym_word, + sym_test_operator, + [35217] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3261), 1, + ACTIONS(3279), 1, anon_sym_RBRACE, - ACTIONS(3265), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3303), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1434), 3, + STATE(1277), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3259), 4, + ACTIONS(3277), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64463,7 +62489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3263), 8, + ACTIONS(3281), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64472,110 +62498,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37308] = 19, + [35296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(875), 1, + sym_file_descriptor, + ACTIONS(3305), 1, + sym__concat, + STATE(740), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 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(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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1427), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3267), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [37387] = 19, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [35347] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3277), 1, + ACTIONS(3310), 1, anon_sym_RBRACE, - ACTIONS(3281), 1, + ACTIONS(3314), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1423), 3, + STATE(1270), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3275), 4, + ACTIONS(3308), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64583,7 +62595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3279), 8, + ACTIONS(3312), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64592,50 +62604,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37466] = 19, + [35426] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3285), 1, + ACTIONS(3318), 1, anon_sym_RBRACE, - ACTIONS(3289), 1, + ACTIONS(3322), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1564), 3, + STATE(1200), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3283), 4, + ACTIONS(3316), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64643,7 +62655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3287), 8, + ACTIONS(3320), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64652,50 +62664,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37545] = 19, + [35505] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3293), 1, + ACTIONS(3326), 1, anon_sym_RBRACE, - ACTIONS(3297), 1, + ACTIONS(3330), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1400), 3, + STATE(1266), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3291), 4, + ACTIONS(3324), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64703,7 +62715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3295), 8, + ACTIONS(3328), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64712,50 +62724,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37624] = 19, + [35584] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3301), 1, + ACTIONS(3214), 1, anon_sym_RBRACE, - ACTIONS(3305), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3332), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1540), 3, + STATE(1208), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3299), 4, + ACTIONS(3212), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64763,7 +62775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3303), 8, + ACTIONS(3216), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64772,50 +62784,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37703] = 19, + [35663] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3277), 1, + ACTIONS(3336), 1, anon_sym_RBRACE, - ACTIONS(3307), 1, + ACTIONS(3340), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1423), 3, + STATE(1265), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3275), 4, + ACTIONS(3334), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64823,7 +62835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3279), 8, + ACTIONS(3338), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64832,50 +62844,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37782] = 19, + [35742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(966), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(964), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [35789] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3311), 1, + ACTIONS(3344), 1, anon_sym_RBRACE, - ACTIONS(3315), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3348), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1390), 3, + STATE(1148), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3309), 4, + ACTIONS(3342), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64883,7 +62939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3313), 8, + ACTIONS(3346), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64892,50 +62948,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37861] = 19, + [35868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3319), 1, + ACTIONS(3318), 1, anon_sym_RBRACE, - ACTIONS(3323), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3350), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1392), 3, + STATE(1200), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3317), 4, + ACTIONS(3316), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -64943,7 +62999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3321), 8, + ACTIONS(3320), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -64952,50 +63008,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [37940] = 19, + [35947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(970), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(968), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [35994] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3327), 1, + ACTIONS(3354), 1, anon_sym_RBRACE, - ACTIONS(3331), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3358), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1372), 3, + STATE(928), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3325), 4, + ACTIONS(3352), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65003,7 +63103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3329), 8, + ACTIONS(3356), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65012,50 +63112,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [38019] = 19, + [36073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [36120] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3335), 1, + ACTIONS(3362), 1, anon_sym_RBRACE, - ACTIONS(3339), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3366), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1370), 3, + STATE(1286), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3333), 4, + ACTIONS(3360), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65063,7 +63207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3337), 8, + ACTIONS(3364), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65072,110 +63216,710 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [38098] = 19, + [36199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(980), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(978), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - ACTIONS(3343), 1, - anon_sym_RBRACE, - ACTIONS(3347), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1932), 2, + [36246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(984), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(982), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [36293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(988), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(986), 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, + sym__special_character, + anon_sym_DQUOTE, + 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(1950), 2, + sym_test_operator, + [36340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(992), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(990), 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, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1364), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3341), 4, + sym_word, + sym_test_operator, + [36387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 2, + sym_file_descriptor, + 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, + 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, + [36434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 2, + sym_file_descriptor, + 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [36481] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(994), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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), 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_COLON_QMARK, - anon_sym_COLON_DASH, - [38177] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [36528] = 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), 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, + [36575] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(888), 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(890), 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, + [36622] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(949), 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(951), 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, + [36669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(890), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(888), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [36716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(951), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(949), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [36763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(937), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [36810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [36857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 2, + sym_file_descriptor, + sym__concat, + 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_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(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [36904] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2613), 1, + ACTIONS(3370), 1, anon_sym_RBRACE, - ACTIONS(3349), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3374), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1362), 3, + STATE(1240), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2611), 4, + ACTIONS(3368), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65183,7 +63927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2615), 8, + ACTIONS(3372), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65192,50 +63936,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [38256] = 19, + [36983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(927), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(925), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [37030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(921), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [37077] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3353), 1, + ACTIONS(3378), 1, anon_sym_RBRACE, - ACTIONS(3357), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3382), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1359), 3, + STATE(1249), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3351), 4, + ACTIONS(3376), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65243,7 +64075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3355), 8, + ACTIONS(3380), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65252,274 +64084,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [38335] = 3, + [37156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(2370), 38, + ACTIONS(919), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(917), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [37203] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(937), 13, + anon_sym_PIPE, 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_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, + [37250] = 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, + [37297] = 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, + [37344] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(925), 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(927), 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, - [38382] = 19, + [37391] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(3384), 1, + sym__concat, + STATE(724), 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, + 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(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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1353), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3361), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [37442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1002), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1355), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3369), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [37489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(900), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1339), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3377), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [38619] = 19, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [37536] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3387), 1, + ACTIONS(3388), 1, anon_sym_RBRACE, - ACTIONS(3391), 1, + ACTIONS(3392), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1335), 3, + STATE(1239), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3385), 4, + ACTIONS(3386), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65527,7 +64489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3389), 8, + ACTIONS(3390), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65536,50 +64498,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [38698] = 19, + [37615] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3395), 1, + ACTIONS(3396), 1, anon_sym_RBRACE, - ACTIONS(3399), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3400), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1332), 3, + STATE(1129), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3393), 4, + ACTIONS(3394), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65587,7 +64549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3397), 8, + ACTIONS(3398), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65596,16 +64558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [38777] = 5, + [37694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(178), 1, + ACTIONS(3402), 1, + sym__concat, + STATE(794), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, sym_file_descriptor, - ACTIONS(3401), 1, - sym__special_character, - STATE(618), 1, - aux_sym__literal_repeat1, - ACTIONS(151), 36, + sym_variable_name, + ACTIONS(880), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -65616,8 +64579,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, @@ -65632,6 +64593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -65642,50 +64604,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38828] = 19, + [37745] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3405), 1, + ACTIONS(3388), 1, anon_sym_RBRACE, - ACTIONS(3409), 1, + ACTIONS(3404), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1330), 3, + STATE(1239), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3403), 4, + ACTIONS(3386), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65693,7 +64655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3407), 8, + ACTIONS(3390), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65702,153 +64664,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [38907] = 19, - ACTIONS(3), 1, + [37824] = 3, + ACTIONS(59), 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(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, - STATE(1328), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3411), 4, - anon_sym_SEMI, + ACTIONS(921), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_LT_LT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [38986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(854), 39, - anon_sym_LF, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(923), 26, + sym__concat, anon_sym_RPAREN_RPAREN, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - anon_sym_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, + [37871] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(917), 13, + anon_sym_PIPE, + anon_sym_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_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(919), 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, anon_sym_PERCENT_EQ, anon_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, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [39031] = 19, + [37918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(947), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(945), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [37965] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3405), 1, + ACTIONS(3408), 1, anon_sym_RBRACE, - ACTIONS(3419), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3412), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1330), 3, + STATE(1237), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3403), 4, + ACTIONS(3406), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65856,7 +64847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3407), 8, + ACTIONS(3410), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65865,50 +64856,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [39110] = 19, + [38044] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(3414), 1, + sym__concat, + STATE(794), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(867), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [38095] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3423), 1, + ACTIONS(3418), 1, anon_sym_RBRACE, - ACTIONS(3427), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3422), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1324), 3, + STATE(1235), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3421), 4, + ACTIONS(3416), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65916,7 +64953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3425), 8, + ACTIONS(3420), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65925,50 +64962,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [39189] = 19, + [38174] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3431), 1, + ACTIONS(3426), 1, anon_sym_RBRACE, - ACTIONS(3435), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3430), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1326), 3, + STATE(1232), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3429), 4, + ACTIONS(3424), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -65976,7 +65013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3433), 8, + ACTIONS(3428), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -65985,170 +65022,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [39268] = 19, + [38253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + 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, + 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - 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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1950), 2, + sym_test_operator, + [38300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + sym__concat, + STATE(788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1859), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1857), 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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1318), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3437), 4, + sym_word, + sym_test_operator, + [38351] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + sym__concat, + STATE(782), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1901), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1899), 35, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [39347] = 19, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [38402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(3434), 1, + sym__concat, + STATE(794), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(873), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, 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, + [38453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + 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, + sym__special_character, + anon_sym_DQUOTE, + 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, - ACTIONS(1950), 2, + sym_test_operator, + [38500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 3, + sym_file_descriptor, + sym__concat, + 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, + 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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1317), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3445), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [38547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(960), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [39426] = 19, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [38594] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3455), 1, + ACTIONS(3439), 1, anon_sym_RBRACE, - ACTIONS(3459), 1, + ACTIONS(3443), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1315), 3, + STATE(1217), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3453), 4, + ACTIONS(3437), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -66156,7 +65387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3457), 8, + ACTIONS(3441), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -66165,17 +65396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [39505] = 5, + [38673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - sym__special_character, - STATE(594), 1, - aux_sym__literal_repeat1, - ACTIONS(1899), 2, + ACTIONS(984), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1897), 35, + ACTIONS(982), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -66200,6 +65428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -66211,16 +65440,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39556] = 5, + [38720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, - sym__concat, - ACTIONS(3465), 1, + ACTIONS(988), 3, sym_file_descriptor, - STATE(597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3463), 36, + sym__concat, + sym_variable_name, + ACTIONS(986), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -66257,16 +65484,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39607] = 5, + [38767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, - sym__concat, - ACTIONS(3469), 1, + ACTIONS(992), 3, sym_file_descriptor, - STATE(595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3467), 36, + sym__concat, + sym_variable_name, + ACTIONS(990), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -66303,110 +65528,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39658] = 19, + [38814] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3473), 1, + ACTIONS(3447), 1, anon_sym_RBRACE, - ACTIONS(3477), 1, + ACTIONS(3451), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, 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), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3471), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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, - ACTIONS(1952), 1, - anon_sym_DOLLAR_LBRACE, - 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, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1311), 3, + STATE(1198), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3479), 4, + ACTIONS(3445), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -66414,7 +65579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3483), 8, + ACTIONS(3449), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -66423,110 +65588,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [39816] = 19, - ACTIONS(3), 1, + [38893] = 5, + ACTIONS(59), 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, + ACTIONS(3453), 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(3473), 1, - anon_sym_RBRACE, - ACTIONS(3487), 1, - anon_sym_SLASH2, - STATE(2285), 1, + STATE(656), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, - 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), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3471), 4, - anon_sym_SEMI, + ACTIONS(153), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_LT_LT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + 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_COLON_QMARK, - anon_sym_COLON_DASH, - [39895] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [38944] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3491), 1, + ACTIONS(3457), 1, anon_sym_RBRACE, - ACTIONS(3495), 1, + ACTIONS(3461), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1307), 3, + STATE(1201), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3489), 4, + ACTIONS(3455), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -66534,7 +65685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3493), 8, + ACTIONS(3459), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -66543,439 +65694,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [39974] = 19, + [39023] = 3, 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(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, - STATE(1309), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3497), 4, + ACTIONS(996), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(994), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(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(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, - 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(1936), 1, - anon_sym_LPAREN, - ACTIONS(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, + sym_number, 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(1932), 2, - sym_number, - 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_RPAREN, - anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [40211] = 19, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [39070] = 3, 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(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, - STATE(1295), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3521), 4, + ACTIONS(1000), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(998), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [40290] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1293), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3529), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [39117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(890), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(888), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1292), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3537), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [39164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(951), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(949), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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_RPAREN, - anon_sym_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, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [39211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - sym__concat, - STATE(534), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1884), 2, + ACTIONS(939), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1882), 35, + ACTIONS(937), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -67009,19 +65914,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40578] = 5, + [39258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - sym__concat, - STATE(535), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1871), 2, + ACTIONS(935), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1869), 35, + ACTIONS(933), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -67055,257 +65958,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40629] = 19, + [39305] = 5, 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, + ACTIONS(178), 1, + sym_file_descriptor, + ACTIONS(3463), 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, + STATE(674), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, - 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, + ACTIONS(151), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(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(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, - 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(1936), 1, - anon_sym_LPAREN, - ACTIONS(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, + sym_number, 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(1932), 2, - sym_number, - 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, + sym_word, + sym_test_operator, + [39356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(929), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - 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, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [39403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - sym__special_character, - STATE(594), 1, - aux_sym__literal_repeat1, - ACTIONS(1884), 2, + ACTIONS(927), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1882), 35, + ACTIONS(925), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -67330,6 +66080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -67341,230 +66092,181 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40996] = 19, + [39450] = 2, 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(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, - STATE(1277), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3579), 4, + ACTIONS(854), 39, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [41075] = 19, + anon_sym_PERCENT_EQ, + anon_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, + [39495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(923), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(921), 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(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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1275), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3587), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [39542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(919), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(917), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_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, - ACTIONS(1952), 1, - anon_sym_DOLLAR_LBRACE, - 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, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1273), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3595), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [41233] = 19, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [39589] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3589), 1, + ACTIONS(3467), 1, anon_sym_RBRACE, - ACTIONS(3603), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3471), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1275), 3, + STATE(1220), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3587), 4, + ACTIONS(3465), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -67572,7 +66274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3591), 8, + ACTIONS(3469), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -67581,16 +66283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [41312] = 5, + [39668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(3432), 1, + sym__concat, + STATE(782), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, sym_file_descriptor, - ACTIONS(3401), 1, - sym__special_character, - STATE(618), 1, - aux_sym__literal_repeat1, - ACTIONS(1873), 36, + sym_variable_name, + ACTIONS(863), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -67601,8 +66304,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, @@ -67617,6 +66318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -67627,50 +66329,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41363] = 19, + [39719] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3607), 1, + ACTIONS(3475), 1, anon_sym_RBRACE, - ACTIONS(3611), 1, + ACTIONS(3479), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1267), 3, + STATE(1103), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3605), 4, + ACTIONS(3473), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -67678,7 +66380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3609), 8, + ACTIONS(3477), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -67687,50 +66389,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [41442] = 19, + [39798] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3615), 1, + ACTIONS(3483), 1, anon_sym_RBRACE, - ACTIONS(3619), 1, + ACTIONS(3487), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1269), 3, + STATE(1223), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3613), 4, + ACTIONS(3481), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -67738,7 +66440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3617), 8, + ACTIONS(3485), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -67747,50 +66449,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [41521] = 19, + [39877] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3623), 1, + ACTIONS(3491), 1, anon_sym_RBRACE, - ACTIONS(3627), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3495), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1262), 3, + STATE(1120), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3621), 4, + ACTIONS(3489), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -67798,7 +66500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3625), 8, + ACTIONS(3493), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -67807,50 +66509,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [41600] = 19, + [39956] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3631), 1, + ACTIONS(3499), 1, anon_sym_RBRACE, - ACTIONS(3635), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3503), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1261), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3629), 4, + ACTIONS(3497), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -67858,7 +66560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3633), 8, + ACTIONS(3501), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -67867,17 +66569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [41679] = 5, + [40035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - sym__concat, - STATE(563), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1884), 2, + ACTIONS(3285), 1, + sym__special_character, + STATE(728), 1, + aux_sym__literal_repeat1, + ACTIONS(1913), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1882), 35, + ACTIONS(1911), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -67902,7 +66604,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -67911,19 +66612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41730] = 5, + [40086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(3384), 1, sym__concat, - STATE(566), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1871), 2, + ACTIONS(3507), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(1869), 35, + STATE(724), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3505), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -67957,112 +66658,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41781] = 19, + [40137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(3384), 1, + sym__concat, + ACTIONS(3511), 1, + sym_file_descriptor, + STATE(727), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3509), 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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1257), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3637), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [40188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3513), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(2860), 38, + anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_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_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [41860] = 19, + anon_sym_PERCENT_EQ, + anon_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, + [40235] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3647), 1, + ACTIONS(3517), 1, anon_sym_RBRACE, - ACTIONS(3651), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3521), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1252), 3, + STATE(1182), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3645), 4, + ACTIONS(3515), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68070,7 +66802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3649), 8, + ACTIONS(3519), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68079,50 +66811,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [41939] = 19, + [40314] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3655), 1, + ACTIONS(3525), 1, anon_sym_RBRACE, - ACTIONS(3659), 1, + ACTIONS(3529), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1251), 3, + STATE(1189), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3653), 4, + ACTIONS(3523), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68130,7 +66862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3657), 8, + ACTIONS(3527), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68139,14 +66871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42018] = 5, + [40393] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(772), 1, sym__concat, - STATE(448), 1, + STATE(486), 1, aux_sym_concatenation_repeat1, - ACTIONS(875), 14, + ACTIONS(863), 14, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -68161,7 +66893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, sym__special_character, - ACTIONS(877), 23, + ACTIONS(865), 23, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK_RBRACK, @@ -68185,50 +66917,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [42069] = 19, + [40444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(882), 1, + sym_file_descriptor, + ACTIONS(3531), 1, + sym__concat, + STATE(836), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [40495] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3647), 1, + ACTIONS(3535), 1, anon_sym_RBRACE, - ACTIONS(3661), 1, + ACTIONS(3539), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1252), 3, + STATE(1194), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3645), 4, + ACTIONS(3533), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68236,7 +67014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3649), 8, + ACTIONS(3537), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68245,50 +67023,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42148] = 19, + [40574] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3665), 1, + ACTIONS(3543), 1, anon_sym_RBRACE, - ACTIONS(3669), 1, + ACTIONS(3547), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1247), 3, + STATE(1133), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3663), 4, + ACTIONS(3541), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68296,7 +67074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3667), 8, + ACTIONS(3545), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68305,50 +67083,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42227] = 19, + [40653] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3673), 1, + ACTIONS(3551), 1, anon_sym_RBRACE, - ACTIONS(3677), 1, + ACTIONS(3555), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1249), 3, + STATE(1138), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3671), 4, + ACTIONS(3549), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68356,7 +67134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3675), 8, + ACTIONS(3553), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68365,140 +67143,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42306] = 4, + [40732] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 3, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3679), 7, + ACTIONS(869), 1, + sym_file_descriptor, + ACTIONS(3557), 1, + sym__concat, + STATE(836), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 36, anon_sym_LF, - anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3681), 29, anon_sym_PIPE, + anon_sym_SEMI_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_PLUS_EQ, + 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_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_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [42355] = 4, + [40783] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 3, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3679), 7, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3517), 1, + anon_sym_RBRACE, + ACTIONS(3559), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1182), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3515), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3519), 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, + [40862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 1, + sym_file_descriptor, + ACTIONS(3561), 1, + sym__concat, + STATE(836), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 36, anon_sym_LF, - anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3681), 29, anon_sym_PIPE, + anon_sym_SEMI_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_PLUS_EQ, + 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_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_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [42404] = 19, + [40913] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3687), 1, + ACTIONS(3566), 1, anon_sym_RBRACE, - ACTIONS(3691), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3570), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1212), 3, + STATE(1178), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3685), 4, + ACTIONS(3564), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68506,7 +67346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3689), 8, + ACTIONS(3568), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68515,50 +67355,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42483] = 19, + [40992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(1921), 1, + sym__concat, + STATE(830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [41043] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3695), 1, + ACTIONS(3574), 1, anon_sym_RBRACE, - ACTIONS(3699), 1, + ACTIONS(3578), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1189), 3, + STATE(1143), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3693), 4, + ACTIONS(3572), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68566,7 +67452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3697), 8, + ACTIONS(3576), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68575,50 +67461,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42562] = 19, + [41122] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(3580), 1, + sym__concat, + STATE(859), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(880), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [41173] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3703), 1, + ACTIONS(3584), 1, anon_sym_RBRACE, - ACTIONS(3707), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3588), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1187), 3, + STATE(1130), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3701), 4, + ACTIONS(3582), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68626,7 +67558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3705), 8, + ACTIONS(3586), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68635,42 +67567,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42641] = 2, - ACTIONS(3), 1, + [41252] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(3709), 39, - anon_sym_LF, - anon_sym_RPAREN_RPAREN, - anon_sym_SEMI, + ACTIONS(810), 1, + sym__concat, + STATE(1105), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 14, 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_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + sym__special_character, + 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, anon_sym_PERCENT_EQ, anon_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, @@ -68678,50 +67613,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [42686] = 19, + [41303] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3713), 1, + ACTIONS(3592), 1, anon_sym_RBRACE, - ACTIONS(3717), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3596), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1180), 3, + STATE(1072), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3711), 4, + ACTIONS(3590), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68729,7 +67664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3715), 8, + ACTIONS(3594), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68738,50 +67673,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42765] = 19, + [41382] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3713), 1, + ACTIONS(3600), 1, anon_sym_RBRACE, - ACTIONS(3719), 1, + ACTIONS(3604), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1180), 3, + STATE(1060), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3711), 4, + ACTIONS(3598), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68789,7 +67724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3715), 8, + ACTIONS(3602), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68798,50 +67733,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42844] = 19, + [41461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(3606), 1, + sym__concat, + STATE(859), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(867), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [41512] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3723), 1, + ACTIONS(3610), 1, anon_sym_RBRACE, - ACTIONS(3727), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3614), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1152), 3, + STATE(1086), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3721), 4, + ACTIONS(3608), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68849,7 +67830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3725), 8, + ACTIONS(3612), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68858,50 +67839,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [42923] = 19, + [41591] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3731), 1, + ACTIONS(3618), 1, anon_sym_RBRACE, - ACTIONS(3735), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3622), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1167), 3, + STATE(1082), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3729), 4, + ACTIONS(3616), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68909,7 +67890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3733), 8, + ACTIONS(3620), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68918,50 +67899,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43002] = 19, + [41670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1877), 1, + sym_file_descriptor, + ACTIONS(3463), 1, + sym__special_character, + STATE(674), 1, + aux_sym__literal_repeat1, + ACTIONS(1875), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + 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, + [41721] = 19, + ACTIONS(3), 1, + sym_comment, ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3739), 1, + ACTIONS(3626), 1, anon_sym_RBRACE, - ACTIONS(3743), 1, + ACTIONS(3630), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1128), 3, + STATE(1243), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3737), 4, + ACTIONS(3624), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -68969,7 +67996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3741), 8, + ACTIONS(3628), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -68978,50 +68005,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43081] = 19, + [41800] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3747), 1, + ACTIONS(3634), 1, anon_sym_RBRACE, - ACTIONS(3751), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3638), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1126), 3, + STATE(1076), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3745), 4, + ACTIONS(3632), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69029,7 +68056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3749), 8, + ACTIONS(3636), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69038,50 +68065,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43160] = 19, + [41879] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(3642), 1, anon_sym_RBRACE, - ACTIONS(3759), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3646), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1113), 3, + STATE(1257), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3753), 4, + ACTIONS(3640), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69089,7 +68116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3757), 8, + ACTIONS(3644), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69098,50 +68125,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43239] = 19, + [41958] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3763), 1, + ACTIONS(3650), 1, anon_sym_RBRACE, - ACTIONS(3767), 1, + ACTIONS(3654), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1111), 3, + STATE(1073), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3761), 4, + ACTIONS(3648), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69149,7 +68176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3765), 8, + ACTIONS(3652), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69158,50 +68185,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43318] = 19, + [42037] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3771), 1, + ACTIONS(3626), 1, anon_sym_RBRACE, - ACTIONS(3775), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3656), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1109), 3, + STATE(1243), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3769), 4, + ACTIONS(3624), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69209,7 +68236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3773), 8, + ACTIONS(3628), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69218,50 +68245,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43397] = 19, + [42116] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3763), 1, + ACTIONS(3660), 1, anon_sym_RBRACE, - ACTIONS(3777), 1, + ACTIONS(3664), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1111), 3, + STATE(1195), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3761), 4, + ACTIONS(3658), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69269,7 +68296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3765), 8, + ACTIONS(3662), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69278,50 +68305,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43476] = 19, + [42195] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3666), 7, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3668), 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_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, + [42244] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3781), 1, + ACTIONS(3535), 1, anon_sym_RBRACE, - ACTIONS(3785), 1, + ACTIONS(3672), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1103), 3, + STATE(1194), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3779), 4, + ACTIONS(3533), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69329,7 +68401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3783), 8, + ACTIONS(3537), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69338,50 +68410,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43555] = 19, + [42323] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3789), 1, + ACTIONS(3676), 1, anon_sym_RBRACE, - ACTIONS(3793), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3680), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1105), 3, + STATE(1071), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3787), 4, + ACTIONS(3674), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69389,7 +68461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3791), 8, + ACTIONS(3678), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69398,50 +68470,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43634] = 19, + [42402] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3797), 1, + ACTIONS(3650), 1, anon_sym_RBRACE, - ACTIONS(3801), 1, + ACTIONS(3682), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1081), 3, + STATE(1073), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3795), 4, + ACTIONS(3648), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69449,7 +68521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3799), 8, + ACTIONS(3652), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69458,96 +68530,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43713] = 5, - ACTIONS(59), 1, + [42481] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(828), 1, + ACTIONS(3684), 1, sym__concat, - STATE(1097), 1, + STATE(859), 1, aux_sym_concatenation_repeat1, - ACTIONS(875), 14, + ACTIONS(875), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(873), 35, + anon_sym_LF, + anon_sym_SEMI, 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, 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, + anon_sym_DQUOTE, + 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, - [43764] = 19, + [42532] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3805), 1, + ACTIONS(3689), 1, anon_sym_RBRACE, - ACTIONS(3809), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3693), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1080), 3, + STATE(1051), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3803), 4, + ACTIONS(3687), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69555,7 +68627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3807), 8, + ACTIONS(3691), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69564,50 +68636,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43843] = 19, + [42611] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3813), 1, + ACTIONS(3697), 1, anon_sym_RBRACE, - ACTIONS(3817), 1, + ACTIONS(3701), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1078), 3, + STATE(1230), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3811), 4, + ACTIONS(3695), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69615,7 +68687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3815), 8, + ACTIONS(3699), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69624,14 +68696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [43922] = 4, + [42690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3683), 3, + ACTIONS(3670), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3819), 7, + ACTIONS(3703), 7, anon_sym_LF, anon_sym_RPAREN_RPAREN, anon_sym_SEMI, @@ -69639,7 +68711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3681), 29, + ACTIONS(3668), 29, anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -69669,158 +68741,95 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(1952), 1, - anon_sym_DOLLAR_LBRACE, - 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, - 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, + [42739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 1, - ts_builtin_sym_end, - ACTIONS(1823), 2, - sym_file_descriptor, - sym_variable_name, - 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, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3703), 7, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3668), 29, + anon_sym_PIPE, 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_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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, sym_test_operator, - [44105] = 19, + [42788] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3835), 1, + ACTIONS(3707), 1, anon_sym_RBRACE, - ACTIONS(3839), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3711), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1075), 3, + STATE(1167), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3833), 4, + ACTIONS(3705), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69828,7 +68837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3837), 8, + ACTIONS(3709), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69837,97 +68846,50 @@ static const uint16_t ts_small_parse_table[] = { 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(1819), 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [44237] = 19, + [42867] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3823), 1, + ACTIONS(3715), 1, anon_sym_RBRACE, - ACTIONS(3841), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3719), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1076), 3, + STATE(1047), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3821), 4, + ACTIONS(3713), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69935,7 +68897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3825), 8, + ACTIONS(3717), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -69944,50 +68906,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [44316] = 19, + [42946] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3845), 1, + ACTIONS(3723), 1, anon_sym_RBRACE, - ACTIONS(3849), 1, + ACTIONS(3727), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1071), 3, + STATE(1068), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3843), 4, + ACTIONS(3721), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -69995,7 +68957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3847), 8, + ACTIONS(3725), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70004,73 +68966,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [44395] = 5, + [43025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - sym__concat, - ACTIONS(1930), 1, - sym_file_descriptor, - STATE(538), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1928), 36, + ACTIONS(3729), 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [44446] = 5, + [43070] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - sym__concat, - ACTIONS(1926), 1, - sym_file_descriptor, - STATE(541), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1924), 36, + ACTIONS(2728), 1, + anon_sym_LT_LT_LT, + ACTIONS(3731), 1, + ts_builtin_sym_end, + ACTIONS(3733), 1, anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2278), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(2724), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + ACTIONS(2726), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3735), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2403), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -70079,10 +69048,6 @@ 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, @@ -70096,50 +69061,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [44497] = 19, + [43133] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3853), 1, + ACTIONS(3739), 1, anon_sym_RBRACE, - ACTIONS(3857), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3743), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1073), 3, + STATE(1085), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3851), 4, + ACTIONS(3737), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70147,7 +69112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3855), 8, + ACTIONS(3741), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70156,50 +69121,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [44576] = 19, + [43212] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3861), 1, + ACTIONS(3747), 1, anon_sym_RBRACE, - ACTIONS(3865), 1, + ACTIONS(3751), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1066), 3, + STATE(1084), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3859), 4, + ACTIONS(3745), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70207,7 +69172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3863), 8, + ACTIONS(3749), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70216,50 +69181,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [44655] = 19, + [43291] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3869), 1, + ACTIONS(3755), 1, anon_sym_RBRACE, - ACTIONS(3873), 1, + ACTIONS(3759), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1065), 3, + STATE(1609), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3867), 4, + ACTIONS(3753), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70267,7 +69232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3871), 8, + ACTIONS(3757), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70276,50 +69241,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [44734] = 19, + [43370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3761), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(2860), 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, + anon_sym_PERCENT_EQ, + anon_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, + [43417] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3877), 1, + ACTIONS(3765), 1, anon_sym_RBRACE, - ACTIONS(3881), 1, + ACTIONS(3769), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1063), 3, + STATE(1045), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3875), 4, + ACTIONS(3763), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70327,7 +69336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3879), 8, + ACTIONS(3767), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70336,110 +69345,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [44813] = 19, + [43496] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1865), 1, + sym_file_descriptor, + ACTIONS(1921), 1, + sym__concat, + STATE(834), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1863), 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, - 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(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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - 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(3887), 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, - [44892] = 19, + sym_word, + sym_test_operator, + [43547] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3893), 1, + ACTIONS(3773), 1, anon_sym_RBRACE, - ACTIONS(3897), 1, + ACTIONS(3777), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1055), 3, + STATE(1035), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3891), 4, + ACTIONS(3771), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70447,7 +69442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3895), 8, + ACTIONS(3775), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70456,50 +69451,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [44971] = 19, + [43626] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3885), 1, + ACTIONS(3765), 1, anon_sym_RBRACE, - ACTIONS(3899), 1, + ACTIONS(3779), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1061), 3, + STATE(1045), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3883), 4, + ACTIONS(3763), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70507,7 +69502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3887), 8, + ACTIONS(3767), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70516,19 +69511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [45050] = 5, + [43705] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1930), 1, + ACTIONS(1869), 1, sym_file_descriptor, - ACTIONS(3401), 1, - sym__special_character, - STATE(618), 1, - aux_sym__literal_repeat1, - ACTIONS(1928), 36, + ACTIONS(1921), 1, + sym__concat, + STATE(830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1867), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -70552,6 +69546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -70562,50 +69557,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45101] = 19, + [43756] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3903), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(3907), 1, + ACTIONS(3787), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1047), 3, + STATE(1056), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3901), 4, + ACTIONS(3781), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70613,7 +69608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3905), 8, + ACTIONS(3785), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70622,50 +69617,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [45180] = 19, + [43835] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3911), 1, + ACTIONS(3791), 1, anon_sym_RBRACE, - ACTIONS(3915), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3795), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1050), 3, + STATE(1043), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3909), 4, + ACTIONS(3789), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70673,7 +69668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3913), 8, + ACTIONS(3793), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70682,50 +69677,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [45259] = 19, + [43914] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3919), 1, + ACTIONS(3799), 1, anon_sym_RBRACE, - ACTIONS(3923), 1, + ACTIONS(3803), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1376), 3, + STATE(1041), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3917), 4, + ACTIONS(3797), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70733,7 +69728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3921), 8, + ACTIONS(3801), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70742,50 +69737,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [45338] = 19, + [43993] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3927), 1, + ACTIONS(3807), 1, anon_sym_RBRACE, - ACTIONS(3931), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3811), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1433), 3, + STATE(1065), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3925), 4, + ACTIONS(3805), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70793,7 +69788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3929), 8, + ACTIONS(3809), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70802,50 +69797,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [45417] = 19, + [44072] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3935), 1, + ACTIONS(3815), 1, anon_sym_RBRACE, - ACTIONS(3939), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3819), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1042), 3, + STATE(1025), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3933), 4, + ACTIONS(3813), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70853,7 +69848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3937), 8, + ACTIONS(3817), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70862,50 +69857,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [45496] = 19, + [44151] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3943), 1, + ACTIONS(3823), 1, anon_sym_RBRACE, - ACTIONS(3947), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3827), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1040), 3, + STATE(1008), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3941), 4, + ACTIONS(3821), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -70913,7 +69908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3945), 8, + ACTIONS(3825), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -70922,98 +69917,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [45575] = 2, + [44230] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3949), 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, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - [45620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2370), 39, - anon_sym_LF, - anon_sym_RPAREN_RPAREN, + ACTIONS(3831), 1, + anon_sym_RBRACE, + ACTIONS(3835), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1011), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3829), 4, 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_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3833), 8, 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, - [45665] = 2, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2370), 39, - anon_sym_LF, + ACTIONS(3837), 1, anon_sym_RPAREN_RPAREN, + ACTIONS(2860), 38, + anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -71027,166 +69997,74 @@ static const uint16_t ts_small_parse_table[] = { 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, - [45710] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - sym_file_descriptor, - ACTIONS(1913), 1, - sym__concat, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [45761] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - sym_file_descriptor, - ACTIONS(1913), 1, - sym__concat, - STATE(541), 1, - aux_sym_concatenation_repeat1, - 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_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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [45812] = 19, + [44356] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3919), 1, + ACTIONS(3841), 1, anon_sym_RBRACE, - ACTIONS(3951), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3845), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1376), 3, + STATE(1040), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3917), 4, + ACTIONS(3839), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -71194,7 +70072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3921), 8, + ACTIONS(3843), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71203,50 +70081,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [45891] = 19, + [44435] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3955), 1, + ACTIONS(3849), 1, anon_sym_RBRACE, - ACTIONS(3959), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3853), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1037), 3, + STATE(1053), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3953), 4, + ACTIONS(3847), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -71254,7 +70132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3957), 8, + ACTIONS(3851), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71263,50 +70141,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [45970] = 19, + [44514] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3963), 1, + ACTIONS(3857), 1, anon_sym_RBRACE, - ACTIONS(3967), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3861), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1035), 3, + STATE(1009), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3961), 4, + ACTIONS(3855), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -71314,7 +70192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3965), 8, + ACTIONS(3859), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71323,50 +70201,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [46049] = 19, + [44593] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3971), 1, + ACTIONS(3865), 1, anon_sym_RBRACE, - ACTIONS(3975), 1, + ACTIONS(3869), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1034), 3, + STATE(1087), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3969), 4, + ACTIONS(3863), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -71374,7 +70252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3973), 8, + ACTIONS(3867), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71383,50 +70261,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [46128] = 19, + [44672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(2977), 1, + sym__concat, + STATE(840), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, + sym_variable_name, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [44723] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3963), 1, + ACTIONS(3831), 1, anon_sym_RBRACE, - ACTIONS(3977), 1, + ACTIONS(3871), 1, anon_sym_SLASH2, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1035), 3, + STATE(1011), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3961), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -71434,7 +70358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3965), 8, + ACTIONS(3833), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71443,50 +70367,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [46207] = 19, + [44802] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3981), 1, + ACTIONS(3875), 1, anon_sym_RBRACE, - ACTIONS(3985), 1, - sym_regex, - STATE(2285), 1, + ACTIONS(3879), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1371), 3, + STATE(1081), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3979), 4, + ACTIONS(3873), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -71494,7 +70418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3983), 8, + ACTIONS(3877), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71503,50 +70427,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [46286] = 19, + [44881] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3989), 1, + ACTIONS(3883), 1, anon_sym_RBRACE, - ACTIONS(3993), 1, + ACTIONS(3887), 1, sym_regex, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1022), 3, + STATE(1016), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3987), 4, + ACTIONS(3881), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -71554,7 +70478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3991), 8, + ACTIONS(3885), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71563,17 +70487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [46365] = 5, + [44960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(1877), 1, + sym_file_descriptor, + ACTIONS(1921), 1, sym__concat, - STATE(534), 1, + STATE(834), 1, aux_sym_concatenation_repeat1, - ACTIONS(1899), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1897), 35, + ACTIONS(1875), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -71583,6 +70506,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, @@ -71606,20 +70531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46416] = 5, + [45011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(1881), 1, + sym_file_descriptor, + ACTIONS(1921), 1, sym__concat, - STATE(535), 1, + STATE(830), 1, aux_sym_concatenation_repeat1, - ACTIONS(1903), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1901), 35, + ACTIONS(1879), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -71629,6 +70552,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, @@ -71652,163 +70577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [46467] = 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(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_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, - [46593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4005), 1, - anon_sym_RPAREN_RPAREN, - 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, - anon_sym_PERCENT_EQ, - anon_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, - [46640] = 3, + [45062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4007), 1, + ACTIONS(3889), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(2370), 38, + ACTIONS(2860), 38, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -71847,195 +70623,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [46687] = 6, + [45109] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, - sym__concat, - 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_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, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [46740] = 11, - ACTIONS(3), 1, - sym_comment, - 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(3831), 2, - anon_sym_PIPE, - 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, - 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, + ACTIONS(3893), 1, + anon_sym_RBRACE, + ACTIONS(3897), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46803] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(178), 1, - sym_file_descriptor, - ACTIONS(1913), 1, - sym__concat, - STATE(538), 1, - aux_sym_concatenation_repeat1, - ACTIONS(151), 36, - anon_sym_LF, + STATE(1003), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3891), 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(2259), 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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [46854] = 19, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45188] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4025), 1, + ACTIONS(3901), 1, anon_sym_RBRACE, - ACTIONS(4029), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3905), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1043), 3, + STATE(1006), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4023), 4, + ACTIONS(3899), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -72043,7 +70734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4027), 8, + ACTIONS(3903), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -72052,50 +70743,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [46933] = 19, + [45267] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4033), 1, + ACTIONS(3841), 1, anon_sym_RBRACE, - ACTIONS(4037), 1, - anon_sym_SLASH2, - STATE(2285), 1, + ACTIONS(3907), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1039), 3, + STATE(1040), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4031), 4, + ACTIONS(3839), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -72103,7 +70794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4035), 8, + ACTIONS(3843), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -72112,18 +70803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [47012] = 5, + [45346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, + ACTIONS(1865), 1, sym_file_descriptor, - ACTIONS(1913), 1, - sym__concat, - STATE(541), 1, - aux_sym_concatenation_repeat1, - ACTIONS(852), 36, + ACTIONS(3463), 1, + sym__special_character, + STATE(674), 1, + aux_sym__literal_repeat1, + ACTIONS(1863), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -72147,7 +70839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -72158,83 +70849,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, 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, - 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, + [45397] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_LT_LT_LT, - ACTIONS(4041), 1, - ts_builtin_sym_end, - ACTIONS(4043), 1, - anon_sym_LF, - ACTIONS(1823), 2, + ACTIONS(2977), 1, + sym__concat, + STATE(845), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1913), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(3831), 2, + ACTIONS(1911), 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, - 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, @@ -72243,6 +70877,10 @@ 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, @@ -72254,15 +70892,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47177] = 3, + [45448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 2, - sym_file_descriptor, + ACTIONS(2977), 1, sym__concat, - ACTIONS(910), 36, + STATE(840), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1919), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1917), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -72272,8 +70915,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, @@ -72297,50 +70938,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47223] = 18, + [45499] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4049), 1, + ACTIONS(3911), 1, anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(3915), 1, + sym_regex, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(964), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3909), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -72348,7 +70992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3913), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -72357,34 +71001,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [47299] = 7, + [45578] = 3, 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, + ACTIONS(3917), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(2860), 38, anon_sym_LF, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - ACTIONS(3681), 28, 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, @@ -72399,65 +71036,59 @@ static const uint16_t ts_small_parse_table[] = { 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, - [47353] = 21, + [45625] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(726), 1, - anon_sym_BANG, - ACTIONS(728), 1, - aux_sym_unary_expression_token1, - ACTIONS(730), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(732), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(734), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(736), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(738), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(740), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(744), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4063), 1, - sym_variable_name, - STATE(438), 1, + ACTIONS(3921), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, + sym_regex, + STATE(2286), 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, - ACTIONS(722), 4, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(4061), 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, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(958), 3, sym_concatenation, - STATE(437), 7, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3919), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -72465,279 +71096,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [47435] = 7, - ACTIONS(3), 1, - sym_comment, - 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_SEMI_SEMI, - ACTIONS(3681), 28, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3923), 8, 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, - [47489] = 3, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45704] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(984), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [47535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(982), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(980), 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, + ACTIONS(3929), 1, + anon_sym_RBRACE, + ACTIONS(3933), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [47581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(976), 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, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [47627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(972), 36, - anon_sym_LF, + STATE(993), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3927), 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - 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, - STATE(810), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(437), 7, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -72745,81 +71156,35 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [47755] = 7, - ACTIONS(3), 1, - sym_comment, - 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_SEMI_SEMI, - ACTIONS(3681), 28, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3931), 8, 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, - [47809] = 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45783] = 2, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(3935), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - ACTIONS(3681), 28, 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, @@ -72834,82 +71199,35 @@ static const uint16_t ts_small_parse_table[] = { 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, - [47863] = 3, + [45828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(968), 36, + ACTIONS(2860), 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_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [47909] = 7, - ACTIONS(3), 1, - sym_comment, - 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_BANG_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_DASH_EQ, @@ -72924,39 +71242,35 @@ static const uint16_t ts_small_parse_table[] = { 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, - [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, + sym_test_operator, + [45873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2860), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - ACTIONS(3681), 28, 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, @@ -72971,149 +71285,205 @@ static const uint16_t ts_small_parse_table[] = { 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, - [48017] = 5, + [45918] = 19, 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_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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3939), 1, + anon_sym_RBRACE, + ACTIONS(3943), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(966), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(964), 36, - anon_sym_LF, + STATE(967), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3937), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3941), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45997] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3947), 1, + anon_sym_RBRACE, + ACTIONS(3951), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(960), 36, - anon_sym_LF, + STATE(1042), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3945), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3949), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46076] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3955), 1, + anon_sym_RBRACE, + ACTIONS(3959), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48159] = 3, + STATE(932), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3953), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 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_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 2, + ACTIONS(178), 1, sym_file_descriptor, + ACTIONS(1921), 1, sym__concat, - ACTIONS(886), 36, + STATE(834), 1, + aux_sym_concatenation_repeat1, + ACTIONS(151), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -73150,232 +71520,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [48205] = 3, + [46206] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3963), 1, + anon_sym_RBRACE, + ACTIONS(3967), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym__concat, - STATE(970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(861), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(852), 34, - anon_sym_LF, + STATE(961), 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_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 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_AMP, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46285] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3971), 1, + anon_sym_RBRACE, + ACTIONS(3975), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym__concat, - STATE(973), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(151), 34, - anon_sym_LF, + STATE(1019), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3969), 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(2259), 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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46364] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3979), 1, + anon_sym_RBRACE, + ACTIONS(3983), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(933), 36, - anon_sym_LF, + STATE(938), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3977), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3981), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46443] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3987), 1, + anon_sym_RBRACE, + ACTIONS(3991), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(952), 36, - anon_sym_LF, + STATE(971), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3985), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3989), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46522] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3995), 1, + anon_sym_RBRACE, + ACTIONS(3999), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48443] = 3, + STATE(945), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3993), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3997), 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, + [46601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 2, + ACTIONS(861), 1, sym_file_descriptor, + ACTIONS(1921), 1, sym__concat, - ACTIONS(948), 36, + STATE(830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(852), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -73412,60 +71866,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [48489] = 21, + [46652] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(726), 1, - anon_sym_BANG, - ACTIONS(728), 1, - aux_sym_unary_expression_token1, - ACTIONS(730), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(732), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(734), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(736), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(738), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(740), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(744), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4063), 1, - sym_variable_name, - STATE(438), 1, + ACTIONS(4003), 1, + anon_sym_RBRACE, + ACTIONS(4007), 1, + anon_sym_SLASH2, + STATE(2286), 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, - ACTIONS(722), 4, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(4087), 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, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(973), 3, sym_concatenation, - STATE(437), 7, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4001), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -73473,291 +71917,383 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [48571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(881), 1, - sym_file_descriptor, - ACTIONS(4089), 1, - sym__concat, - 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, + ACTIONS(4005), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46731] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4011), 1, + anon_sym_RBRACE, + ACTIONS(4015), 1, + sym_regex, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(933), 36, - anon_sym_LF, + STATE(1037), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4009), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4013), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46810] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [48667] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4092), 1, - sym__special_character, - STATE(955), 1, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(4023), 1, + anon_sym_SLASH2, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(927), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(922), 34, - anon_sym_LF, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(974), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4017), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4021), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46889] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4027), 1, + anon_sym_RBRACE, + ACTIONS(4031), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, 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, + STATE(948), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4025), 4, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4029), 8, 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), 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, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, - anon_sym_LT_LT_LT, - 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(4095), 4, - anon_sym_LF, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3939), 1, + anon_sym_RBRACE, + ACTIONS(4033), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(967), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3937), 4, 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_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3941), 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, + [47047] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3955), 1, + anon_sym_RBRACE, + ACTIONS(4035), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48821] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - anon_sym_LT_LT_LT, - ACTIONS(4097), 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(4099), 3, + STATE(932), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3953), 4, 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_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 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_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [47126] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4039), 1, + anon_sym_RBRACE, + ACTIONS(4043), 1, + anon_sym_SLASH2, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48881] = 5, + STATE(966), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4037), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4041), 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, + [47205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(976), 3, sym_file_descriptor, - ACTIONS(4101), 1, sym__concat, - STATE(953), 1, - aux_sym_concatenation_repeat1, - ACTIONS(869), 35, + sym_variable_name, + ACTIONS(974), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -73793,277 +72329,365 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48931] = 3, + [47251] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 2, - sym_file_descriptor, - sym__concat, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4047), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48977] = 5, - ACTIONS(3), 1, - sym_comment, - 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(1901), 33, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [47327] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49027] = 5, - ACTIONS(3), 1, - sym_comment, - 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(1897), 33, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [47403] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4053), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49077] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(865), 1, - sym_file_descriptor, - ACTIONS(4105), 1, - sym__concat, - STATE(953), 1, - aux_sym_concatenation_repeat1, - ACTIONS(863), 35, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [47479] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3947), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(916), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(914), 36, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [47555] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3929), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(906), 35, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [47631] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3929), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49219] = 3, + STATE(993), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3927), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3931), 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, + [47707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 2, - sym_file_descriptor, + ACTIONS(4055), 1, sym__concat, - ACTIONS(956), 36, + STATE(970), 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, @@ -74073,8 +72697,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, @@ -74100,14 +72722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49265] = 3, + [47757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 3, + ACTIONS(919), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(890), 35, + ACTIONS(917), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -74143,14 +72765,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49311] = 3, + [47803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 3, + ACTIONS(923), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(898), 35, + ACTIONS(921), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -74186,14 +72808,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49357] = 3, + [47849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, + ACTIONS(927), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(894), 35, + ACTIONS(925), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -74229,59 +72851,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49403] = 5, + [47895] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 1, - sym__concat, - STATE(1009), 1, - aux_sym_concatenation_repeat1, - ACTIONS(865), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(863), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4057), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49453] = 3, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [47971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 3, + ACTIONS(931), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(879), 35, + ACTIONS(929), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -74317,194 +72952,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49499] = 5, + [48017] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 1, - sym_file_descriptor, - ACTIONS(4109), 1, - sym__special_character, - STATE(972), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [49549] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4112), 1, - sym__concat, - STATE(1009), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(869), 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, + ACTIONS(4057), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [49599] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym__concat, - STATE(970), 1, - aux_sym_concatenation_repeat1, - 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, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym__concat, - STATE(973), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1875), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1873), 34, - anon_sym_LF, + STATE(1030), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4059), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4061), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [49699] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [48093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 3, + ACTIONS(935), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(929), 35, + ACTIONS(933), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -74540,13 +73053,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49745] = 3, + [48139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(939), 3, sym_file_descriptor, sym__concat, - ACTIONS(994), 36, + sym_variable_name, + ACTIONS(937), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -74556,8 +73070,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, @@ -74581,16 +73093,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49791] = 3, + [48185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 3, + ACTIONS(951), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(937), 35, + ACTIONS(949), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -74626,13 +73139,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49837] = 3, + [48231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(890), 3, sym_file_descriptor, sym__concat, - ACTIONS(998), 36, + sym_variable_name, + ACTIONS(888), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -74642,8 +73156,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, @@ -74667,148 +73179,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49883] = 3, + [48277] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1002), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [49929] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(178), 1, - sym_file_descriptor, - ACTIONS(4114), 1, - sym__special_character, - STATE(972), 1, + ACTIONS(3955), 1, + anon_sym_RBRACE, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(151), 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(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, 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, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 8, 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, - [50029] = 3, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [48353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(1000), 3, sym_file_descriptor, sym__concat, - ACTIONS(902), 36, + sym_variable_name, + ACTIONS(998), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -74818,8 +73257,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, @@ -74843,19 +73280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50075] = 3, + [48399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 3, + ACTIONS(996), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(902), 35, + ACTIONS(994), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -74886,62 +73323,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50121] = 3, + [48445] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1002), 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3979), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50167] = 3, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [48521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 3, + ACTIONS(992), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(998), 35, + ACTIONS(990), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -74972,19 +73424,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50213] = 3, + [48567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(988), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(994), 35, + ACTIONS(986), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75015,19 +73467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50259] = 3, + [48613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 3, + ACTIONS(984), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(988), 35, + ACTIONS(982), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75058,19 +73510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50305] = 5, + [48659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4116), 1, - sym__special_character, - STATE(955), 1, - aux_sym__literal_repeat1, - ACTIONS(1899), 2, + ACTIONS(962), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1897), 34, + ACTIONS(960), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -75094,6 +73544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -75105,16 +73556,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50355] = 5, + [48705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3465), 1, + ACTIONS(970), 3, sym_file_descriptor, - ACTIONS(4118), 1, sym__concat, - STATE(963), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3463), 35, + sym_variable_name, + ACTIONS(968), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -75150,16 +73599,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50405] = 5, + [48751] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4063), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [48827] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4065), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [48903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, + ACTIONS(966), 3, sym_file_descriptor, - ACTIONS(4118), 1, sym__concat, - STATE(959), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3467), 35, + sym_variable_name, + ACTIONS(964), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -75195,60 +73758,193 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50455] = 3, + [48949] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(984), 35, - anon_sym_LF, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4069), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(954), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4067), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4071), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [49025] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4073), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [49101] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4073), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50501] = 3, + STATE(955), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4075), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4077), 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, + [49177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 3, - sym_file_descriptor, + ACTIONS(4079), 1, sym__concat, + STATE(960), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(980), 35, + ACTIONS(873), 34, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75281,64 +73977,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50547] = 7, + [49227] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4057), 1, - anon_sym_QMARK, - ACTIONS(4122), 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(4120), 3, - anon_sym_LF, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4011), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - ACTIONS(3681), 28, anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 8, 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, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [49303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 3, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(976), 35, + ACTIONS(960), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75369,19 +74075,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50647] = 3, + [49349] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 3, - sym_file_descriptor, + ACTIONS(4082), 1, sym__concat, + STATE(960), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(972), 35, + ACTIONS(867), 34, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75414,102 +74123,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50693] = 3, + [49399] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(968), 35, - anon_sym_LF, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4069), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [49475] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4084), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [49551] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3921), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50739] = 3, - ACTIONS(59), 1, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [49627] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 13, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3911), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 8, 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), 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, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [49703] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - [50785] = 5, + ACTIONS(3911), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(964), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3909), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 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_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [49779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(947), 3, sym_file_descriptor, - ACTIONS(4118), 1, sym__concat, - STATE(963), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 35, + sym_variable_name, + ACTIONS(945), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -75545,17 +74456,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50835] = 3, + [49825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 3, - sym_file_descriptor, + ACTIONS(4086), 1, sym__concat, + STATE(960), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(964), 35, + ACTIONS(880), 34, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75588,60 +74501,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50881] = 3, + [49875] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(960), 35, - anon_sym_LF, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4088), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [49951] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4088), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(965), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4090), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4092), 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, + [50027] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3939), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [50103] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - [50927] = 3, + ACTIONS(3987), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [50179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 3, + ACTIONS(902), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(886), 35, + ACTIONS(900), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75672,15 +74773,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [50225] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4094), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [50301] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - [50973] = 3, + ACTIONS(4096), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [50377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 2, + ACTIONS(1004), 3, sym_file_descriptor, sym__concat, - ACTIONS(906), 36, + sym_variable_name, + ACTIONS(1002), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -75690,8 +74909,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, @@ -75715,16 +74932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51019] = 3, + [50423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 3, + ACTIONS(865), 1, sym_file_descriptor, + ACTIONS(4098), 1, sym__concat, - sym_variable_name, - ACTIONS(910), 35, + STATE(1027), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -75760,14 +74980,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51065] = 3, + [50473] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4102), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(976), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4100), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4104), 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, + [50549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 3, + ACTIONS(919), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(914), 35, + ACTIONS(917), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -75777,6 +75054,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, @@ -75800,16 +75079,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51111] = 3, + [50595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 2, + ACTIONS(923), 2, sym_file_descriptor, sym__concat, - ACTIONS(890), 36, + ACTIONS(921), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -75846,17 +75124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51157] = 3, + [50641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(927), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(933), 35, + ACTIONS(925), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75864,6 +75140,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, @@ -75889,17 +75167,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51203] = 3, + [50687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 3, + ACTIONS(931), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(952), 35, + ACTIONS(929), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75907,6 +75183,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, @@ -75932,21 +75210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51249] = 5, + [50733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - sym__concat, - STATE(1009), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 2, + ACTIONS(935), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(879), 34, + sym__concat, + 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, @@ -75977,17 +75253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51299] = 3, + [50779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 3, + ACTIONS(939), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(948), 35, + ACTIONS(937), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -75995,6 +75269,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, @@ -76020,13 +75296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51345] = 3, + [50825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 2, + ACTIONS(178), 1, sym_file_descriptor, - sym__concat, - ACTIONS(898), 36, + ACTIONS(4106), 1, + sym__special_character, + STATE(1091), 1, + aux_sym__literal_repeat1, + ACTIONS(151), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -76052,7 +75331,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -76063,103 +75341,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51391] = 5, - ACTIONS(3), 1, + [50875] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(4129), 1, + ACTIONS(838), 1, sym__concat, - STATE(1093), 1, + STATE(1429), 1, aux_sym_concatenation_repeat1, - ACTIONS(865), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(863), 34, - anon_sym_LF, - anon_sym_SEMI, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [51441] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - sym_file_descriptor, - 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + ACTIONS(1871), 23, + 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, - 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, + 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, - [51491] = 3, + [50925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 2, + ACTIONS(951), 2, sym_file_descriptor, sym__concat, - ACTIONS(894), 36, + ACTIONS(949), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -76196,13 +75429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51537] = 3, + [50971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(890), 2, sym_file_descriptor, sym__concat, - ACTIONS(879), 36, + ACTIONS(888), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -76239,17 +75472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51583] = 3, + [51017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(1000), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(933), 35, + ACTIONS(998), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -76257,6 +75488,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, @@ -76282,60 +75515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51629] = 3, + [51063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 3, + ACTIONS(996), 2, sym_file_descriptor, 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [51675] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4131), 1, - sym__concat, - STATE(1093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(869), 34, + ACTIONS(994), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -76345,6 +75531,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, @@ -76370,106 +75558,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51725] = 18, + [51109] = 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(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_RPAREN, - anon_sym_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, - [51801] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4135), 1, + ACTIONS(4108), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -76477,7 +75607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76486,48 +75616,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [51877] = 18, + [51185] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4139), 1, + ACTIONS(4112), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1019), 3, + STATE(930), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4137), 4, + ACTIONS(4110), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -76535,7 +75665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4141), 8, + ACTIONS(4114), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76544,48 +75674,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [51953] = 18, + [51261] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(724), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(744), 1, sym_test_operator, - ACTIONS(4143), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(4118), 1, + sym_variable_name, + STATE(443), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, - sym_word, - ACTIONS(1950), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1958), 2, + STATE(1474), 1, + sym__expression, + STATE(3634), 1, + sym_variable_assignment, + STATE(3980), 1, + sym_subscript, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(722), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(4116), 4, + anon_sym_LF, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_POUND, - STATE(2252), 7, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(814), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -76593,26 +75735,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52029] = 3, + [51343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 3, + ACTIONS(4120), 1, + sym__special_character, + STATE(1022), 1, + aux_sym__literal_repeat1, + ACTIONS(1913), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(918), 35, + ACTIONS(1911), 34, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -76634,7 +75769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -76643,24 +75777,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52075] = 5, + [51393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 1, + ACTIONS(3507), 1, + sym_file_descriptor, + ACTIONS(4098), 1, sym__concat, - STATE(1157), 1, + STATE(1027), 1, aux_sym_concatenation_repeat1, - ACTIONS(1871), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1869), 33, + ACTIONS(3505), 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, @@ -76690,22 +75825,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52125] = 5, + [51443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 1, + ACTIONS(3511), 1, + sym_file_descriptor, + ACTIONS(4098), 1, sym__concat, - STATE(1160), 1, + STATE(1023), 1, aux_sym_concatenation_repeat1, - ACTIONS(1884), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1882), 33, + ACTIONS(3509), 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, @@ -76735,13 +75870,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52175] = 3, + [51493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 2, + ACTIONS(992), 2, sym_file_descriptor, sym__concat, - ACTIONS(929), 36, + ACTIONS(990), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -76778,13 +75913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52221] = 3, + [51539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 2, + ACTIONS(988), 2, sym_file_descriptor, sym__concat, - ACTIONS(937), 36, + ACTIONS(986), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -76821,17 +75956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52267] = 3, + [51585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 3, + ACTIONS(984), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(914), 35, + ACTIONS(982), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -76839,6 +75972,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, @@ -76864,106 +75999,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52313] = 18, + [51631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(980), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(978), 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, - 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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_RPAREN, - anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [52389] = 18, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [51677] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4139), 1, + ACTIONS(4122), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -76971,7 +76091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76980,67 +76100,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [52465] = 3, + [51753] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 3, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(4124), 1, + anon_sym_LF, + ACTIONS(1822), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(910), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(1932), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(1934), 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(1936), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [52511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1926), 1, - sym_file_descriptor, - ACTIONS(1924), 37, - anon_sym_LF, + ACTIONS(4126), 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_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -77049,10 +76137,6 @@ 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, @@ -77066,48 +76150,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52557] = 18, + [51813] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4149), 1, + ACTIONS(4122), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(977), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4128), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77115,7 +76199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4130), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77124,48 +76208,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [52633] = 18, + [51889] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3989), 1, + ACTIONS(4102), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77173,7 +76257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77182,48 +76266,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [52709] = 18, + [51965] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3997), 1, + ACTIONS(4132), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77231,7 +76315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77240,48 +76324,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [52785] = 18, + [52041] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3997), 1, + ACTIONS(4134), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1030), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3995), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77289,7 +76373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3999), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77298,48 +76382,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [52861] = 18, + [52117] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4151), 1, + ACTIONS(3893), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77347,7 +76431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77356,48 +76440,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [52937] = 18, + [52193] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4151), 1, + ACTIONS(4134), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1033), 3, + STATE(929), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4153), 4, + ACTIONS(4136), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77405,7 +76489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4155), 8, + ACTIONS(4138), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77414,48 +76498,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [53013] = 18, + [52269] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3981), 1, + ACTIONS(3901), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77463,7 +76547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77472,72 +76556,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [53089] = 18, + [52345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 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, - 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, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, - sym_word, - ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + sym_word, + sym_test_operator, + [52391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + sym_file_descriptor, + ACTIONS(1867), 37, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [53165] = 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [52437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(970), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(933), 35, + ACTIONS(968), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -77547,6 +76658,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, @@ -77570,109 +76683,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53211] = 18, + [52483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(966), 2, + sym_file_descriptor, + 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(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(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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [53287] = 18, + sym_word, + sym_test_operator, + [52529] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3919), 1, + ACTIONS(4112), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77680,7 +76777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77689,48 +76786,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [53363] = 18, + [52605] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4157), 1, + ACTIONS(4140), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77738,7 +76835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77747,106 +76844,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [53439] = 18, + [52681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(875), 1, + sym_file_descriptor, + ACTIONS(4142), 1, + sym__concat, + STATE(1018), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 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, - 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(4159), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [53515] = 18, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [52731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4163), 1, + ACTIONS(3841), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1044), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4161), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -77854,7 +76938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4165), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77863,132 +76947,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [53591] = 18, + [52807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1877), 1, + sym_file_descriptor, + ACTIONS(4106), 1, + sym__special_character, + STATE(1091), 1, + aux_sym__literal_repeat1, + ACTIONS(1875), 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, - 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(4167), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + sym_word, + sym_test_operator, + [52857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 36, + anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [53667] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(4167), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1045), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4169), 4, + sym_word, + sym_test_operator, + [52903] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 1, + sym__special_character, + STATE(1022), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(953), 34, + anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_POUND, - STATE(2252), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(4171), 8, - 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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [53743] = 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, + 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, + [52953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(869), 1, sym_file_descriptor, + ACTIONS(4148), 1, sym__concat, - ACTIONS(902), 36, + STATE(1018), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78022,48 +77125,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53789] = 18, + [53003] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4163), 1, + ACTIONS(3901), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1006), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3899), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78071,7 +77174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3903), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78080,48 +77183,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [53865] = 18, + [53079] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4173), 1, + ACTIONS(4150), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78129,7 +77232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78138,16 +77241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [53941] = 5, + [53155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1930), 1, + ACTIONS(947), 2, sym_file_descriptor, - ACTIONS(4114), 1, - sym__special_character, - STATE(972), 1, - aux_sym__literal_repeat1, - ACTIONS(1928), 35, + sym__concat, + ACTIONS(945), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -78173,6 +77273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -78183,16 +77284,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53991] = 3, + [53201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(882), 1, sym_file_descriptor, + ACTIONS(4152), 1, sym__concat, - ACTIONS(1002), 36, + STATE(1018), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78226,94 +77329,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54037] = 6, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [54089] = 18, + [53251] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3903), 1, + ACTIONS(4150), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1007), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4154), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78321,7 +77378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4156), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78330,62 +77387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [54165] = 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), 12, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, + [53327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(902), 2, sym_file_descriptor, sym__concat, - ACTIONS(998), 36, + ACTIONS(900), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78393,6 +77403,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, @@ -78416,19 +77428,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54263] = 3, + [53373] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4158), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [53449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 2, sym_file_descriptor, sym__concat, - ACTIONS(994), 36, + ACTIONS(1002), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78436,6 +77504,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, @@ -78459,26 +77529,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54309] = 3, + [53495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(869), 1, sym_file_descriptor, + ACTIONS(4160), 1, sym__concat, - ACTIONS(988), 36, + STATE(1057), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 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, @@ -78502,26 +77574,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54355] = 3, + [53545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(1822), 2, sym_file_descriptor, - sym__concat, - ACTIONS(984), 36, + sym_variable_name, + ACTIONS(4162), 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(1838), 9, 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(1816), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -78530,10 +77609,6 @@ 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, @@ -78545,51 +77620,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54401] = 18, + [53597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1820), 1, + sym_file_descriptor, + ACTIONS(1822), 1, + sym_variable_name, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 12, 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, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + ACTIONS(1818), 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, + [53649] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3911), 1, + ACTIONS(3823), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78597,7 +77717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78606,48 +77726,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [54477] = 18, + [53725] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3911), 1, + ACTIONS(4166), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1050), 3, + STATE(1055), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3909), 4, + ACTIONS(4164), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78655,7 +77775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3913), 8, + ACTIONS(4168), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78664,48 +77784,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [54553] = 18, + [53801] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4177), 1, + ACTIONS(4166), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78713,7 +77833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78722,48 +77842,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [54629] = 18, + [53877] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4177), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1051), 3, + STATE(1056), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4179), 4, + ACTIONS(3781), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78771,7 +77891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4181), 8, + ACTIONS(3785), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78780,48 +77900,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [54705] = 18, + [53953] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3885), 1, + ACTIONS(4172), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1058), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4170), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78829,7 +77949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4174), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78838,48 +77958,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [54781] = 18, + [54029] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3877), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78887,7 +78007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78896,91 +78016,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [54857] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [54903] = 18, + [54105] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4183), 1, + ACTIONS(3831), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -78988,7 +78065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78997,48 +78074,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [54979] = 18, + [54181] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4185), 1, + ACTIONS(4172), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79046,7 +78123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79055,48 +78132,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55055] = 18, + [54257] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4189), 1, + ACTIONS(3815), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1068), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4187), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79104,7 +78181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4191), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79113,48 +78190,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55131] = 18, + [54333] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4193), 1, + ACTIONS(4108), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1070), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4176), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79162,7 +78239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4178), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79171,48 +78248,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55207] = 18, + [54409] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4193), 1, + ACTIONS(3883), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1069), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4195), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79220,7 +78297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4197), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79229,48 +78306,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55283] = 18, + [54485] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4189), 1, + ACTIONS(3883), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1016), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3881), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79278,7 +78355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3885), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79287,48 +78364,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55359] = 18, + [54561] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4199), 1, + ACTIONS(4180), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79336,7 +78413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79345,48 +78422,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55435] = 18, + [54637] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3845), 1, + ACTIONS(4182), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79394,7 +78471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79403,48 +78480,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55511] = 18, + [54713] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3853), 1, + ACTIONS(4184), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79452,7 +78529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79461,48 +78538,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55587] = 18, + [54789] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3853), 1, + ACTIONS(4188), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1073), 3, + STATE(1048), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3851), 4, + ACTIONS(4186), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79510,7 +78587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3855), 8, + ACTIONS(4190), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79519,48 +78596,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55663] = 18, + [54865] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4201), 1, + ACTIONS(4192), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79568,7 +78645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79577,48 +78654,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55739] = 18, + [54941] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4201), 1, + ACTIONS(4192), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1074), 3, + STATE(1049), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4203), 4, + ACTIONS(4194), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79626,7 +78703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4205), 8, + ACTIONS(4196), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79635,48 +78712,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55815] = 18, + [55017] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3823), 1, + ACTIONS(3807), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79684,7 +78761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79693,48 +78770,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55891] = 18, + [55093] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3813), 1, + ACTIONS(4180), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1017), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4198), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79742,7 +78819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4200), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79751,91 +78828,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [55967] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [56013] = 18, + [55169] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4207), 1, + ACTIONS(4202), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79843,7 +78877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79852,48 +78886,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [56089] = 18, + [55245] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4209), 1, + ACTIONS(4204), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -79901,7 +78935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79910,23 +78944,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [56165] = 3, + [55321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(875), 1, sym_file_descriptor, + ACTIONS(4206), 1, sym__concat, - ACTIONS(972), 36, + STATE(1057), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 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, @@ -79950,196 +78987,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56211] = 3, + [55371] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [56257] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4209), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, 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, - [56303] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(886), 36, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [56395] = 5, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [55447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(1865), 1, sym_file_descriptor, - ACTIONS(4211), 1, - sym__concat, - STATE(1090), 1, - aux_sym_concatenation_repeat1, - ACTIONS(879), 35, + ACTIONS(4106), 1, + sym__special_character, + STATE(1091), 1, + aux_sym__literal_repeat1, + ACTIONS(1863), 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, @@ -80159,7 +79082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80170,93 +79092,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, 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_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, + [55497] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4218), 1, + ACTIONS(3765), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1083), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4216), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -80264,7 +79141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4220), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80273,17 +79150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [56571] = 5, + [55573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4222), 1, - sym__concat, - STATE(1093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 2, + ACTIONS(915), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(879), 34, + ACTIONS(913), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -80316,19 +79190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56621] = 3, + [55619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 3, + ACTIONS(980), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(956), 35, + ACTIONS(978), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -80336,6 +79209,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, @@ -80361,454 +79236,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [56667] = 3, + [55665] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [56713] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(4213), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - 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, + STATE(1067), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4211), 4, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4215), 8, 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_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [55741] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4219), 1, 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, + ACTIONS(4221), 1, anon_sym_QMARK, + ACTIONS(4223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_test_operator, - [56809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(952), 36, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4217), 3, 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, - [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, + ACTIONS(3668), 28, anon_sym_PIPE, - anon_sym_SEMI_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, - [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_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_PERCENT, - 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, anon_sym_PERCENT_EQ, 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, - sym_test_operator, - [56951] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [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, sym_test_operator, - [57043] = 18, + [55795] = 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(1960), 1, - sym_test_operator, - 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, - 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, - [57119] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4229), 1, + ACTIONS(4213), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1084), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4231), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -80816,7 +79390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4233), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80825,48 +79399,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [57195] = 18, + [55871] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4218), 1, + ACTIONS(4204), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1078), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4225), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -80874,7 +79448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4227), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80883,48 +79457,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [57271] = 18, + [55947] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4235), 1, + ACTIONS(4229), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -80932,7 +79506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80941,136 +79515,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [57347] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [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_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, + [56023] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3781), 1, + ACTIONS(4188), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -81078,7 +79564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81087,93 +79573,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [57519] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4240), 1, - sym__special_character, - STATE(1110), 1, - aux_sym__literal_repeat1, - 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, - anon_sym_DQUOTE, - 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, - [57569] = 18, + [56099] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3789), 1, + ACTIONS(4231), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -81181,7 +79622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81190,48 +79631,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [57645] = 18, + [56175] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3789), 1, + ACTIONS(4233), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1105), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3787), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -81239,7 +79680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3791), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81248,48 +79689,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [57721] = 18, + [56251] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4243), 1, + ACTIONS(3689), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -81297,7 +79738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81306,48 +79747,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [57797] = 18, + [56327] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4243), 1, + ACTIONS(3715), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1106), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4245), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -81355,7 +79796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4247), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81364,233 +79805,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [57873] = 3, + [56403] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [57919] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(3723), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [57965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(960), 35, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [56479] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [58011] = 5, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(3723), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58061] = 5, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4249), 1, - sym__concat, - STATE(1119), 1, - aux_sym_concatenation_repeat1, - ACTIONS(879), 13, + STATE(1068), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3721), 4, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 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_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), 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, - [58111] = 3, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [56555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 3, + ACTIONS(943), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(964), 35, + ACTIONS(941), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -81626,189 +79964,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58157] = 3, + [56601] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [58203] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4235), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, 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, - [58249] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [58295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(972), 35, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [58341] = 5, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [56677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(4237), 1, sym__concat, - STATE(973), 1, + STATE(1168), 1, aux_sym_concatenation_repeat1, - ACTIONS(1930), 2, + ACTIONS(1859), 3, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(1928), 34, + ACTIONS(1857), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -81816,8 +80041,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, @@ -81841,50 +80064,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58391] = 18, + [56727] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3763), 1, + ACTIONS(4239), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -81892,7 +80116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81901,91 +80125,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [58467] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [58513] = 18, + [56803] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(4235), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1069), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4241), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -81993,7 +80174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4243), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82002,20 +80183,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [58589] = 3, + [56879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 3, - sym_file_descriptor, + ACTIONS(4237), 1, sym__concat, + STATE(1165), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1901), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(980), 35, + ts_builtin_sym_end, + ACTIONS(1899), 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, @@ -82045,184 +80228,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58635] = 10, + [56929] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [58695] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(3697), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [58741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(990), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(988), 35, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [58787] = 18, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [57005] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4256), 1, + ACTIONS(3650), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -82230,7 +80335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82239,14 +80344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [58863] = 3, + [57081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(894), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(994), 35, + ACTIONS(892), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -82282,177 +80387,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58909] = 3, + [57127] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(1968), 1, sym_test_operator, - [58955] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - 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, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [59047] = 18, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [57203] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4258), 1, + ACTIONS(3535), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -82460,7 +80494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82469,93 +80503,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [59123] = 5, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [59173] = 18, + [57279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(3634), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1133), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4262), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -82563,7 +80552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4266), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82572,59 +80561,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [59249] = 3, + [57355] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3626), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59295] = 3, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [57431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 2, + ACTIONS(875), 3, sym_file_descriptor, sym__concat, - ACTIONS(956), 36, + sym_variable_name, + ACTIONS(873), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -82658,24 +80662,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59341] = 3, + [57477] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 3, + ACTIONS(1015), 1, + anon_sym_BQUOTE, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(4245), 1, + anon_sym_LF, + ACTIONS(1822), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(890), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4162), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(4249), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(4247), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 20, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -82684,10 +80701,6 @@ 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, @@ -82696,65 +80709,80 @@ static const uint16_t ts_small_parse_table[] = { 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, - [59387] = 3, + [57539] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4251), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59433] = 3, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [57615] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, + ACTIONS(958), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(894), 35, + ACTIONS(4253), 1, + sym__special_character, + STATE(1091), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -82762,6 +80790,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, @@ -82776,7 +80806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -82787,14 +80816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59479] = 3, + [57665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 3, + ACTIONS(1881), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(879), 35, + ACTIONS(1879), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -82805,6 +80832,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, @@ -82830,147 +80859,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59525] = 5, + [57711] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 1, - sym_file_descriptor, - ACTIONS(4268), 1, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, - STATE(1147), 1, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4256), 1, + anon_sym_RBRACE, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(922), 35, - anon_sym_LF, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [57787] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4258), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [59575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(931), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(929), 35, - anon_sym_LF, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [57863] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4262), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(939), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(937), 35, - anon_sym_LF, + STATE(1093), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4260), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4264), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [57939] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4266), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59667] = 3, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [58015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 2, + ACTIONS(898), 3, sym_file_descriptor, sym__concat, - ACTIONS(906), 36, + sym_variable_name, + ACTIONS(896), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -83004,91 +81134,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59713] = 3, - ACTIONS(3), 1, + [58061] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(892), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(890), 36, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(4268), 1, + sym__special_character, + STATE(1472), 1, + aux_sym__literal_repeat1, + ACTIONS(153), 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [59759] = 18, + [58111] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4271), 1, + ACTIONS(4270), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -83096,7 +81228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83105,48 +81237,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [59835] = 18, + [58187] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4271), 1, + ACTIONS(4266), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1138), 3, + STATE(1090), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4273), 4, + ACTIONS(4272), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -83154,7 +81286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4275), 8, + ACTIONS(4274), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83163,16 +81295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [59911] = 3, + [58263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 2, + ACTIONS(909), 3, sym_file_descriptor, sym__concat, - ACTIONS(898), 36, + sym_variable_name, + ACTIONS(907), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -83206,144 +81338,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59957] = 3, + [58309] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4278), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [60003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(881), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(879), 36, - anon_sym_LF, + STATE(1094), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4276), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4280), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [58385] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4282), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [60049] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [60099] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [58461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 2, + ACTIONS(919), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(875), 36, + ACTIONS(917), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -83377,75 +81495,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60145] = 10, - ACTIONS(3), 1, + [58507] = 5, + ACTIONS(59), 1, sym_comment, - 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, + ACTIONS(4284), 1, + sym__concat, + STATE(1127), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 13, 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_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_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, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + 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(882), 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, - [60205] = 5, + [58557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 1, - sym__concat, - STATE(1173), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 3, + ACTIONS(923), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(869), 33, + ACTIONS(921), 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, @@ -83472,16 +81583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60255] = 3, + [58603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 2, + ACTIONS(927), 3, sym_file_descriptor, sym__concat, - ACTIONS(929), 36, + sym_variable_name, + ACTIONS(925), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -83515,17 +81626,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60301] = 5, + [58649] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(4285), 1, - sym__special_character, - STATE(1162), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 13, + ACTIONS(4286), 1, + sym__concat, + STATE(1127), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -83539,10 +81649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(927), 23, + ACTIONS(869), 23, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -83563,13 +81673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [60351] = 3, + [58699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 2, + ACTIONS(931), 3, sym_file_descriptor, sym__concat, - ACTIONS(937), 36, + sym_variable_name, + ACTIONS(929), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -83603,25 +81714,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60397] = 5, + [58745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, - sym__concat, - STATE(1459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1871), 2, + ACTIONS(935), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1869), 34, + 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, @@ -83648,25 +81757,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60447] = 5, + [58791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, - sym__concat, - STATE(1462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1884), 2, + ACTIONS(939), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1882), 34, + ACTIONS(937), 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, @@ -83693,29 +81800,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60497] = 5, + [58837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, + ACTIONS(951), 3, sym_file_descriptor, - ACTIONS(2281), 1, sym__concat, - STATE(1380), 1, - aux_sym_concatenation_repeat1, - ACTIONS(852), 35, + sym_variable_name, + ACTIONS(949), 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, @@ -83741,48 +81845,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60547] = 18, + [58883] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(4262), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -83790,7 +81894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83799,48 +81903,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [60623] = 18, + [58959] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4290), 1, + ACTIONS(4288), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -83848,7 +81952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83857,26 +81961,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [60699] = 5, + [59035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(178), 1, + ACTIONS(890), 3, sym_file_descriptor, - ACTIONS(2281), 1, sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(151), 35, + sym_variable_name, + ACTIONS(888), 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, @@ -83902,267 +82004,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60749] = 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(1960), 1, - sym_test_operator, - ACTIONS(2130), 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, - [60825] = 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(1960), 1, - sym_test_operator, - ACTIONS(2112), 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, - [60901] = 18, - ACTIONS(3), 1, + [59081] = 5, + ACTIONS(59), 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, + ACTIONS(4290), 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(3723), 1, - anon_sym_RBRACE, - STATE(2285), 1, + STATE(1116), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, - 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, + ACTIONS(953), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_LT_LT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [60977] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + anon_sym_CARET, + ACTIONS(958), 23, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [61027] = 18, + [59131] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4297), 1, + ACTIONS(4293), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1179), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4295), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84170,7 +82098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4299), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84179,48 +82107,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [61103] = 18, + [59207] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4297), 1, + ACTIONS(4295), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84228,7 +82156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84237,48 +82165,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [61179] = 18, + [59283] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2096), 1, + ACTIONS(4299), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1183), 3, + STATE(1117), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2094), 4, + ACTIONS(4297), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84286,7 +82214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2098), 8, + ACTIONS(4301), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84295,48 +82223,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [61255] = 18, + [59359] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2096), 1, + ACTIONS(4303), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84344,7 +82272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84353,164 +82281,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [61331] = 18, + [59435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1000), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(998), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, - sym_test_operator, - ACTIONS(2104), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1950), 2, + sym_test_operator, + [59481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(994), 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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + sym_word, + sym_test_operator, + [59527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(992), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(990), 35, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [61407] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_DOLLAR_LPAREN, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, - sym_test_operator, - ACTIONS(4301), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1950), 2, + sym_test_operator, + [59573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(988), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(986), 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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + sym_word, + sym_test_operator, + [59619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(984), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(982), 35, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [61483] = 18, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [59665] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3731), 1, + ACTIONS(4303), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1118), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4305), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84518,7 +82545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4307), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84527,14 +82554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [61559] = 5, + [59741] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(828), 1, + ACTIONS(4309), 1, sym__concat, - STATE(1097), 1, + STATE(1127), 1, aux_sym_concatenation_repeat1, - ACTIONS(854), 13, + ACTIONS(873), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -84548,7 +82575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1915), 23, + ACTIONS(875), 23, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, @@ -84572,48 +82599,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [61609] = 18, + [59791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(915), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(913), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [59837] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3731), 1, + ACTIONS(3378), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1167), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3729), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84621,7 +82691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3733), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84630,48 +82700,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [61685] = 18, + [59913] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4303), 1, + ACTIONS(3566), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84679,7 +82749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84688,48 +82758,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [61761] = 18, + [59989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(976), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(974), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [60035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(960), 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, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [60081] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4307), 1, + ACTIONS(4299), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1191), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4305), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84737,7 +82893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4309), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84746,106 +82902,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [61837] = 18, + [60157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(970), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(968), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, - sym_test_operator, - ACTIONS(4307), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1950), 2, + sym_test_operator, + [60203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(964), 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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + sym_word, + sym_test_operator, + [60249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(941), 36, + anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [61913] = 18, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [60295] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4303), 1, + ACTIONS(4282), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1192), 3, + STATE(1099), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4311), 4, + ACTIONS(4312), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84853,7 +83080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4313), 8, + ACTIONS(4314), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84862,48 +83089,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [61989] = 18, + [60371] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4315), 1, + ACTIONS(4278), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84911,7 +83138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84920,48 +83147,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [62065] = 18, + [60447] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4315), 1, + ACTIONS(4316), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1168), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4317), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -84969,7 +83196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4319), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84978,48 +83205,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [62141] = 18, + [60523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(894), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(892), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [60569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(873), 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, + [60615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(960), 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, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [60661] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3713), 1, + ACTIONS(3517), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -85027,7 +83383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85036,93 +83392,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [62217] = 5, - ACTIONS(59), 1, + [60737] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(882), 1, + sym_file_descriptor, + ACTIONS(4318), 1, + sym__concat, + STATE(1057), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 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, - STATE(1108), 1, - aux_sym__literal_repeat1, - ACTIONS(153), 13, + anon_sym_DQUOTE, + 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, + [60787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(947), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(945), 35, + anon_sym_LF, + 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(750), 23, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [60833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(896), 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_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, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [62267] = 18, + [60879] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4323), 1, + ACTIONS(4320), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -85130,7 +83572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85139,48 +83581,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [62343] = 18, + [60955] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4325), 1, + ACTIONS(3475), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -85188,7 +83630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85197,22 +83639,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [62419] = 5, + [61031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(907), 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, + [61077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, - sym__concat, - STATE(1459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1903), 2, + ACTIONS(902), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1901), 34, + ACTIONS(900), 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, @@ -85239,25 +83723,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62469] = 5, + [61123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, - sym__concat, - STATE(1462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1899), 2, + ACTIONS(1004), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1897), 34, + 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, @@ -85284,15 +83766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62519] = 3, + [61169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(919), 2, sym_file_descriptor, - ACTIONS(875), 37, + sym__concat, + ACTIONS(917), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -85303,8 +83785,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, @@ -85328,314 +83808,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62565] = 18, + [61215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(923), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(921), 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(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(2072), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(927), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(925), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [62641] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(2054), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61307] = 3, + ACTIONS(3), 1, + sym_comment, + 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_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [62717] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(4329), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1204), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4327), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61353] = 3, + ACTIONS(3), 1, + sym_comment, + 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_RPAREN, - anon_sym_POUND, - STATE(2252), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(4331), 8, - 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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [62793] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(4329), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61399] = 3, + ACTIONS(3), 1, + sym_comment, + 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_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [62869] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(2038), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1205), 3, - sym_concatenation, - 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(2040), 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, - [62945] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 1, - sym__concat, - STATE(1157), 1, - aux_sym_concatenation_repeat1, - ACTIONS(877), 3, + ACTIONS(951), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(875), 33, + sym__concat, + ACTIONS(949), 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, @@ -85665,106 +84069,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62995] = 18, + [61491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(890), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(888), 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(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(2038), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [63071] = 18, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61537] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2046), 1, + ACTIONS(4324), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1216), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4322), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -85772,7 +84161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4326), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85781,396 +84170,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [63147] = 18, + [61613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + 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, - 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(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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61659] = 3, + ACTIONS(3), 1, + sym_comment, + 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_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [63223] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(4335), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(992), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(990), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [63299] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(4339), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1209), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4337), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(988), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(986), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_POUND, - STATE(2252), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(4341), 8, - 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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [63375] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(4339), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61797] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4328), 1, + sym__concat, + STATE(1181), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(880), 33, + anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [63451] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(4335), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1210), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4343), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(984), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(982), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_POUND, - STATE(2252), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(4345), 8, - 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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [63527] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(4347), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [63603] = 18, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [61893] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4349), 1, + ACTIONS(4324), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -86178,7 +84479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -86187,164 +84488,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [63679] = 18, + [61969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4330), 1, + sym__concat, + STATE(1181), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(867), 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, - 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(2014), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [62019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(980), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(978), 35, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [63755] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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_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(3703), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, + sym_word, + sym_test_operator, + [62065] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4332), 1, + sym__special_character, + STATE(1170), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_LT_LT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [63831] = 18, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(958), 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, + [62115] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(1996), 1, + ACTIONS(3439), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1217), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3437), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -86352,7 +84670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3441), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -86361,24 +84679,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [63907] = 5, + [62191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4351), 1, - sym__special_character, - STATE(1110), 1, - aux_sym__literal_repeat1, - ACTIONS(1884), 2, + ACTIONS(4335), 1, + sym__concat, + STATE(1467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1901), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1882), 34, + ACTIONS(1899), 34, 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, @@ -86396,6 +84712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86404,108 +84721,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [63957] = 18, + [62241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4335), 1, + sym__concat, + STATE(1470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1859), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1857), 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(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(4355), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1223), 3, - sym_concatenation, - 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(4357), 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, - [64033] = 18, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [62291] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4355), 1, + ACTIONS(4339), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1213), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4337), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -86513,7 +84818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4341), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -86522,26 +84827,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [64109] = 5, + [62367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(962), 2, sym_file_descriptor, - ACTIONS(2281), 1, sym__concat, - STATE(1380), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1865), 35, + ACTIONS(960), 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, @@ -86565,108 +84867,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [64159] = 18, + [62413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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, - 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(4359), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [62459] = 3, + ACTIONS(3), 1, + sym_comment, + 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_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [64235] = 18, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [62505] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(1980), 1, + ACTIONS(4339), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1224), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(1978), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -86674,7 +85005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1982), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -86683,48 +85014,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [64311] = 18, + [62581] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(1980), 1, + ACTIONS(3483), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1223), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3481), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -86732,7 +85063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3485), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -86741,48 +85072,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [64387] = 18, + [62657] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(1988), 1, + ACTIONS(3491), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -86790,7 +85121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -86799,26 +85130,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [64463] = 5, + [62733] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - sym_file_descriptor, - ACTIONS(2281), 1, + ACTIONS(4343), 1, sym__concat, - STATE(1345), 1, + STATE(1181), 1, aux_sym_concatenation_repeat1, - ACTIONS(1873), 35, + ACTIONS(875), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(873), 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, @@ -86842,50 +85172,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [64513] = 18, + [62783] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4361), 1, + ACTIONS(3483), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -86893,7 +85224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -86902,106 +85233,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [64589] = 18, + [62859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(3511), 1, + sym_file_descriptor, + ACTIONS(4346), 1, + sym__special_character, + STATE(1228), 1, + aux_sym__literal_repeat1, + ACTIONS(3509), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, - sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - ACTIONS(4363), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1932), 2, + [62909] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + sym__special_character, + anon_sym_DQUOTE, + 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, - ACTIONS(1950), 2, + sym_test_operator, + [62955] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4348), 1, + sym__special_character, + STATE(1185), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(953), 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, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + sym_word, + sym_test_operator, + [63005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(947), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(945), 36, + anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [64665] = 18, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [63051] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4365), 1, + ACTIONS(4351), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87009,7 +85458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87018,48 +85467,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [64741] = 18, + [63127] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4369), 1, + ACTIONS(3543), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1230), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4367), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87067,7 +85516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4371), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87076,48 +85525,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [64817] = 18, + [63203] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4369), 1, + ACTIONS(3499), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87125,7 +85574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87134,48 +85583,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [64893] = 18, + [63279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4363), 1, + ACTIONS(4353), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1231), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4373), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87183,7 +85632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4375), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87192,149 +85641,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [64969] = 3, - ACTIONS(59), 1, + [63355] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(875), 13, + ACTIONS(902), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(900), 36, + anon_sym_LF, + 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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(1936), 1, - anon_sym_LPAREN, - ACTIONS(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(4377), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [63401] = 3, + ACTIONS(3), 1, + sym_comment, + 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_RPAREN, - anon_sym_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_SEMI_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_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [65091] = 18, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [63447] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4379), 1, + ACTIONS(4357), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1187), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4355), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87342,7 +85776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4359), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87351,48 +85785,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [65167] = 18, + [63523] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2176), 1, + ACTIONS(3439), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87400,7 +85834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87409,48 +85843,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [65243] = 18, + [63599] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2168), 1, + ACTIONS(3467), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87458,7 +85892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87467,48 +85901,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [65319] = 18, + [63675] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4383), 1, + ACTIONS(3543), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1239), 3, + STATE(1133), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4381), 4, + ACTIONS(3541), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87516,7 +85950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4385), 8, + ACTIONS(3545), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87525,106 +85959,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [65395] = 18, - ACTIONS(3), 1, + [63751] = 5, + ACTIONS(59), 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, + ACTIONS(4361), 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(4383), 1, - anon_sym_RBRACE, - STATE(2285), 1, + STATE(1170), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, - 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, + ACTIONS(153), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_LT_LT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [65471] = 18, + 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, + [63801] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2221), 1, + ACTIONS(4363), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1240), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2219), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87632,7 +86053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2223), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87641,48 +86062,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [65547] = 18, + [63877] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2221), 1, + ACTIONS(4363), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1190), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4365), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87690,7 +86111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4367), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87699,48 +86120,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [65623] = 18, + [63953] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2213), 1, + ACTIONS(3551), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87748,7 +86169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87757,48 +86178,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [65699] = 18, + [64029] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4387), 1, + ACTIONS(4357), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87806,7 +86227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87815,106 +86236,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [65775] = 18, + [64105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 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, - 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(4389), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, + sym_word, + sym_test_operator, + [64151] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1828), 1, + anon_sym_BQUOTE, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(4369), 1, + anon_sym_LF, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4162), 2, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_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_PIPE_AMP, + ACTIONS(4249), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(4371), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 20, anon_sym_LT, anon_sym_GT, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [65851] = 18, + anon_sym_GT_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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [64213] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4393), 1, + ACTIONS(4373), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1244), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4391), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87922,7 +86379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4395), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87931,48 +86388,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [65927] = 18, + [64289] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4393), 1, + ACTIONS(3551), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1138), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3549), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -87980,7 +86437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3553), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -87989,48 +86446,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66003] = 18, + [64365] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4389), 1, + ACTIONS(3447), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1245), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4397), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88038,7 +86495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4399), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88047,106 +86504,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66079] = 18, + [64441] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(2662), 1, + sym__concat, + STATE(1144), 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, - 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(4401), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [66155] = 18, + sym_word, + sym_test_operator, + [64491] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4403), 1, + ACTIONS(3457), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88154,7 +86598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88163,164 +86607,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66231] = 18, + [64567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4237), 1, + sym__concat, + STATE(1165), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, - sym_test_operator, - ACTIONS(4407), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1950), 2, + sym_test_operator, + [64617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(913), 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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1218), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4405), 4, + sym_word, + sym_test_operator, + [64663] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + anon_sym_QMARK, + ACTIONS(4377), 1, + anon_sym_AMP, + ACTIONS(4223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4375), 3, + anon_sym_LF, anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3668), 28, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_POUND, - STATE(2252), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(4409), 8, + 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_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [66307] = 18, + anon_sym_PERCENT_EQ, + 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, + [64717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(980), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(978), 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(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(4411), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [66383] = 18, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [64763] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4411), 1, + ACTIONS(4379), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1225), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4413), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88328,7 +86834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4415), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88337,48 +86843,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66459] = 18, + [64839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(976), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(974), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [64885] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4407), 1, + ACTIONS(4383), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1275), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4381), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88386,7 +86935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4385), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88395,48 +86944,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66535] = 18, + [64961] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4417), 1, + ACTIONS(4387), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88444,7 +86993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88453,48 +87002,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66611] = 18, + [65037] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3665), 1, + ACTIONS(4389), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88502,7 +87051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88511,48 +87060,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66687] = 18, + [65113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(943), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(941), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [65159] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3673), 1, + ACTIONS(4393), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1227), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4391), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88560,7 +87152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4395), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88569,48 +87161,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66763] = 18, + [65235] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3673), 1, + ACTIONS(4393), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1249), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3671), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88618,7 +87210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3675), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88627,48 +87219,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66839] = 18, + [65311] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2247), 1, + ACTIONS(4389), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1229), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4397), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88676,7 +87268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4399), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88685,13 +87277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [66915] = 3, + [65387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 2, + ACTIONS(4401), 1, + sym__special_character, + STATE(1185), 1, + aux_sym__literal_repeat1, + ACTIONS(1859), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1869), 36, + ACTIONS(1857), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -88716,7 +87312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -88725,102 +87320,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67023] = 18, + [65437] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4425), 1, + ACTIONS(4403), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -88828,7 +87371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88837,12 +87380,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [67099] = 3, + [65513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(894), 3, sym_file_descriptor, - ACTIONS(1865), 37, + sym__concat, + sym_variable_name, + ACTIONS(892), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -88853,8 +87398,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, @@ -88880,153 +87423,91 @@ static const uint16_t ts_small_parse_table[] = { 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(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(4425), 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(1250), 3, - sym_concatenation, - 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(4429), 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, - [67221] = 7, + [65559] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(875), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(873), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - ACTIONS(3681), 28, + 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, - 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_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_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [67275] = 18, + [65605] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3647), 1, + ACTIONS(4405), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89034,7 +87515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89043,48 +87524,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [67351] = 18, + [65681] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3639), 1, + ACTIONS(4407), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89092,7 +87573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89101,48 +87582,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [67427] = 18, + [65757] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(958), 1, + sym_file_descriptor, + ACTIONS(4409), 1, + sym__special_character, + STATE(1228), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 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, + 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, + [65807] = 18, + ACTIONS(3), 1, + sym_comment, ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2265), 1, + ACTIONS(4412), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89150,7 +87676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89159,48 +87685,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [67503] = 18, + [65883] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4435), 1, + ACTIONS(4383), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89208,7 +87734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89217,106 +87743,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [67579] = 18, + [65959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(898), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(896), 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, - 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(4437), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [67655] = 18, + sym_word, + sym_test_operator, + [66005] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4441), 1, + ACTIONS(3408), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1264), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4439), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89324,7 +87835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4443), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89333,48 +87844,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [67731] = 18, + [66081] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4445), 1, + ACTIONS(4405), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1139), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4414), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89382,7 +87893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4416), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89391,48 +87902,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [67807] = 18, + [66157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(909), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(907), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [66203] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4445), 1, + ACTIONS(3388), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1265), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4447), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89440,7 +87994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4449), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89449,48 +88003,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [67883] = 18, + [66279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4441), 1, + ACTIONS(4420), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1242), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4418), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89498,7 +88052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4422), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89507,48 +88061,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [67959] = 18, + [66355] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4453), 1, + ACTIONS(4420), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1302), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4451), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89556,7 +88110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4455), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89565,48 +88119,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [68035] = 18, + [66431] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4457), 1, + ACTIONS(3370), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1240), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3368), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89614,7 +88168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3372), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89623,91 +88177,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, 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, - 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, + [66507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3607), 1, + ACTIONS(3370), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89715,7 +88226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89724,91 +88235,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, 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, - 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, + [66583] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3615), 1, + ACTIONS(4424), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89816,7 +88284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89825,48 +88293,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [68355] = 18, + [66659] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3615), 1, + ACTIONS(3354), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1269), 3, + STATE(928), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3613), 4, + ACTIONS(3352), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89874,7 +88342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3617), 8, + ACTIONS(3356), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89883,48 +88351,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [68431] = 18, + [66735] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4463), 1, + ACTIONS(4426), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89932,7 +88400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89941,48 +88409,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [68507] = 18, + [66811] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4453), 1, + ACTIONS(3354), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -89990,7 +88458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89999,48 +88467,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [68583] = 18, + [66887] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4463), 1, + ACTIONS(4428), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1271), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4465), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90048,7 +88516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4467), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90057,91 +88525,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, 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, - 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, + [66963] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2293), 1, + ACTIONS(4430), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(928), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2291), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90149,7 +88574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2295), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90158,48 +88583,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [68781] = 18, + [67039] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3589), 1, + ACTIONS(4432), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90207,7 +88632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90216,48 +88641,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [68857] = 18, + [67115] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3581), 1, + ACTIONS(4430), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1204), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4434), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90265,7 +88690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4436), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90274,48 +88699,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [68933] = 18, + [67191] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2293), 1, + ACTIONS(4440), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1253), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4438), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90323,7 +88748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4442), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90332,48 +88757,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69009] = 18, + [67267] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4469), 1, + ACTIONS(4440), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90381,7 +88806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90390,48 +88815,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69085] = 18, + [67343] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4471), 1, + ACTIONS(4424), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1256), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4444), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90439,7 +88864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4446), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90448,48 +88873,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69161] = 18, + [67419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(915), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(913), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [67465] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1932), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1934), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4448), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [67523] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4475), 1, + ACTIONS(4450), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1285), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4473), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90497,7 +89014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4477), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90506,48 +89023,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69237] = 18, + [67599] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4479), 1, + ACTIONS(4454), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1280), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4452), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90555,7 +89072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4456), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90564,48 +89081,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69313] = 18, + [67675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(976), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(974), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [67721] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4479), 1, + ACTIONS(4458), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1286), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4481), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90613,7 +89173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4483), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90622,48 +89182,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69389] = 18, + [67797] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4475), 1, + ACTIONS(3362), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90671,7 +89231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90680,48 +89240,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69465] = 18, + [67873] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4485), 1, + ACTIONS(4428), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1147), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4460), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90729,7 +89289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4462), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90738,48 +89298,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69541] = 18, + [67949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(943), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(941), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [67995] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3549), 1, + ACTIONS(3318), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90787,7 +89390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90796,48 +89399,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69617] = 18, + [68071] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3557), 1, + ACTIONS(4454), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90845,7 +89448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90854,48 +89457,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69693] = 18, + [68147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(894), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(892), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [68193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1901), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1899), 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, + [68239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(873), 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, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [68285] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3557), 1, + ACTIONS(3310), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1290), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3555), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90903,7 +89635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3559), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90912,48 +89644,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69769] = 18, + [68361] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4487), 1, + ACTIONS(3279), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -90961,7 +89693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90970,48 +89702,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69845] = 18, + [68437] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4487), 1, + ACTIONS(3214), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1291), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4489), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91019,7 +89751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4491), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91028,48 +89760,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69921] = 18, + [68513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(865), 2, + sym_file_descriptor, + sym_variable_name, + 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, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [68559] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3531), 1, + ACTIONS(4466), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1291), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4464), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91077,7 +89852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4468), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91086,48 +89861,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [69997] = 18, + [68635] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3523), 1, + ACTIONS(4466), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91135,7 +89910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91144,48 +89919,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70073] = 18, + [68711] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2285), 1, + ACTIONS(3246), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1293), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3244), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91193,7 +89968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3248), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91202,19 +89977,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70149] = 5, + [68787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4260), 1, - sym__concat, - STATE(1012), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1871), 2, + ACTIONS(898), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1869), 34, + sym__concat, + ACTIONS(896), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -91245,21 +90017,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [70199] = 5, + [68833] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4260), 1, - sym__concat, - STATE(1018), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1884), 2, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(3238), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [68909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1882), 34, + sym__concat, + ACTIONS(907), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -91290,50 +90118,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [70249] = 18, + [68955] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4493), 1, + ACTIONS(4470), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91341,7 +90170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91350,91 +90179,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70325] = 3, + [69031] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(988), 36, + ACTIONS(4221), 1, + anon_sym_QMARK, + ACTIONS(4474), 1, + anon_sym_AMP, + ACTIONS(4223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4472), 3, 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, + ACTIONS(3668), 28, + 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_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [70371] = 18, + [69085] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4495), 1, + ACTIONS(3246), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91442,7 +90275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91451,48 +90284,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70447] = 18, + [69161] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(4476), 1, + anon_sym_LF, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1932), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1934), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4478), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [69221] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4497), 1, + ACTIONS(4403), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1281), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4480), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91500,7 +90383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4482), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91509,48 +90392,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70523] = 18, + [69297] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4501), 1, + ACTIONS(4484), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1304), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4499), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91558,7 +90441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4503), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91567,48 +90450,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70599] = 18, + [69373] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4505), 1, + ACTIONS(4486), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91616,7 +90499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91625,48 +90508,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70675] = 18, + [69449] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4505), 1, + ACTIONS(3262), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1305), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4507), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91674,7 +90557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4509), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91683,48 +90566,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70751] = 18, + [69525] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4501), 1, + ACTIONS(4490), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1342), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4488), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91732,7 +90615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4492), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91741,48 +90624,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70827] = 18, + [69601] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4511), 1, + ACTIONS(3198), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91790,7 +90673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91799,48 +90682,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70903] = 18, + [69677] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3491), 1, + ACTIONS(3182), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91848,7 +90731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91857,48 +90740,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [70979] = 18, + [69753] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3499), 1, + ACTIONS(4490), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91906,7 +90789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91915,48 +90798,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71055] = 18, + [69829] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3499), 1, + ACTIONS(3164), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1309), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3497), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -91964,7 +90847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3501), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91973,23 +90856,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71131] = 3, + [69905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 2, + ACTIONS(1865), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(4513), 36, + ACTIONS(2662), 1, + sym__concat, + STATE(1032), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1863), 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, @@ -92013,51 +90899,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [71177] = 18, + [69955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1869), 1, + sym_file_descriptor, + ACTIONS(2662), 1, + sym__concat, + STATE(1144), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1867), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [70005] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4517), 1, + ACTIONS(4047), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1346), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4494), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92065,7 +90995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4496), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92074,48 +91004,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71253] = 18, + [70081] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4517), 1, + ACTIONS(4498), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1310), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4519), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92123,7 +91053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4521), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92132,48 +91062,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71329] = 18, + [70157] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3473), 1, + ACTIONS(4502), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1357), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4500), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92181,7 +91111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4504), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92190,48 +91120,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71405] = 18, + [70233] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3455), 1, + ACTIONS(4506), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92239,7 +91169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92248,48 +91178,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71481] = 18, + [70309] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4525), 1, + ACTIONS(4502), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1336), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4523), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92297,7 +91227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4527), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92306,48 +91236,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71557] = 18, + [70385] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4529), 1, + ACTIONS(2989), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1359), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2987), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92355,7 +91285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2991), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92364,48 +91294,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71633] = 18, + [70461] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4531), 1, + ACTIONS(2989), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92413,7 +91343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92422,91 +91352,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71709] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [71755] = 18, + [70537] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4539), 1, + ACTIONS(4510), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1320), 3, + STATE(1304), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4537), 4, + ACTIONS(4508), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92514,7 +91401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4541), 8, + ACTIONS(4512), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92523,48 +91410,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71831] = 18, + [70613] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4543), 1, + ACTIONS(3148), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92572,7 +91459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92581,48 +91468,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71907] = 18, + [70689] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4543), 1, + ACTIONS(4510), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1321), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4545), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92630,7 +91517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4547), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92639,48 +91526,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [71983] = 18, + [70765] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4539), 1, + ACTIONS(3140), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92688,7 +91575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92697,48 +91584,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72059] = 18, + [70841] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4549), 1, + ACTIONS(4506), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1306), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4514), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92746,7 +91633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4516), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92755,48 +91642,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72135] = 18, + [70917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(2834), 1, + sym__concat, + STATE(1419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(178), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(151), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [70967] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3423), 1, + ACTIONS(4518), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92804,7 +91736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92813,48 +91745,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72211] = 18, + [71043] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4525), 1, + ACTIONS(4520), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92862,7 +91794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92871,48 +91803,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72287] = 18, + [71119] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3431), 1, + ACTIONS(4522), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92920,7 +91852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92929,48 +91861,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72363] = 18, + [71195] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3431), 1, + ACTIONS(4524), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1326), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3429), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -92978,7 +91910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3433), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92987,48 +91919,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72439] = 18, + [71271] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4551), 1, + ACTIONS(4526), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93036,7 +91968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93045,48 +91977,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72515] = 18, + [71347] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4055), 1, + sym__concat, + STATE(970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1901), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1899), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [71397] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + sym__concat, + STATE(963), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1859), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1857), 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, + [71447] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4551), 1, + ACTIONS(3132), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1327), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4553), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93094,7 +92116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4555), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93103,48 +92125,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72591] = 18, + [71523] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4049), 1, + ACTIONS(4528), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1337), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4557), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93152,7 +92174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4559), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93161,48 +92183,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72667] = 18, + [71599] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3405), 1, + ACTIONS(4532), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1305), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4530), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93210,7 +92232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4534), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93219,48 +92241,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72743] = 18, + [71675] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4561), 1, + ACTIONS(4536), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93268,7 +92290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93277,48 +92299,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72819] = 18, + [71751] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4563), 1, + ACTIONS(4536), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1311), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4538), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93326,7 +92348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4540), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93335,48 +92357,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72895] = 18, + [71827] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2327), 1, + ACTIONS(4532), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93384,7 +92406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93393,48 +92415,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [72971] = 18, + [71903] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3395), 1, + ACTIONS(4542), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93442,7 +92464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93451,48 +92473,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73047] = 18, + [71979] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2335), 1, + ACTIONS(4544), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93500,7 +92522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93509,48 +92531,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73123] = 18, + [72055] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4567), 1, + ACTIONS(3076), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1351), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4565), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93558,7 +92580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4569), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93567,48 +92589,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73199] = 18, + [72131] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4567), 1, + ACTIONS(4548), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1307), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4546), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93616,7 +92638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4550), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93625,48 +92647,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73275] = 18, + [72207] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2364), 1, + ACTIONS(3084), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1352), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2362), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93674,7 +92696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2366), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93683,48 +92705,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73351] = 18, + [72283] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4571), 1, + ACTIONS(3084), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1315), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3082), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93732,7 +92754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3086), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93741,26 +92763,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73427] = 5, + [72359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(4554), 2, sym_file_descriptor, - ACTIONS(4573), 1, - sym__concat, - STATE(1090), 1, - aux_sym_concatenation_repeat1, - ACTIONS(869), 35, + sym_variable_name, + ACTIONS(4552), 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, @@ -93784,95 +92803,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [73477] = 5, + [72405] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, - STATE(955), 1, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4556), 1, + anon_sym_RBRACE, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1884), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1882), 34, - anon_sym_LF, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [72481] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4556), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [73527] = 18, + STATE(1316), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4558), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4560), 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, + [72557] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4575), 1, + ACTIONS(4562), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93880,7 +92971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93889,48 +92980,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73603] = 18, + [72633] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2364), 1, + ACTIONS(4562), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1317), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4564), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93938,7 +93029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4566), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93947,48 +93038,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73679] = 18, + [72709] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2356), 1, + ACTIONS(3058), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -93996,7 +93087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94005,48 +93096,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73755] = 18, + [72785] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4579), 1, + ACTIONS(4548), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1344), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4577), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94054,7 +93145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4581), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94063,48 +93154,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73831] = 18, + [72861] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4583), 1, + ACTIONS(3042), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94112,7 +93203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94121,48 +93212,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73907] = 18, + [72937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4570), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4568), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [72983] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4585), 1, + ACTIONS(4572), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94170,7 +93304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94179,48 +93313,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [73983] = 18, + [73059] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4587), 1, + ACTIONS(3034), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94228,7 +93362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94237,48 +93371,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74059] = 18, + [73135] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4587), 1, + ACTIONS(4574), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1347), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4589), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94286,7 +93420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4591), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94295,48 +93429,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74135] = 18, + [73211] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4579), 1, + ACTIONS(3023), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94344,7 +93478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94353,48 +93487,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74211] = 18, + [73287] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4595), 1, + ACTIONS(4576), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1361), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4593), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94402,7 +93536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4597), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94411,48 +93545,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74287] = 18, + [73363] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4599), 1, + ACTIONS(4578), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94460,7 +93594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94469,48 +93603,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74363] = 18, + [73439] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4595), 1, + ACTIONS(4582), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1335), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4580), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94518,7 +93652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4584), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94527,48 +93661,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74439] = 18, + [73515] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3363), 1, + ACTIONS(4586), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94576,7 +93710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94585,48 +93719,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74515] = 18, + [73591] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4585), 1, + ACTIONS(4586), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1365), 3, + STATE(1336), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4601), 4, + ACTIONS(4588), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94634,7 +93768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4603), 8, + ACTIONS(4590), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94643,48 +93777,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74591] = 18, + [73667] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4605), 1, + ACTIONS(4582), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94692,7 +93826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94701,48 +93835,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74667] = 18, + [73743] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3371), 1, + ACTIONS(4592), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94750,7 +93884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94759,48 +93893,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74743] = 18, + [73819] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3371), 1, + ACTIONS(4594), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1355), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3369), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94808,7 +93942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3373), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94817,48 +93951,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74819] = 18, + [73895] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4607), 1, + ACTIONS(2981), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94866,7 +94000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94875,48 +94009,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74895] = 18, + [73971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(863), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 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, + [74017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 1, + sym__concat, + STATE(1165), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1919), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1917), 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, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [74067] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4609), 1, + ACTIONS(4596), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94924,7 +94146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94933,48 +94155,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [74971] = 18, + [74143] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2392), 1, + ACTIONS(4600), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1303), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4598), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -94982,7 +94204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4602), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94991,48 +94213,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75047] = 18, + [74219] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4607), 1, + ACTIONS(2953), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1357), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4611), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95040,7 +94262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4613), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95049,48 +94271,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75123] = 18, + [74295] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4617), 1, + ACTIONS(2997), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1566), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4615), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95098,7 +94320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4619), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95107,48 +94329,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75199] = 18, + [74371] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2400), 1, + ACTIONS(2997), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1340), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2995), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95156,7 +94378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2999), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95165,48 +94387,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75275] = 18, + [74447] = 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(1871), 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, + [74493] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2613), 1, + ACTIONS(4604), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95214,7 +94479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95223,48 +94488,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75351] = 18, + [74569] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4617), 1, + ACTIONS(4604), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1333), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4606), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95272,7 +94537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4608), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95281,48 +94546,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75427] = 18, + [74645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4120), 1, + sym__special_character, + STATE(1022), 1, + aux_sym__literal_repeat1, + ACTIONS(1859), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1857), 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, + [74695] = 18, + ACTIONS(3), 1, + sym_comment, ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3343), 1, + ACTIONS(4610), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95330,7 +94640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95339,48 +94649,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75503] = 18, + [74771] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(4630), 1, - anon_sym_RBRACE, - ACTIONS(4635), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4638), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(4641), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(4644), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(4650), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4653), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(4659), 1, + ACTIONS(1968), 1, sym_test_operator, - STATE(2285), 1, + ACTIONS(4600), 1, + anon_sym_RBRACE, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(4621), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(4647), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4656), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4624), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95388,7 +94698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4632), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95397,48 +94707,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75579] = 18, + [74847] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4664), 1, + ACTIONS(4612), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1382), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4662), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95446,7 +94756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4666), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95455,48 +94765,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75655] = 18, + [74923] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3285), 1, + ACTIONS(4610), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1564), 3, + STATE(1341), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3283), 4, + ACTIONS(4614), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95504,7 +94814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3287), 8, + ACTIONS(4616), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95513,48 +94823,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75731] = 18, + [74999] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3285), 1, + ACTIONS(4618), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95562,7 +94872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95571,48 +94881,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75807] = 18, + [75075] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4664), 1, + ACTIONS(4622), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1368), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4620), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95620,7 +94930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4624), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95629,48 +94939,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75883] = 18, + [75151] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2426), 1, + ACTIONS(4626), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1383), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2424), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95678,7 +94988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2428), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95687,48 +94997,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [75959] = 18, + [75227] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2426), 1, + ACTIONS(2908), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95736,7 +95046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95745,93 +95055,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76035] = 5, + [75303] = 18, ACTIONS(3), 1, sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [76085] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2418), 1, + ACTIONS(2937), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95839,7 +95104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95848,48 +95113,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76161] = 18, + [75379] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4670), 1, + ACTIONS(4622), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95897,7 +95162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95906,48 +95171,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76237] = 18, + [75455] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4672), 1, + ACTIONS(4432), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1420), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4628), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -95955,7 +95220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4630), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95964,93 +95229,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76313] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + [75531] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4674), 1, + ACTIONS(4618), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1369), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4632), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96058,7 +95278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4634), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96067,151 +95287,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76439] = 18, + [75607] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4678), 1, + ACTIONS(2926), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1395), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4676), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(4680), 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, - [76515] = 5, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [76565] = 18, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [75683] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4682), 1, + ACTIONS(4636), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96219,7 +95394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96228,48 +95403,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76641] = 18, + [75759] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4686), 1, + ACTIONS(4638), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1385), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4684), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96277,7 +95452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4688), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96286,48 +95461,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76717] = 18, + [75835] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4690), 1, + ACTIONS(2136), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96335,7 +95510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96344,48 +95519,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76793] = 18, + [75911] = 3, + ACTIONS(59), 1, + sym_comment, + 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, + anon_sym_CARET, + ACTIONS(865), 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, + [75957] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4690), 1, + ACTIONS(3050), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1388), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4692), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96393,7 +95611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4694), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96402,48 +95620,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76869] = 18, + [76033] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4686), 1, + ACTIONS(2971), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96451,7 +95669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96460,48 +95678,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [76945] = 18, + [76109] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4678), 1, + ACTIONS(3050), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1328), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3048), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96509,7 +95727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3052), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96518,48 +95736,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77021] = 18, + [76185] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4672), 1, + ACTIONS(2971), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1398), 3, + STATE(1356), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4696), 4, + ACTIONS(2969), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96567,7 +95785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4698), 8, + ACTIONS(2973), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96576,48 +95794,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77097] = 18, + [76261] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4700), 1, + ACTIONS(4640), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96625,7 +95843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96634,93 +95852,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77173] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3469), 1, - sym_file_descriptor, - ACTIONS(4702), 1, - sym__special_character, - 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, - 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, - [77223] = 18, + [76337] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4704), 1, + ACTIONS(4642), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96728,7 +95901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96737,48 +95910,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77299] = 18, + [76413] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4706), 1, + ACTIONS(4646), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1376), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4644), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96786,7 +95959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4648), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96795,48 +95968,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77375] = 18, + [76489] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2450), 1, + ACTIONS(4650), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96844,7 +96017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96853,48 +96026,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77451] = 18, + [76565] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3311), 1, + ACTIONS(4650), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1377), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4652), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96902,7 +96075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4654), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96911,48 +96084,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77527] = 18, + [76641] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2458), 1, + ACTIONS(4646), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -96960,7 +96133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96969,48 +96142,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77603] = 18, + [76717] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4708), 1, + ACTIONS(4656), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97018,7 +96191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97027,48 +96200,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77679] = 18, + [76793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1877), 1, + sym_file_descriptor, + ACTIONS(2662), 1, + sym__concat, + STATE(1032), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1875), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [76843] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4710), 1, + ACTIONS(2810), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97076,7 +96294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97085,48 +96303,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77755] = 18, + [76919] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4714), 1, + ACTIONS(2884), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1410), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4712), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97134,7 +96352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4716), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97143,93 +96361,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77831] = 5, - ACTIONS(59), 1, + [76995] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, - sym__special_character, - STATE(1162), 1, - aux_sym__literal_repeat1, - ACTIONS(153), 13, + ACTIONS(1881), 1, + sym_file_descriptor, + ACTIONS(2662), 1, + sym__concat, + STATE(1144), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1879), 35, + anon_sym_LF, + 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_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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [77881] = 18, + [77045] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4714), 1, + ACTIONS(2846), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97237,7 +96455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97246,48 +96464,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [77957] = 18, + [77121] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2489), 1, + ACTIONS(2802), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1411), 3, + STATE(1422), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2487), 4, + ACTIONS(2800), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97295,7 +96513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2491), 8, + ACTIONS(2804), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97304,48 +96522,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78033] = 18, + [77197] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2489), 1, + ACTIONS(4658), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97353,7 +96571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97362,48 +96580,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78109] = 18, + [77273] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2481), 1, + ACTIONS(4660), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97411,7 +96629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97420,48 +96638,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78185] = 18, + [77349] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4720), 1, + ACTIONS(4660), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1331), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4662), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97469,7 +96687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4664), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97478,48 +96696,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78261] = 18, + [77425] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4722), 1, + ACTIONS(4668), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1407), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4666), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97527,7 +96745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4670), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97536,48 +96754,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78337] = 18, + [77501] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4726), 1, + ACTIONS(4668), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1415), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4724), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97585,7 +96803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4728), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97594,48 +96812,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78413] = 18, + [77577] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4726), 1, + ACTIONS(3457), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1201), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(3455), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97643,7 +96861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(3459), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97652,48 +96870,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78489] = 18, + [77653] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4722), 1, + ACTIONS(2794), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1416), 3, + STATE(1408), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4730), 4, + ACTIONS(2792), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97701,7 +96919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4732), 8, + ACTIONS(2796), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97710,48 +96928,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78565] = 18, + [77729] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4734), 1, + ACTIONS(2794), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97759,7 +96977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97768,48 +96986,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78641] = 18, + [77805] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4736), 1, + ACTIONS(2514), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97817,7 +97035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97826,48 +97044,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78717] = 18, + [77881] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2513), 1, + ACTIONS(2802), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -97875,7 +97093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97884,142 +97102,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78793] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - sym__special_character, - anon_sym_DQUOTE, - 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, - [78839] = 11, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [78901] = 18, + [77957] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2521), 1, + ACTIONS(2818), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98027,7 +97151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98036,44 +97160,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [78977] = 5, - ACTIONS(59), 1, + [78033] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4742), 1, - sym__concat, - STATE(1431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(863), 13, + ACTIONS(2860), 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_PERCENT, - 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, anon_sym_PERCENT_EQ, anon_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, @@ -98081,48 +97202,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [79027] = 18, + [78077] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4746), 1, + ACTIONS(2826), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1437), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4744), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98130,7 +97251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4748), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98139,48 +97260,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [79103] = 18, + [78153] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3319), 1, + ACTIONS(4658), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1361), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4672), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98188,7 +97309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4674), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98197,65 +97318,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [78229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - sym_file_descriptor, - ACTIONS(2281), 1, + ACTIONS(2834), 1, sym__concat, - STATE(1380), 1, + STATE(1415), 1, aux_sym_concatenation_repeat1, - ACTIONS(875), 35, + 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, @@ -98287,48 +97363,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [79279] = 18, + [78279] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + anon_sym_QMARK, + ACTIONS(4678), 1, + anon_sym_AMP, + ACTIONS(4223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4676), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3668), 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, + [78333] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3319), 1, + ACTIONS(2868), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1392), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3317), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98336,7 +97459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3321), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98345,106 +97468,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [79355] = 18, + [78409] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(2834), 1, + sym__concat, + STATE(1415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(863), 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, - 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(4752), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [79431] = 18, + sym_word, + sym_test_operator, + [78459] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4746), 1, + ACTIONS(4680), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98452,7 +97562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98461,48 +97571,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [79507] = 18, + [78535] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2547), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1440), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2545), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98510,7 +97620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2549), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98519,48 +97629,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [79583] = 18, + [78611] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4752), 1, + ACTIONS(4686), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1397), 3, + STATE(1414), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4754), 4, + ACTIONS(4684), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98568,7 +97678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4756), 8, + ACTIONS(4688), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98577,151 +97687,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [79659] = 5, - ACTIONS(59), 1, + [78687] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - sym__concat, - STATE(1431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(879), 13, + ACTIONS(4221), 1, + anon_sym_QMARK, + ACTIONS(4692), 1, + anon_sym_AMP, + ACTIONS(4223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4690), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3668), 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_PERCENT, - 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, anon_sym_PERCENT_EQ, 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, sym_test_operator, - [79709] = 18, + [78741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4335), 1, + sym__concat, + STATE(1470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1913), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1911), 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(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(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, - ACTIONS(1958), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [79785] = 18, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [78791] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3301), 1, + ACTIONS(4686), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98729,7 +97828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98738,48 +97837,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [79861] = 18, + [78867] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3277), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1417), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4694), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98787,7 +97886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4696), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98796,48 +97895,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [79937] = 18, + [78943] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3269), 1, + ACTIONS(4698), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98845,7 +97944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98854,106 +97953,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80013] = 18, + [79019] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4700), 1, + sym__concat, + STATE(1606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(880), 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, - 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(2539), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + sym_word, + sym_test_operator, + [79069] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4335), 1, + sym__concat, + STATE(1467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1919), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1917), 34, + anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_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_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - [80089] = 18, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [79119] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4761), 1, + ACTIONS(4702), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -98961,7 +98092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98970,106 +98101,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80165] = 18, + [79195] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4221), 1, + anon_sym_QMARK, + ACTIONS(4706), 1, + anon_sym_AMP, + ACTIONS(4223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3668), 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, + [79249] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4708), 1, + sym__concat, + STATE(1606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(867), 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, - 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(4763), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [80241] = 18, + sym_word, + sym_test_operator, + [79299] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4765), 1, + ACTIONS(4710), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99077,7 +98242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99086,48 +98251,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80317] = 18, + [79375] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(2834), 1, + sym__concat, + STATE(1415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1881), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1879), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [79425] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4767), 1, + ACTIONS(4712), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99135,7 +98345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99144,48 +98354,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80393] = 18, + [79501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(2834), 1, + sym__concat, + STATE(1419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1877), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1875), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [79551] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4771), 1, + ACTIONS(4716), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1438), 3, + STATE(1468), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4769), 4, + ACTIONS(4714), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99193,7 +98448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4773), 8, + ACTIONS(4718), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99202,48 +98457,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80469] = 18, + [79627] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4775), 1, + ACTIONS(2750), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99251,7 +98506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99260,48 +98515,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80545] = 18, + [79703] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4720), 1, + sym__special_character, + STATE(1116), 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, + 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, + [79753] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4775), 1, + ACTIONS(2666), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1439), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4777), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99309,7 +98609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4779), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99318,48 +98618,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80621] = 18, + [79829] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4771), 1, + ACTIONS(2706), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99367,7 +98667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99376,48 +98676,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80697] = 18, + [79905] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4722), 1, + sym__concat, + STATE(1439), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 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(882), 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, + [79955] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(810), 1, + sym__concat, + STATE(1105), 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, + anon_sym_CARET, + ACTIONS(1871), 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, + [80005] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4781), 1, + ACTIONS(2714), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99425,7 +98815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99434,48 +98824,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80773] = 18, + [80081] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4724), 1, + sym__concat, + STATE(1439), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 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(869), 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, + [80131] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3237), 1, + ACTIONS(2674), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99483,7 +98918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99492,48 +98927,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80849] = 18, + [80207] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3245), 1, + ACTIONS(2690), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99541,7 +98976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99550,48 +98985,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [80925] = 18, + [80283] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(724), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(744), 1, sym_test_operator, - ACTIONS(3245), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(4118), 1, + sym_variable_name, + STATE(443), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, - sym_word, - ACTIONS(1950), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1958), 2, + STATE(1475), 1, + sym__expression, + STATE(3618), 1, + sym_variable_assignment, + STATE(3980), 1, + sym_subscript, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1444), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(3243), 4, + ACTIONS(722), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(4726), 4, + anon_sym_LF, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_POUND, - STATE(2252), 7, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(814), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99599,57 +99046,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3247), 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, - [81001] = 18, + [80365] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4783), 1, + ACTIONS(4730), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1451), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4728), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99657,7 +99095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4732), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99666,48 +99104,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81077] = 18, + [80441] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4783), 1, + ACTIONS(4730), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1445), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4785), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99715,7 +99153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4787), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99724,48 +99162,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81153] = 18, + [80517] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3219), 1, + ACTIONS(2868), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1381), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2866), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99773,7 +99211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2870), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99782,48 +99220,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81229] = 18, + [80593] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4734), 1, + sym__concat, + STATE(1439), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 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(875), 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, + [80643] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3211), 1, + ACTIONS(2640), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1452), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2638), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99831,7 +99314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2642), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99840,48 +99323,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81305] = 18, + [80719] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4791), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1458), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4789), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99889,7 +99372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4793), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99898,48 +99381,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81381] = 18, + [80795] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4795), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1113), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2696), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -99947,7 +99430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2700), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99956,48 +99439,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81457] = 18, + [80871] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(4743), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4746), 1, + anon_sym_RBRACE, + ACTIONS(4751), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(4754), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(4757), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(4760), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(4766), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(4769), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(4775), 1, sym_test_operator, - ACTIONS(4797), 1, - anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(4737), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(4763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(4772), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4740), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100005,7 +99488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4748), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100014,48 +99497,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81533] = 18, + [80947] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4791), 1, + ACTIONS(2640), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100063,7 +99546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100072,48 +99555,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81609] = 18, + [81023] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4767), 1, + ACTIONS(4778), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1460), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4799), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100121,7 +99604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4801), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100130,48 +99613,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81685] = 18, + [81099] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4803), 1, + ACTIONS(4780), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100179,7 +99662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100188,17 +99671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81761] = 5, + [81175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4805), 1, + ACTIONS(178), 1, + sym_file_descriptor, + ACTIONS(2662), 1, sym__concat, - STATE(1469), 1, + STATE(1032), 1, aux_sym_concatenation_repeat1, - ACTIONS(865), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(863), 34, + ACTIONS(151), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -100207,6 +99689,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, @@ -100230,51 +99714,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [81811] = 18, + [81225] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4807), 1, + ACTIONS(2656), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100282,7 +99765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100291,48 +99774,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81887] = 18, + [81301] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2571), 1, + ACTIONS(4780), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1114), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4782), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100340,7 +99823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4784), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100349,17 +99832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [81963] = 5, + [81377] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4809), 1, + ACTIONS(861), 1, + sym_file_descriptor, + ACTIONS(2662), 1, sym__concat, - STATE(1469), 1, + STATE(1144), 1, aux_sym_concatenation_repeat1, - ACTIONS(871), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(869), 34, + ACTIONS(852), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -100368,6 +99850,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, @@ -100391,51 +99875,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [82013] = 18, + [81427] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2579), 1, + ACTIONS(4786), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100443,7 +99926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100452,93 +99935,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82089] = 5, - ACTIONS(59), 1, + [81503] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 1, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, - STATE(1464), 1, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4788), 1, + anon_sym_RBRACE, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(922), 13, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 8, 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(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, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [81579] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4816), 1, + ACTIONS(4792), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1472), 3, + STATE(1456), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4814), 4, + ACTIONS(4790), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100546,7 +100042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4818), 8, + ACTIONS(4794), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100555,48 +100051,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82215] = 18, + [81655] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4816), 1, + ACTIONS(4792), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100604,7 +100100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100613,48 +100109,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82291] = 18, + [81731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2605), 1, + ACTIONS(4788), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1473), 3, + STATE(1457), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2603), 4, + ACTIONS(4796), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100662,7 +100158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2607), 8, + ACTIONS(4798), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100671,48 +100167,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82367] = 18, + [81807] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4822), 1, + ACTIONS(4800), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1454), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4820), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100720,7 +100216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4824), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100729,93 +100225,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82443] = 5, + [81883] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4802), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 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(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [81959] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4804), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [82493] = 18, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [82035] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2605), 1, + ACTIONS(4806), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100823,7 +100390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100832,48 +100399,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82569] = 18, + [82111] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2860), 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(4808), 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, + [82157] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2860), 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(4808), 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, + [82203] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3935), 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(4810), 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, + [82249] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2597), 1, + ACTIONS(4716), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100881,7 +100577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100890,48 +100586,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82645] = 18, + [82325] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4237), 1, + sym__concat, + STATE(1168), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1913), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1911), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [82375] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4829), 1, + ACTIONS(4712), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1473), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4812), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100939,7 +100680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4814), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100948,48 +100689,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82721] = 18, + [82451] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4831), 1, + ACTIONS(2616), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -100997,7 +100738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101006,48 +100747,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82797] = 18, + [82527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4816), 1, + sym__concat, + STATE(1477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(880), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [82577] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4835), 1, + ACTIONS(4818), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1479), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4833), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101055,7 +100841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4837), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101064,48 +100850,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82873] = 18, + [82653] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4839), 1, + ACTIONS(2574), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101113,7 +100899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101122,48 +100908,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [82949] = 18, + [82729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4820), 1, + sym__concat, + STATE(1477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(867), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [82779] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4835), 1, + ACTIONS(2214), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1531), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2212), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101171,7 +101002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2216), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101180,48 +101011,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83025] = 18, + [82855] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4822), 1, + sym__special_character, + STATE(1472), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 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), 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, + [82905] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4839), 1, + ACTIONS(4825), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1455), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4841), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101229,7 +101105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4843), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101238,48 +101114,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83101] = 18, + [82981] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + anon_sym_QMARK, + ACTIONS(4829), 1, + anon_sym_AMP, + ACTIONS(4223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4827), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3668), 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, + [83035] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + anon_sym_QMARK, + ACTIONS(4833), 1, + anon_sym_AMP, + ACTIONS(4223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4831), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3668), 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, + [83089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4831), 1, + ACTIONS(4778), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1480), 3, + STATE(1382), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4845), 4, + ACTIONS(4835), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101287,7 +101257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4847), 8, + ACTIONS(4837), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101296,48 +101266,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83177] = 18, + [83165] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4839), 1, + sym__concat, + STATE(1477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(873), 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(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [83215] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4849), 1, + ACTIONS(4844), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1486), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4842), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101345,7 +101360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4846), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101354,48 +101369,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83253] = 18, + [83291] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4851), 1, + ACTIONS(4844), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101403,7 +101418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101412,48 +101427,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83329] = 18, + [83367] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2629), 1, + ACTIONS(2538), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1487), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2536), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101461,7 +101476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2540), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101470,48 +101485,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83405] = 18, + [83443] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2637), 1, + ACTIONS(2538), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101519,7 +101534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101528,48 +101543,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83481] = 18, + [83519] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4855), 1, + ACTIONS(2582), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1488), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4853), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101577,7 +101592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4857), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101586,48 +101601,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83557] = 18, + [83595] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4855), 1, + ACTIONS(2548), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101635,7 +101650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101644,48 +101659,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83633] = 18, + [83671] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2663), 1, + ACTIONS(2564), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1489), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2661), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101693,7 +101708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2665), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101702,48 +101717,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83709] = 18, + [83747] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2663), 1, + ACTIONS(4850), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1499), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4848), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101751,7 +101766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4852), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101760,48 +101775,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83785] = 18, + [83823] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2655), 1, + ACTIONS(4854), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101809,7 +101824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101818,48 +101833,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83861] = 18, + [83899] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4859), 1, + ACTIONS(4856), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101867,7 +101882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101876,48 +101891,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [83937] = 18, + [83975] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4861), 1, + ACTIONS(4860), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1491), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4858), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101925,7 +101940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4862), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101934,48 +101949,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84013] = 18, + [84051] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4865), 1, + ACTIONS(4860), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1494), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4863), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -101983,7 +101998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4867), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101992,48 +102007,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84089] = 18, + [84127] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4865), 1, + ACTIONS(4856), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1492), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4864), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102041,7 +102056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4866), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102050,48 +102065,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84165] = 18, + [84203] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4861), 1, + ACTIONS(4868), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1495), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4869), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102099,7 +102114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4871), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102108,93 +102123,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84241] = 5, + [84279] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, anon_sym_DOLLAR, + ACTIONS(1954), 1, sym__special_character, + ACTIONS(1956), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(4870), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [84291] = 18, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 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, + [84355] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4873), 1, + ACTIONS(4850), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102202,7 +102230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102211,48 +102239,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84367] = 18, + [84431] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4875), 1, + ACTIONS(2498), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1500), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2496), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102260,7 +102288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2500), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102269,48 +102297,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84443] = 18, + [84507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2687), 1, + ACTIONS(2498), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102318,7 +102346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102327,48 +102355,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84519] = 18, + [84583] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2695), 1, + ACTIONS(2506), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102376,7 +102404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102385,48 +102413,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84595] = 18, + [84659] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4879), 1, + ACTIONS(4872), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1503), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4877), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102434,7 +102462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4881), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102443,48 +102471,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84671] = 18, + [84735] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4879), 1, + ACTIONS(2480), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102492,7 +102520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102501,48 +102529,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84747] = 18, + [84811] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2721), 1, + ACTIONS(4874), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1504), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2719), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102550,7 +102578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2723), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102559,48 +102587,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84823] = 18, + [84887] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2721), 1, + ACTIONS(4876), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102608,7 +102636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102617,106 +102645,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [84899] = 18, + [84963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(4335), 1, + sym__concat, + STATE(1467), 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, - 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(2713), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [84975] = 18, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [85013] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4883), 1, + ACTIONS(4880), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1509), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4878), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102724,7 +102739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4882), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102733,48 +102748,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85051] = 18, + [85089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4885), 1, + ACTIONS(4880), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102782,7 +102797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102791,48 +102806,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85127] = 18, + [85165] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4889), 1, + ACTIONS(2464), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1509), 3, + STATE(1510), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4887), 4, + ACTIONS(2462), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102840,7 +102855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4891), 8, + ACTIONS(2466), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102849,48 +102864,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85203] = 18, + [85241] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4822), 1, + ACTIONS(2464), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102898,7 +102913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102907,48 +102922,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85279] = 18, + [85317] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4889), 1, + ACTIONS(4886), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1517), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4884), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -102956,7 +102971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4888), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102965,48 +102980,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85355] = 18, + [85393] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4885), 1, + ACTIONS(2472), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1510), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4893), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103014,7 +103029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4895), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103023,48 +103038,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85431] = 18, + [85469] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4897), 1, + ACTIONS(4886), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103072,7 +103087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103081,48 +103096,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85507] = 18, + [85545] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4899), 1, + ACTIONS(4890), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103130,7 +103145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103139,106 +103154,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85583] = 18, + [85621] = 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(1960), 1, - sym_test_operator, - ACTIONS(2745), 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, - [85659] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2755), 1, + ACTIONS(4892), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103246,7 +103203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103255,48 +103212,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85735] = 18, + [85697] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4901), 1, + ACTIONS(4896), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1515), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4894), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103304,7 +103261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4898), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103313,48 +103270,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85811] = 18, + [85773] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4905), 1, + ACTIONS(4896), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1521), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4903), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103362,7 +103319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4907), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103371,48 +103328,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85887] = 18, + [85849] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3179), 1, + ACTIONS(4892), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1516), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4900), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103420,7 +103377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4902), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103429,48 +103386,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [85963] = 18, + [85925] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4905), 1, + ACTIONS(4876), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1518), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4904), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103478,7 +103435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4906), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103487,48 +103444,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86039] = 18, + [86001] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2781), 1, + ACTIONS(4908), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1522), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2779), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103536,7 +103493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2783), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103545,48 +103502,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86115] = 18, + [86077] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2781), 1, + ACTIONS(4910), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103594,7 +103551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103603,48 +103560,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86191] = 18, + [86153] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2773), 1, + ACTIONS(4912), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103652,7 +103609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103661,48 +103618,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86267] = 18, + [86229] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3187), 1, + ACTIONS(4914), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103710,7 +103667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103719,48 +103676,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86343] = 18, + [86305] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4909), 1, + ACTIONS(4918), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1458), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4916), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103768,7 +103725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4920), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103777,48 +103734,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86419] = 18, + [86381] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4911), 1, + ACTIONS(2416), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103826,7 +103783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103835,48 +103792,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86495] = 18, + [86457] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4915), 1, + ACTIONS(2290), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1526), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4913), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103884,7 +103841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4917), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103893,48 +103850,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86571] = 18, + [86533] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4915), 1, + ACTIONS(4922), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -103942,7 +103899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103951,48 +103908,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86647] = 18, + [86609] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4911), 1, + ACTIONS(2390), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1527), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4919), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104000,7 +103957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4921), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104009,48 +103966,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86723] = 18, + [86685] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4923), 1, + ACTIONS(4922), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1459), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4924), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104058,7 +104015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4926), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104067,48 +104024,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86799] = 18, + [86761] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(724), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(744), 1, sym_test_operator, - ACTIONS(4925), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(4118), 1, + sym_variable_name, + STATE(443), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, - sym_number, - sym_word, - ACTIONS(1950), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1958), 2, + STATE(1064), 1, + sym__expression, + STATE(3624), 1, + sym_variable_assignment, + STATE(3980), 1, + sym_subscript, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, - sym_concatenation, - sym_array, - aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(722), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(4928), 4, + anon_sym_LF, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_POUND, - STATE(2252), 7, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(814), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104116,57 +104085,48 @@ static const uint16_t ts_small_parse_table[] = { 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, - [86875] = 18, + [86843] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2805), 1, + ACTIONS(4932), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1534), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4930), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104174,7 +104134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4934), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104183,48 +104143,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [86951] = 18, + [86919] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2813), 1, + ACTIONS(4932), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104232,7 +104192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104241,48 +104201,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87027] = 18, + [86995] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + anon_sym_QMARK, + ACTIONS(4938), 1, + anon_sym_AMP, + ACTIONS(4223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3670), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4936), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3668), 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, + [87049] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4929), 1, + ACTIONS(2372), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1541), 3, + STATE(1535), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4927), 4, + ACTIONS(2370), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104290,7 +104297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4931), 8, + ACTIONS(2374), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104299,48 +104306,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87103] = 18, + [87125] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4929), 1, + ACTIONS(2372), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104348,7 +104355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104357,48 +104364,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87179] = 18, + [87201] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2839), 1, + ACTIONS(4918), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1543), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2837), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104406,7 +104413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2841), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104415,48 +104422,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87255] = 18, + [87277] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2839), 1, + ACTIONS(2382), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104464,7 +104471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104473,48 +104480,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87331] = 18, + [87353] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3187), 1, + ACTIONS(2398), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1506), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3185), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104522,7 +104529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3189), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104531,48 +104538,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87407] = 18, + [87429] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4933), 1, + ACTIONS(4940), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104580,7 +104587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104589,48 +104596,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87483] = 18, + [87505] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4933), 1, + ACTIONS(4942), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1513), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4935), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104638,7 +104645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4937), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104647,48 +104654,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87559] = 18, + [87581] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4941), 1, + ACTIONS(4946), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1402), 3, + STATE(1539), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4939), 4, + ACTIONS(4944), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104696,7 +104703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4943), 8, + ACTIONS(4948), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104705,48 +104712,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87635] = 18, + [87657] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3161), 1, + ACTIONS(4946), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104754,7 +104761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104763,48 +104770,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87711] = 18, + [87733] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2831), 1, + ACTIONS(4942), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1540), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4950), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104812,7 +104819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4952), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104821,48 +104828,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87787] = 18, + [87809] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4945), 1, + ACTIONS(4954), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104870,7 +104877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104879,48 +104886,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87863] = 18, + [87885] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4947), 1, + ACTIONS(4956), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104928,7 +104935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104937,48 +104944,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [87939] = 18, + [87961] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3153), 1, + ACTIONS(2356), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -104986,7 +104993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104995,48 +105002,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88015] = 18, + [88037] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4949), 1, + ACTIONS(4960), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1552), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4958), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105044,7 +105051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4962), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105053,48 +105060,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88091] = 18, + [88113] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4951), 1, + ACTIONS(4960), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105102,7 +105109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105111,106 +105118,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88167] = 18, + [88189] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(4964), 1, + anon_sym_LF, + ACTIONS(1822), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1932), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1934), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4966), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1816), 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, - 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(4953), 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, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, - [88243] = 18, + sym_word, + sym_test_operator, + [88249] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(2332), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1544), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4955), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105218,7 +105217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4959), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105227,48 +105226,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88319] = 18, + [88325] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4963), 1, + ACTIONS(2306), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1552), 3, + STATE(1557), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4961), 4, + ACTIONS(2304), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105276,7 +105275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4965), 8, + ACTIONS(2308), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105285,48 +105284,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88395] = 18, + [88401] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4963), 1, + ACTIONS(2298), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105334,7 +105333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105343,48 +105342,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88471] = 18, + [88477] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4949), 1, + ACTIONS(2306), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1555), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4967), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105392,7 +105391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4969), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105401,48 +105400,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88547] = 18, + [88553] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4971), 1, + ACTIONS(2322), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105450,7 +105449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105459,48 +105458,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88623] = 18, + [88629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(2834), 1, + sym__concat, + STATE(1419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1865), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1863), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [88679] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2834), 1, + sym__concat, + STATE(1415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1869), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1867), 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, + [88729] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4971), 1, + ACTIONS(4968), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1545), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4973), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105508,7 +105597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4975), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105517,48 +105606,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88699] = 18, + [88805] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4977), 1, + ACTIONS(4972), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1563), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4970), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105566,7 +105655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4974), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105575,48 +105664,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88775] = 18, + [88881] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(4972), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105624,7 +105713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105633,48 +105722,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88851] = 18, + [88957] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4979), 1, + ACTIONS(2270), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1564), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2268), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105682,7 +105771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2272), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105691,48 +105780,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [88927] = 18, + [89033] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4981), 1, + ACTIONS(2270), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105740,7 +105829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105749,48 +105838,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89003] = 18, + [89109] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4945), 1, + ACTIONS(4976), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1403), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4983), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105798,7 +105887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4985), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105807,48 +105896,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89079] = 18, + [89185] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2863), 1, + ACTIONS(4980), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1570), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4978), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105856,7 +105945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4982), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105865,95 +105954,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89155] = 7, + [89261] = 18, 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, - anon_sym_PERCENT_EQ, - 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(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2871), 1, + ACTIONS(2096), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -105961,7 +106003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105970,48 +106012,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89285] = 18, + [89337] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4993), 1, + ACTIONS(2282), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1567), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4991), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106019,7 +106061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4995), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106028,48 +106070,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89361] = 18, + [89413] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4993), 1, + ACTIONS(4980), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106077,7 +106119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106086,48 +106128,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89437] = 18, + [89489] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2897), 1, + ACTIONS(4976), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1568), 3, + STATE(1571), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2895), 4, + ACTIONS(4984), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106135,7 +106177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2899), 8, + ACTIONS(4986), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106144,48 +106186,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89513] = 18, + [89565] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2897), 1, + ACTIONS(4988), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106193,7 +106235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106202,48 +106244,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89589] = 18, + [89641] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4941), 1, + ACTIONS(4990), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106251,7 +106293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106260,48 +106302,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89665] = 18, + [89717] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2889), 1, + ACTIONS(4994), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1568), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4992), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106309,7 +106351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4996), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106318,48 +106360,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89741] = 18, + [89793] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4997), 1, + ACTIONS(4994), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106367,7 +106409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106376,48 +106418,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89817] = 18, + [89869] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(4999), 1, + ACTIONS(4990), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1569), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4998), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106425,7 +106467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(5000), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106434,48 +106476,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89893] = 18, + [89945] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5001), 1, + ACTIONS(5002), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106483,7 +106525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106492,48 +106534,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [89969] = 18, + [90021] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3121), 1, + ACTIONS(5004), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106541,7 +106583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106550,90 +106592,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90045] = 2, + [90097] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2370), 38, - anon_sym_LF, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, + sym_test_operator, + ACTIONS(5006), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(1940), 2, + sym_number, + sym_word, + ACTIONS(1958), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4045), 4, 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_RPAREN, + anon_sym_POUND, + STATE(2259), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4049), 8, 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, - [90089] = 18, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [90173] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3129), 1, + ACTIONS(5008), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106641,7 +106699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106650,48 +106708,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90165] = 18, + [90249] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3129), 1, + ACTIONS(5010), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1553), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3127), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106699,7 +106757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3131), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106708,48 +106766,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90241] = 18, + [90325] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5003), 1, + ACTIONS(2206), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106757,7 +106815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106766,48 +106824,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90317] = 18, + [90401] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5003), 1, + ACTIONS(2194), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1554), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5005), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106815,7 +106873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5007), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106824,48 +106882,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90393] = 18, + [90477] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3103), 1, + ACTIONS(2162), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106873,7 +106931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106882,106 +106940,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90469] = 18, + [90553] = 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(1960), 1, - sym_test_operator, - ACTIONS(3095), 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, - [90545] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5011), 1, + ACTIONS(2230), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1599), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5009), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -106989,7 +106989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5013), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106998,48 +106998,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90621] = 18, + [90629] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5015), 1, + ACTIONS(2170), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107047,7 +107047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107056,48 +107056,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90697] = 18, + [90705] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5017), 1, + ACTIONS(5014), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1589), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(5012), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107105,7 +107105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(5016), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107114,48 +107114,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90773] = 18, + [90781] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5021), 1, + ACTIONS(5020), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1578), 3, + STATE(1598), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5019), 4, + ACTIONS(5018), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107163,7 +107163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5023), 8, + ACTIONS(5022), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107172,48 +107172,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90849] = 18, + [90857] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5025), 1, + ACTIONS(5014), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107221,7 +107221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107230,48 +107230,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [90925] = 18, + [90933] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5025), 1, + ACTIONS(2112), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1579), 3, + STATE(1591), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5027), 4, + ACTIONS(2110), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107279,7 +107279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5029), 8, + ACTIONS(2114), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107288,48 +107288,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91001] = 18, + [91009] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5021), 1, + ACTIONS(2112), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107337,7 +107337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107346,48 +107346,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91077] = 18, + [91085] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5031), 1, + ACTIONS(5020), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107395,7 +107395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107404,48 +107404,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91153] = 18, + [91161] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3063), 1, + ACTIONS(2214), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107453,7 +107453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107462,48 +107462,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91229] = 18, + [91237] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3071), 1, + ACTIONS(2128), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107511,7 +107511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107520,48 +107520,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91305] = 18, + [91313] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3071), 1, + ACTIONS(2104), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1583), 3, + STATE(1604), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3069), 4, + ACTIONS(2102), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107569,7 +107569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3073), 8, + ACTIONS(2106), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107578,48 +107578,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91381] = 18, + [91389] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5033), 1, + ACTIONS(2144), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107627,7 +107627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107636,48 +107636,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91457] = 18, + [91465] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5033), 1, + ACTIONS(2104), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1584), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5035), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107685,7 +107685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5037), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107694,106 +107694,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91533] = 18, + [91541] = 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(1960), 1, - sym_test_operator, - ACTIONS(3045), 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, - [91609] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3037), 1, + ACTIONS(5024), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107801,7 +107743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107810,48 +107752,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91685] = 18, + [91617] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5011), 1, + ACTIONS(2120), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107859,7 +107801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107868,48 +107810,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91761] = 18, + [91693] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5039), 1, + ACTIONS(5026), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107917,7 +107859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107926,48 +107868,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91837] = 18, + [91769] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5041), 1, + ACTIONS(5030), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1596), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(5028), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -107975,7 +107917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(5032), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107984,48 +107926,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91913] = 18, + [91845] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5045), 1, + ACTIONS(2088), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1593), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5043), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108033,7 +107975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5047), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108042,48 +107984,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [91989] = 18, + [91921] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5049), 1, + ACTIONS(5030), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108091,7 +108033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108100,48 +108042,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92065] = 18, + [91997] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5049), 1, + ACTIONS(5026), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1594), 3, + STATE(1610), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5051), 4, + ACTIONS(5034), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108149,7 +108091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5053), 8, + ACTIONS(5036), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108158,48 +108100,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92141] = 18, + [92073] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5001), 1, + ACTIONS(5038), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1600), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5055), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108207,7 +108149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5057), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108216,48 +108158,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92217] = 18, + [92149] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5059), 1, + ACTIONS(1972), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108265,7 +108207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108274,48 +108216,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92293] = 18, + [92225] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5061), 1, + ACTIONS(5040), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108323,7 +108265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108332,48 +108274,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92369] = 18, + [92301] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5045), 1, + ACTIONS(5044), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1620), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(5042), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108381,7 +108323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(5046), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108390,48 +108332,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92445] = 18, + [92377] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5063), 1, + ACTIONS(5048), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108439,7 +108381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108448,48 +108390,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92521] = 18, + [92453] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3005), 1, + ACTIONS(5048), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1622), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(5050), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108497,7 +108439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(5052), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108506,48 +108448,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92597] = 18, + [92529] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3013), 1, + ACTIONS(5044), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108555,7 +108497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108564,48 +108506,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92673] = 18, + [92605] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(3013), 1, + ACTIONS(5054), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1601), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(3011), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108613,7 +108555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3015), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108622,48 +108564,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92749] = 18, + [92681] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5065), 1, + ACTIONS(5056), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108671,7 +108613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108680,48 +108622,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92825] = 18, + [92757] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5065), 1, + ACTIONS(2078), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1602), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5067), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108729,7 +108671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5069), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108738,48 +108680,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92901] = 18, + [92833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(5058), 1, + sym__concat, + STATE(1606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(873), 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, - ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, sym__special_character, - ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [92883] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1954), 1, + sym__special_character, + ACTIONS(1956), 1, + anon_sym_DQUOTE, ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2987), 1, + ACTIONS(5063), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1612), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(5061), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108787,7 +108774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(5065), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108796,48 +108783,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [92977] = 18, + [92959] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2979), 1, + ACTIONS(5063), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108845,7 +108832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108854,48 +108841,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93053] = 18, + [93035] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2921), 1, + ACTIONS(2054), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108903,7 +108890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108912,48 +108899,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93129] = 18, + [93111] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5071), 1, + ACTIONS(5067), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -108961,7 +108948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -108970,48 +108957,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93205] = 18, + [93187] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5073), 1, + ACTIONS(5056), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1614), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(5069), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109019,7 +109006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(5071), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109028,48 +109015,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93281] = 18, + [93263] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5077), 1, + ACTIONS(5073), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1611), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5075), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109077,7 +109064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5079), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109086,48 +109073,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93357] = 18, + [93339] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3729), 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(5075), 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, + [93385] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5081), 1, + ACTIONS(5077), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109135,7 +109165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109144,48 +109174,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93433] = 18, + [93461] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5081), 1, + ACTIONS(2070), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1612), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5083), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109193,7 +109223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5085), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109202,48 +109232,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93509] = 18, + [93537] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5077), 1, + ACTIONS(2070), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1602), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(2068), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109251,7 +109281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(2072), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109260,48 +109290,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93585] = 18, + [93613] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5087), 1, + ACTIONS(5079), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109309,7 +109339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109318,48 +109348,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93661] = 18, + [93689] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2947), 1, + ACTIONS(2022), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109367,7 +109397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109376,48 +109406,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93737] = 18, + [93765] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2955), 1, + ACTIONS(1988), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109425,7 +109455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109434,48 +109464,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93813] = 18, + [93841] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2955), 1, + ACTIONS(5081), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1616), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(2953), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109483,7 +109513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2957), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109492,48 +109522,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93889] = 18, + [93917] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5089), 1, + ACTIONS(5079), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1603), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(5083), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109541,7 +109571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(5085), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109550,48 +109580,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [93965] = 18, + [93993] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(5089), 1, + ACTIONS(5087), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1617), 3, + STATE(1443), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(5091), 4, + ACTIONS(4045), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109599,7 +109629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(5093), 8, + ACTIONS(4049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109608,48 +109638,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [94041] = 18, + [94069] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1942), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR, - ACTIONS(1946), 1, + ACTIONS(1954), 1, sym__special_character, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(1960), 1, + ACTIONS(1968), 1, sym_test_operator, - ACTIONS(2929), 1, + ACTIONS(4872), 1, anon_sym_RBRACE, - STATE(2285), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(1932), 2, + ACTIONS(1940), 2, sym_number, sym_word, - ACTIONS(1950), 2, + ACTIONS(1958), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1958), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 3, + STATE(1572), 3, sym_concatenation, sym_array, aux_sym_expansion_repeat2, - ACTIONS(4047), 4, + ACTIONS(5089), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_POUND, - STATE(2252), 7, + STATE(2259), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -109657,7 +109687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(4051), 8, + ACTIONS(5091), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -109666,17 +109696,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - [94117] = 5, - ACTIONS(3), 1, + [94145] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5095), 1, + 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, + anon_sym_CARET, + ACTIONS(865), 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, - STATE(1624), 1, - aux_sym__literal_repeat1, - ACTIONS(927), 2, + sym_test_operator, + [94190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(984), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(922), 33, + sym__concat, + ACTIONS(982), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -109700,6 +109768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109708,16 +109777,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [94166] = 3, - ACTIONS(3), 1, + [94235] = 21, + ACTIONS(59), 1, sym_comment, - ACTIONS(990), 3, + ACTIONS(63), 1, sym_file_descriptor, - sym__concat, + 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(5093), 1, + sym__special_character, + ACTIONS(5095), 1, sym_variable_name, - ACTIONS(988), 34, + STATE(372), 1, + sym_command_name, + STATE(1627), 1, + aux_sym__literal_repeat1, + STATE(1944), 1, + sym_concatenation, + STATE(3927), 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(1450), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(178), 1, + sym_file_descriptor, + ACTIONS(5097), 1, + sym__special_character, + STATE(1652), 1, + aux_sym__literal_repeat1, + ACTIONS(151), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -109726,6 +109858,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, @@ -109740,7 +109874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109749,16 +109882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [94211] = 3, + [94365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(5099), 1, + sym__special_character, + STATE(1754), 1, + aux_sym__literal_repeat1, + ACTIONS(1913), 2, sym_file_descriptor, - sym__concat, - ACTIONS(968), 35, + sym_variable_name, + ACTIONS(1911), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -109767,8 +109903,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, @@ -109783,7 +109917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109792,16 +109925,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [94256] = 3, + [94414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 3, + ACTIONS(966), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(972), 34, + ACTIONS(964), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -109836,23 +109970,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [94301] = 3, + [94459] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 3, + ACTIONS(5105), 1, + anon_sym_RPAREN, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5113), 1, + sym__special_character, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2556), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5103), 5, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_POUND, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(5107), 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, + [94532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3507), 1, sym_file_descriptor, + ACTIONS(5127), 1, sym__concat, - ts_builtin_sym_end, - ACTIONS(976), 34, + STATE(1760), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3505), 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, @@ -109876,19 +110067,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [94346] = 3, + [94581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(943), 3, sym_file_descriptor, sym__concat, - ACTIONS(972), 35, + ts_builtin_sym_end, + ACTIONS(941), 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, @@ -109920,17 +110112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [94391] = 3, + [94626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(894), 3, sym_file_descriptor, sym__concat, - ACTIONS(976), 35, + ts_builtin_sym_end, + ACTIONS(892), 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, @@ -109962,17 +110154,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [94436] = 3, + [94671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(875), 3, sym_file_descriptor, sym__concat, - ACTIONS(980), 35, + ts_builtin_sym_end, + ACTIONS(873), 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, @@ -110004,17 +110196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [94481] = 3, + [94716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, - ACTIONS(984), 35, + ts_builtin_sym_end, + 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, @@ -110046,13 +110238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [94526] = 3, + [94761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(3511), 1, sym_file_descriptor, + ACTIONS(5127), 1, sym__concat, - ACTIONS(988), 35, + STATE(1757), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3509), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -110061,8 +110256,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, @@ -110086,19 +110279,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [94571] = 3, + [94810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(919), 3, sym_file_descriptor, sym__concat, - ACTIONS(994), 35, + ts_builtin_sym_end, + ACTIONS(917), 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, @@ -110130,22 +110324,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [94616] = 3, + [94855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 2, + ACTIONS(923), 3, sym_file_descriptor, sym__concat, - ACTIONS(906), 35, + ts_builtin_sym_end, + ACTIONS(921), 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, @@ -110169,16 +110364,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [94661] = 3, + [94900] = 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(5093), 1, + sym__special_character, + ACTIONS(5095), 1, + sym_variable_name, + STATE(408), 1, + sym_command_name, + STATE(1627), 1, + aux_sym__literal_repeat1, + STATE(1944), 1, + sym_concatenation, + STATE(3927), 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(1450), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(1877), 1, sym_file_descriptor, - sym__concat, - ACTIONS(998), 35, + ACTIONS(5097), 1, + sym__special_character, + STATE(1652), 1, + aux_sym__literal_repeat1, + ACTIONS(1875), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -110203,7 +110460,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110214,19 +110470,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [94706] = 3, + [95030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 2, + ACTIONS(5129), 1, + sym__concat, + STATE(1733), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1901), 2, sym_file_descriptor, + sym_variable_name, + ACTIONS(1899), 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, + [95079] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5129), 1, sym__concat, - ACTIONS(890), 35, + STATE(1736), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1859), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1857), 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, @@ -110253,45 +110556,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [94751] = 21, - ACTIONS(41), 1, + [95128] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1865), 1, + sym_file_descriptor, + ACTIONS(5097), 1, + sym__special_character, + STATE(1652), 1, + aux_sym__literal_repeat1, + ACTIONS(1863), 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, - ACTIONS(43), 1, anon_sym_DOLLAR, - ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [95177] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(61), 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, + sym__special_character, + anon_sym_DQUOTE, + 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, + [95222] = 21, + ACTIONS(59), 1, + sym_comment, ACTIONS(63), 1, sym_file_descriptor, - ACTIONS(1011), 1, + ACTIONS(284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(286), 1, + anon_sym_DOLLAR, + ACTIONS(290), 1, + anon_sym_DQUOTE, + ACTIONS(296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(298), 1, + anon_sym_BQUOTE, + ACTIONS(302), 1, + sym_test_operator, + ACTIONS(5095), 1, sym_variable_name, - ACTIONS(5098), 1, + ACTIONS(5131), 1, sym__special_character, - STATE(387), 1, + STATE(327), 1, sym_command_name, - STATE(1639), 1, + STATE(811), 1, aux_sym__literal_repeat1, - STATE(2130), 1, + STATE(1202), 1, sym_concatenation, - STATE(4009), 1, + STATE(3927), 1, sym_subscript, - ACTIONS(49), 2, + ACTIONS(292), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(51), 2, + ACTIONS(294), 2, sym_number, sym_word, - ACTIONS(57), 2, + ACTIONS(300), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(37), 3, @@ -110308,7 +110696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(947), 7, + STATE(453), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -110316,20 +110704,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [94832] = 5, + [95303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, - sym__special_character, - STATE(1666), 1, - aux_sym__literal_repeat1, - ACTIONS(178), 2, + ACTIONS(1004), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(151), 33, + 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, @@ -110350,6 +110735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110360,22 +110746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [94881] = 3, + [95348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 2, + ACTIONS(902), 2, sym_file_descriptor, sym__concat, - ACTIONS(898), 35, + ACTIONS(900), 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, @@ -110399,25 +110786,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [94926] = 3, + [95393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 2, + ACTIONS(909), 2, sym_file_descriptor, sym__concat, - ACTIONS(894), 35, + ACTIONS(907), 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, @@ -110441,25 +110828,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [94971] = 3, + [95438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(898), 2, sym_file_descriptor, sym__concat, - ACTIONS(879), 35, + ACTIONS(896), 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, @@ -110483,16 +110870,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95016] = 3, + [95483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(947), 2, sym_file_descriptor, sym__concat, - ACTIONS(1002), 35, + ACTIONS(945), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -110528,17 +110914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95061] = 3, + [95528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(927), 3, sym_file_descriptor, sym__concat, - ACTIONS(902), 35, + ts_builtin_sym_end, + ACTIONS(925), 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, @@ -110570,22 +110956,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95106] = 3, + [95573] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 2, + ACTIONS(958), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(875), 35, + ACTIONS(5133), 1, + sym__special_character, + STATE(1652), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 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, @@ -110600,7 +110990,49 @@ static const uint16_t ts_small_parse_table[] = { 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, + [95622] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5136), 1, sym__special_character, + STATE(1900), 1, + aux_sym__literal_repeat1, + ACTIONS(1859), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1857), 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, @@ -110612,22 +111044,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95151] = 3, + [95671] = 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(5095), 1, + sym_variable_name, + ACTIONS(5138), 1, + sym__special_character, + STATE(378), 1, + sym_command_name, + STATE(1667), 1, + aux_sym__literal_repeat1, + STATE(1975), 1, + sym_concatenation, + STATE(3927), 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_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(1403), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 2, + ACTIONS(935), 3, sym_file_descriptor, sym__concat, - ACTIONS(929), 35, + ts_builtin_sym_end, + 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_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -110651,20 +111144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95196] = 3, + [95797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 3, + ACTIONS(962), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(980), 34, + 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, @@ -110696,25 +111188,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95241] = 5, + [95842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(1899), 3, + ACTIONS(875), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1897), 32, + sym__concat, + ACTIONS(873), 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, @@ -110729,6 +111219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110737,25 +111228,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95290] = 3, + [95887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 2, + ACTIONS(894), 2, sym_file_descriptor, sym__concat, - ACTIONS(937), 35, + ACTIONS(892), 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, @@ -110779,27 +111270,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95335] = 5, + [95932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 1, - sym__concat, - STATE(1897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3465), 2, + ACTIONS(943), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(3463), 33, + sym__concat, + ACTIONS(941), 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, @@ -110823,27 +111312,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95384] = 5, + [95977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 1, - sym__concat, - STATE(1894), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3469), 2, + ACTIONS(966), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(3467), 33, + 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, @@ -110867,20 +111354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95433] = 3, + [96022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 3, + ACTIONS(970), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(910), 34, + 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, @@ -110912,17 +111398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95478] = 3, + [96067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 3, + ACTIONS(962), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(914), 34, + 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, @@ -110954,17 +111440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95523] = 3, + [96112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 3, + ACTIONS(976), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(937), 34, + ACTIONS(974), 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, @@ -110996,7 +111482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95568] = 3, + [96157] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(931), 3, @@ -111038,17 +111524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95613] = 3, + [96202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 3, + ACTIONS(980), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(918), 34, + ACTIONS(978), 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, @@ -111080,18 +111566,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95658] = 3, + [96247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(915), 2, sym_file_descriptor, - ACTIONS(875), 36, + sym__concat, + ACTIONS(913), 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, + [96292] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5140), 1, + sym__special_character, + STATE(1845), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111111,6 +111642,48 @@ static const uint16_t ts_small_parse_table[] = { 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, + [96341] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(5127), 1, + sym__concat, + STATE(1760), 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, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -111120,28 +111693,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95703] = 5, + [96390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, - sym__special_character, - STATE(1666), 1, - aux_sym__literal_repeat1, - ACTIONS(1875), 2, + ACTIONS(919), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1873), 33, + sym__concat, + sym_variable_name, + ACTIONS(917), 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, @@ -111156,6 +111727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111166,12 +111738,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95752] = 3, + [96435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, + ACTIONS(923), 3, sym_file_descriptor, - ACTIONS(852), 36, + sym__concat, + sym_variable_name, + ACTIONS(921), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -111181,8 +111755,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, @@ -111208,21 +111780,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [95797] = 5, + [96480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(927), 3, sym_file_descriptor, - ACTIONS(5106), 1, sym__concat, - STATE(1695), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 34, + sym_variable_name, + ACTIONS(925), 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, @@ -111249,22 +111820,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95846] = 3, + [96525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 3, + ACTIONS(931), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(902), 34, + ACTIONS(929), 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, @@ -111291,22 +111862,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95891] = 3, + [96570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 3, + ACTIONS(935), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1002), 34, + ACTIONS(933), 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, @@ -111333,22 +111904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95936] = 3, + [96615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 3, + ACTIONS(939), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(998), 34, + ACTIONS(937), 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, @@ -111375,85 +111946,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [95981] = 21, - ACTIONS(59), 1, - sym_comment, - ACTIONS(63), 1, - sym_file_descriptor, - 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(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, - 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_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, - [96062] = 3, + [96660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(970), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(994), 34, + ts_builtin_sym_end, + 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_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -111477,29 +111988,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96107] = 5, + [96705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, - sym__special_character, - STATE(1666), 1, - aux_sym__literal_repeat1, - ACTIONS(927), 2, + ACTIONS(951), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(922), 33, + sym__concat, + sym_variable_name, + ACTIONS(949), 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, @@ -111514,6 +112021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111524,19 +112032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [96156] = 3, + [96750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(890), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(984), 34, + ACTIONS(888), 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, @@ -111563,22 +112072,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96201] = 3, + [96795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 3, + ACTIONS(1000), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(980), 34, + ACTIONS(998), 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, @@ -111605,22 +112114,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96246] = 3, + [96840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 3, + ACTIONS(996), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(976), 34, + ACTIONS(994), 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, @@ -111647,25 +112156,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96291] = 3, + [96885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 3, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(972), 34, + ts_builtin_sym_end, + 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_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -111689,25 +112198,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96336] = 3, + [96930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 3, + ACTIONS(976), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(968), 34, + ts_builtin_sym_end, + ACTIONS(974), 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, @@ -111731,22 +112240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96381] = 3, + [96975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 3, + ACTIONS(992), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(964), 34, + ACTIONS(990), 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, @@ -111773,22 +112282,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96426] = 3, + [97020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 3, + ACTIONS(988), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(960), 34, + ACTIONS(986), 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, @@ -111815,22 +112324,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96471] = 3, + [97065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 3, + ACTIONS(984), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(886), 34, + ACTIONS(982), 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, @@ -111857,25 +112366,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96516] = 5, + [97110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, - sym__concat, - STATE(1832), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1871), 3, + ACTIONS(962), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1869), 32, + 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, @@ -111904,19 +112410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [96565] = 3, + [97155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 3, + ACTIONS(970), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(956), 34, + ACTIONS(968), 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, @@ -111943,25 +112450,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96610] = 5, + [97200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, - sym__concat, - STATE(1829), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1884), 3, + ACTIONS(966), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1882), 32, + 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, @@ -111990,23 +112494,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [96659] = 3, + [97245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 2, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, - ACTIONS(964), 35, + sym_variable_name, + ACTIONS(960), 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, @@ -112032,19 +112536,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [96704] = 3, + [97290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(947), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(933), 34, + ACTIONS(945), 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, @@ -112071,26 +112576,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96749] = 3, + [97335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 2, + ACTIONS(902), 3, sym_file_descriptor, sym__concat, - ACTIONS(960), 35, + sym_variable_name, + ACTIONS(900), 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, @@ -112116,16 +112620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [96794] = 5, + [97380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, + ACTIONS(1004), 3, sym_file_descriptor, - ACTIONS(5115), 1, - sym__special_character, - STATE(1732), 1, - aux_sym__literal_repeat1, - ACTIONS(3467), 34, + sym__concat, + sym_variable_name, + ACTIONS(1002), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -112149,6 +112651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112157,22 +112660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96843] = 3, + [97425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 3, + ACTIONS(919), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(952), 34, + ACTIONS(917), 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, @@ -112202,19 +112704,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96888] = 3, + [97470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 3, + ACTIONS(923), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(948), 34, + ACTIONS(921), 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, @@ -112244,23 +112746,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96933] = 3, + [97515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(927), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(933), 34, + ACTIONS(925), 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, @@ -112284,23 +112785,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [96978] = 5, + [97560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(931), 2, sym_file_descriptor, - ACTIONS(5117), 1, sym__concat, - STATE(1685), 1, - aux_sym_concatenation_repeat1, - ACTIONS(879), 34, + ACTIONS(929), 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, @@ -112330,23 +112830,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97027] = 3, + [97605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 3, + ACTIONS(935), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(879), 34, + 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_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -112370,25 +112869,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97072] = 3, + [97650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 2, + ACTIONS(939), 2, sym_file_descriptor, sym__concat, - ACTIONS(886), 35, + ACTIONS(937), 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, @@ -112412,21 +112911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97117] = 3, + [97695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(951), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(933), 34, + ACTIONS(949), 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, @@ -112456,22 +112956,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97162] = 5, + [97740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - sym__special_character, - STATE(1689), 1, - aux_sym__literal_repeat1, - ACTIONS(927), 2, + ACTIONS(890), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(922), 33, + sym__concat, + ACTIONS(888), 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, @@ -112489,6 +112986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112500,14 +112998,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97211] = 3, + [97785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 3, + ACTIONS(1000), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(937), 34, + ACTIONS(998), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -112540,23 +113037,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97256] = 5, + [97830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(996), 2, sym_file_descriptor, - ACTIONS(5123), 1, sym__concat, - STATE(1685), 1, - aux_sym_concatenation_repeat1, - ACTIONS(869), 34, + ACTIONS(994), 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, @@ -112586,19 +113082,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97305] = 3, + [97875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 3, + ACTIONS(992), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(918), 34, + ACTIONS(990), 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, @@ -112628,23 +113124,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97350] = 3, + [97920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 2, + ACTIONS(988), 2, sym_file_descriptor, sym__concat, - ACTIONS(906), 35, + ACTIONS(986), 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, @@ -112668,25 +113163,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97395] = 3, + [97965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 2, + ACTIONS(980), 3, sym_file_descriptor, sym__concat, - ACTIONS(956), 35, + sym_variable_name, + ACTIONS(978), 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, @@ -112712,21 +113208,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [97440] = 5, + [98010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(962), 2, sym_file_descriptor, - ACTIONS(5125), 1, sym__concat, - STATE(1685), 1, - aux_sym_concatenation_repeat1, - ACTIONS(863), 34, + ACTIONS(960), 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, @@ -112756,23 +113250,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97489] = 3, + [98055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, + ACTIONS(970), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(894), 34, + 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_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -112796,16 +113289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97534] = 3, + [98100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 3, + ACTIONS(5140), 1, + sym__special_character, + STATE(1845), 1, + aux_sym__literal_repeat1, + ACTIONS(1865), 2, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, - ACTIONS(898), 34, + ACTIONS(1863), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -112829,7 +113326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112840,19 +113336,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [97579] = 3, + [98149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 3, + ACTIONS(966), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(914), 34, + ACTIONS(964), 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, @@ -112882,19 +113378,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [97624] = 3, + [98194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 3, + ACTIONS(962), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(910), 34, + ACTIONS(960), 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, @@ -112924,432 +113420,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, 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_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, + [98239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(5142), 1, + sym__special_character, + STATE(1710), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 2, sym_file_descriptor, - ACTIONS(1865), 36, + sym_variable_name, + ACTIONS(953), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -113359,8 +113440,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, @@ -113375,7 +113454,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113386,56 +113464,13 @@ static const uint16_t ts_small_parse_table[] = { 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, + [98288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 3, + ACTIONS(947), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(929), 34, + ACTIONS(945), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -113468,105 +113503,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, 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, + [98333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 3, + ACTIONS(902), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(906), 34, + ACTIONS(900), 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, @@ -113596,61 +113548,19 @@ static const uint16_t ts_small_parse_table[] = { 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, + [98378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 3, + ACTIONS(1004), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(890), 34, + ACTIONS(1002), 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, @@ -113680,94 +113590,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [98479] = 3, - ACTIONS(59), 1, + [98423] = 3, + ACTIONS(3), 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, + ACTIONS(984), 2, + 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_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, + ACTIONS(982), 35, + anon_sym_LF, + anon_sym_SEMI, 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_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_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, + 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, - [98569] = 3, + [98468] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(948), 13, + ACTIONS(978), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -113781,7 +113649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(950), 24, + ACTIONS(980), 24, sym__concat, anon_sym_RPAREN, anon_sym_AMP_AMP, @@ -113806,14 +113674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [98614] = 3, + [98513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 3, + ACTIONS(919), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(898), 34, + ACTIONS(917), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -113848,14 +113716,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [98659] = 3, + [98558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, + ACTIONS(923), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(894), 34, + ACTIONS(921), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -113890,14 +113758,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [98704] = 3, + [98603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 3, + ACTIONS(988), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(879), 34, + ACTIONS(986), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -113906,6 +113773,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, @@ -113929,76 +113798,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + [98648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 1, - sym__concat, - STATE(1735), 1, - aux_sym_concatenation_repeat1, - ACTIONS(865), 2, + ACTIONS(927), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(863), 33, + ACTIONS(925), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -114030,25 +113839,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [98871] = 3, + [98693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 3, + ACTIONS(931), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(948), 34, + 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_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -114072,61 +113881,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, 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, + [98738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5155), 1, - sym__concat, - STATE(1735), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 2, + ACTIONS(935), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(869), 33, + ACTIONS(933), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -114158,107 +113923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, 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, + [98783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(1884), 3, + ACTIONS(939), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1882), 32, + 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, @@ -114277,6 +113956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114288,22 +113968,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [99149] = 5, + [98828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 1, + ACTIONS(951), 3, sym_file_descriptor, - ACTIONS(5157), 1, - sym__special_character, - STATE(1732), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 34, + sym__concat, + sym_variable_name, + ACTIONS(949), 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, @@ -114321,6 +113998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114332,23 +114010,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [99198] = 3, + [98873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 3, + ACTIONS(890), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(952), 34, + sym_variable_name, + ACTIONS(888), 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, @@ -114372,16 +114049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [99243] = 3, + [98918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 3, + ACTIONS(1000), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(929), 34, + ACTIONS(998), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -114416,17 +114094,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [99288] = 5, + [98963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, - sym__concat, - STATE(1735), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 2, + ACTIONS(996), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(879), 33, + ACTIONS(994), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -114458,25 +114133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [99337] = 3, + [99008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 1, + ACTIONS(992), 3, sym_file_descriptor, - ACTIONS(1924), 36, + sym__concat, + sym_variable_name, + ACTIONS(990), 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, @@ -114500,16 +114175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [99382] = 3, + [99053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 3, + ACTIONS(988), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(937), 34, + ACTIONS(986), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -114544,101 +114220,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [99427] = 3, - ACTIONS(59), 1, + [99098] = 3, + ACTIONS(3), 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, + ACTIONS(984), 3, + sym_file_descriptor, sym__concat, + sym_variable_name, + ACTIONS(982), 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_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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [99517] = 3, + [99143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(992), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(933), 34, + ACTIONS(990), 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, @@ -114670,13 +114304,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [99562] = 3, + [99188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 2, + ACTIONS(996), 2, sym_file_descriptor, sym__concat, - ACTIONS(890), 35, + ACTIONS(994), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -114712,55 +114346,13 @@ static const uint16_t ts_small_parse_table[] = { 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, + [99233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(1000), 2, sym_file_descriptor, sym__concat, - ACTIONS(933), 35, + ACTIONS(998), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -114796,20 +114388,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [99697] = 3, + [99278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 3, - sym_file_descriptor, + ACTIONS(5145), 1, sym__concat, + STATE(1743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(879), 34, + ACTIONS(880), 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, @@ -114838,325 +114432,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [99742] = 3, - ACTIONS(59), 1, + [99327] = 3, + ACTIONS(3), 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, + ACTIONS(890), 2, + 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_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, + ACTIONS(888), 35, + anon_sym_LF, + anon_sym_SEMI, 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_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_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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [99877] = 3, - ACTIONS(59), 1, + [99372] = 3, + ACTIONS(3), 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, + ACTIONS(980), 3, + 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_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, + sym_variable_name, + ACTIONS(978), 34, + anon_sym_LF, + anon_sym_SEMI, 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_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_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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(296), 2, sym_number, - sym_word, - ACTIONS(302), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [99417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 2, - sym_file_descriptor, + ACTIONS(5147), 1, sym__concat, - ACTIONS(952), 35, + STATE(1743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(867), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -115165,8 +114535,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, @@ -115192,23 +114560,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100138] = 3, + [99466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(915), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(984), 34, + sym_variable_name, + ACTIONS(913), 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, @@ -115234,23 +114602,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100183] = 3, + [99511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 3, + ACTIONS(980), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(988), 34, + ACTIONS(978), 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, @@ -115274,15 +114641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [100228] = 3, + [99556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 2, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, - ACTIONS(948), 35, + sym_variable_name, + ACTIONS(960), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -115291,8 +114660,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, @@ -115316,15 +114683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [100273] = 3, + [99601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 2, + ACTIONS(951), 2, sym_file_descriptor, sym__concat, - ACTIONS(898), 35, + ACTIONS(949), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -115360,14 +114728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100318] = 3, + [99646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, + ACTIONS(976), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(894), 34, + ACTIONS(974), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -115402,13 +114770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100363] = 3, + [99691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 2, + ACTIONS(970), 3, sym_file_descriptor, sym__concat, - ACTIONS(894), 35, + sym_variable_name, + ACTIONS(968), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -115417,8 +114786,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, @@ -115442,19 +114809,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [100408] = 5, + [99736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, + ACTIONS(5149), 1, sym__concat, - STATE(1725), 1, + STATE(1743), 1, aux_sym_concatenation_repeat1, - ACTIONS(877), 2, + ACTIONS(875), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(875), 33, + ACTIONS(873), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -115488,62 +114856,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100457] = 3, - ACTIONS(59), 1, + [99785] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(910), 13, + ACTIONS(939), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(937), 35, + anon_sym_LF, + 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_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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [100502] = 3, + [99830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 3, + ACTIONS(966), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(898), 34, + ACTIONS(964), 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, @@ -115570,187 +114937,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [100547] = 3, - ACTIONS(59), 1, + [99875] = 3, + ACTIONS(3), 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, + ACTIONS(943), 3, + sym_file_descriptor, sym__concat, + sym_variable_name, + ACTIONS(941), 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_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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [100637] = 3, - ACTIONS(59), 1, + [99920] = 5, + ACTIONS(3), 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, + ACTIONS(875), 1, + sym_file_descriptor, + ACTIONS(5152), 1, sym__concat, + STATE(1747), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 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_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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [100727] = 3, + [99969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(935), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(994), 34, + 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, @@ -115782,13 +115068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100772] = 3, + [100014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(931), 2, sym_file_descriptor, sym__concat, - ACTIONS(879), 35, + ACTIONS(929), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -115824,23 +115110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100817] = 3, + [100059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(894), 3, sym_file_descriptor, sym__concat, - ACTIONS(933), 35, + sym_variable_name, + ACTIONS(892), 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, @@ -115866,14 +115152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100862] = 3, + [100104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 3, + ACTIONS(875), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(890), 34, + ACTIONS(873), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -115908,17 +115194,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100907] = 3, + [100149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 3, + ACTIONS(927), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(998), 34, + ACTIONS(925), 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, @@ -115950,19 +115236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [100952] = 3, + [100194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 2, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, - ACTIONS(956), 35, + sym_variable_name, + ACTIONS(960), 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, @@ -115992,20 +115278,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [100997] = 3, + [100239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 3, + ACTIONS(5155), 1, + sym__special_character, + STATE(1754), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(906), 34, + ACTIONS(953), 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, @@ -116023,7 +115311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116032,15 +115319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [101042] = 3, + [100288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 2, + ACTIONS(958), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(4533), 35, + ACTIONS(5158), 1, + sym__special_character, + STATE(1755), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -116064,7 +115355,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116076,62 +115366,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [101087] = 3, - ACTIONS(59), 1, + [100337] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(875), 14, + ACTIONS(923), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(921), 35, + anon_sym_LF, + 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_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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, 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, + anon_sym_DQUOTE, + 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, - [101132] = 3, + [100382] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 2, + ACTIONS(869), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(875), 35, + ACTIONS(5161), 1, + sym__concat, + STATE(1747), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 34, 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, @@ -116158,235 +115449,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [101177] = 3, - ACTIONS(59), 1, + [100431] = 3, + ACTIONS(3), 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, + ACTIONS(947), 3, + sym_file_descriptor, 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, + sym_variable_name, + ACTIONS(945), 34, + anon_sym_LF, + anon_sym_SEMI, 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_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_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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [101312] = 3, - ACTIONS(59), 1, + [100476] = 3, + ACTIONS(3), 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, + ACTIONS(919), 2, + sym_file_descriptor, sym__concat, + ACTIONS(917), 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_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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [101402] = 3, + [100521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 3, + ACTIONS(882), 1, sym_file_descriptor, + ACTIONS(5163), 1, sym__concat, - ts_builtin_sym_end, - ACTIONS(964), 34, + STATE(1747), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 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, @@ -116410,154 +115577,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [101447] = 3, - ACTIONS(59), 1, + [100570] = 3, + ACTIONS(3), 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, + ACTIONS(898), 3, + sym_file_descriptor, 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, + sym_variable_name, + ACTIONS(896), 34, + anon_sym_LF, + anon_sym_SEMI, 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_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + 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_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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [101582] = 5, + [100615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, - sym__special_character, - STATE(1666), 1, - aux_sym__literal_repeat1, - ACTIONS(1930), 2, + ACTIONS(902), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1928), 33, + sym__concat, + sym_variable_name, + ACTIONS(900), 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, @@ -116572,6 +115652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116580,96 +115661,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [101631] = 3, - ACTIONS(59), 1, + [100660] = 3, + ACTIONS(3), 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, + 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_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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [101721] = 3, + [100705] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(886), 13, + ACTIONS(917), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -116683,11 +115723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(888), 24, + ACTIONS(919), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -116708,10 +115748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [101766] = 3, + [100750] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(960), 13, + ACTIONS(921), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -116725,11 +115765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(962), 24, + ACTIONS(923), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -116750,10 +115790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [101811] = 3, + [100795] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(964), 13, + ACTIONS(925), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -116767,11 +115807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(966), 24, + ACTIONS(927), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -116792,19 +115832,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [101856] = 3, + [100840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 2, - sym_file_descriptor, + ACTIONS(5129), 1, sym__concat, - ACTIONS(910), 35, + STATE(1733), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116831,16 +115874,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [101901] = 3, + [100889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 2, + ACTIONS(909), 3, sym_file_descriptor, sym__concat, - ACTIONS(914), 35, + sym_variable_name, + ACTIONS(907), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -116873,16 +115916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [101946] = 3, + [100934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 2, + ACTIONS(861), 1, sym_file_descriptor, - sym__concat, - ACTIONS(918), 35, + ACTIONS(852), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -116892,6 +115933,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, @@ -116915,13 +115958,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [101991] = 3, + [100979] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(968), 13, + ACTIONS(929), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -116935,11 +115977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(970), 24, + ACTIONS(931), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -116960,52 +116002,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [101024] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(972), 13, + ACTIONS(933), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -117019,11 +116019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(974), 24, + ACTIONS(935), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -117044,15 +116044,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [102126] = 3, + [101069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 2, - sym_file_descriptor, + ACTIONS(1822), 1, sym_variable_name, - ACTIONS(4513), 35, + ACTIONS(5167), 1, + sym_file_descriptor, + ACTIONS(1816), 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(5165), 22, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -117072,27 +116088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + [101118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 2, + ACTIONS(3511), 1, sym_file_descriptor, - sym__concat, - ACTIONS(948), 35, + ACTIONS(5169), 1, + sym__special_character, + STATE(1755), 1, + aux_sym__literal_repeat1, + ACTIONS(3509), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -117116,7 +116121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -117128,10 +116132,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [102216] = 3, + [101167] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(976), 13, + ACTIONS(937), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -117145,11 +116149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(978), 24, + ACTIONS(939), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -117170,13 +116174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [102261] = 3, + [101212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 2, + ACTIONS(915), 2, sym_file_descriptor, sym__concat, - ACTIONS(952), 35, + ACTIONS(913), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -117212,57 +116216,13 @@ static const uint16_t ts_small_parse_table[] = { 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, + [101257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(976), 2, sym_file_descriptor, sym__concat, - ACTIONS(933), 35, + ACTIONS(974), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -117298,14 +116258,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [102400] = 3, + [101302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 3, + ACTIONS(1881), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(956), 34, + ACTIONS(1879), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -117315,46 +116273,6 @@ 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, @@ -117382,10 +116300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [102490] = 3, + [101347] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(980), 13, + ACTIONS(949), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -117399,11 +116317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(982), 24, + ACTIONS(951), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -117424,178 +116342,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [101392] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(984), 13, + ACTIONS(888), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -117609,11 +116359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(986), 24, + ACTIONS(890), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -117634,138 +116384,52 @@ static const uint16_t ts_small_parse_table[] = { 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, + [101437] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(998), 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(1000), 24, 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_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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [102899] = 3, + [101482] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(988), 13, + ACTIONS(994), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -117779,11 +116443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(990), 24, + ACTIONS(996), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -117804,15 +116468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [102944] = 3, + [101527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(943), 2, sym_file_descriptor, - ACTIONS(875), 36, + sym__concat, + ACTIONS(941), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -117846,13 +116510,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [102989] = 3, + [101572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(894), 2, sym_file_descriptor, sym__concat, - ACTIONS(968), 35, + ACTIONS(892), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -117888,23 +116552,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103034] = 3, + [101617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 2, + ACTIONS(875), 2, sym_file_descriptor, sym__concat, - ACTIONS(929), 35, + ACTIONS(873), 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, @@ -117928,15 +116591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103079] = 3, + [101662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(865), 2, sym_file_descriptor, - sym__concat, - ACTIONS(972), 35, + sym_variable_name, + ACTIONS(863), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -117972,52 +116636,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103124] = 3, - ACTIONS(3), 1, + [101707] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(920), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(918), 35, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(990), 13, 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_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(992), 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, - [103169] = 3, + [101752] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(994), 13, + ACTIONS(986), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -118031,11 +116695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(996), 24, + ACTIONS(988), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -118056,52 +116720,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [103214] = 3, - ACTIONS(3), 1, + [101797] = 21, + ACTIONS(59), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(63), 1, 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, + ACTIONS(390), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(392), 1, anon_sym_DOLLAR, - 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(5095), 1, + sym_variable_name, + ACTIONS(5171), 1, + sym__special_character, + STATE(358), 1, + sym_command_name, + STATE(987), 1, + aux_sym__literal_repeat1, + STATE(1769), 1, + sym_concatenation, + STATE(3927), 1, + sym_subscript, + ACTIONS(398), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(400), 2, sym_number, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + sym_word, + ACTIONS(406), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [103259] = 3, + 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(919), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101878] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(998), 13, + ACTIONS(982), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -118115,11 +116797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1000), 24, + ACTIONS(984), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -118140,21 +116822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [103304] = 5, + [101923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - sym__concat, - STATE(1823), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 3, + ACTIONS(915), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(879), 32, + ACTIONS(913), 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, @@ -118182,15 +116861,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103353] = 3, + [101968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(898), 2, sym_file_descriptor, sym__concat, - ACTIONS(980), 35, + ACTIONS(896), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -118226,13 +116906,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103398] = 3, + [102013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(909), 2, sym_file_descriptor, sym__concat, - ACTIONS(984), 35, + ACTIONS(907), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -118268,13 +116948,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103443] = 3, + [102058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 2, + ACTIONS(1869), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(1869), 35, + ACTIONS(1867), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -118284,6 +116963,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, @@ -118307,16 +116988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103488] = 3, + [102103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(865), 1, sym_file_descriptor, - sym__concat, - ACTIONS(988), 35, + ACTIONS(863), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -118326,6 +117005,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, @@ -118349,17 +117030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103533] = 3, + [102148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 3, + ACTIONS(951), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(886), 34, + ACTIONS(949), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -118394,105 +117074,481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [103578] = 5, - ACTIONS(3), 1, + [102193] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5172), 1, + 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, - 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_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, + [102238] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(900), 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(902), 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, + [102283] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(907), 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(909), 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, - [103627] = 3, - ACTIONS(3), 1, + [102328] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(996), 2, - sym_file_descriptor, + ACTIONS(896), 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(898), 24, sym__concat, - ACTIONS(994), 35, - anon_sym_LF, - anon_sym_SEMI, + 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, + [102373] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(945), 13, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - 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(947), 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, + [102418] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(863), 14, + 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, + anon_sym_CARET, sym__special_character, - anon_sym_DQUOTE, - 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, + 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, + [102463] = 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, + [102508] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(873), 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(875), 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, + [102553] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(892), 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(894), 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, + [102598] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(941), 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(943), 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, + [102643] = 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, - [103672] = 3, + [102688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(976), 3, sym_file_descriptor, sym__concat, - ACTIONS(998), 35, + sym_variable_name, + ACTIONS(974), 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, @@ -118522,66 +117578,191 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103717] = 5, - ACTIONS(3), 1, + [102733] = 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, + [102778] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5174), 1, + 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, - 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_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, + [102823] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(974), 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(976), 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, + [102868] = 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [103766] = 3, + [102913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(890), 3, sym_file_descriptor, sym__concat, - ACTIONS(1002), 35, + ts_builtin_sym_end, + ACTIONS(888), 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, @@ -118605,26 +117786,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103811] = 3, + [102958] = 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, + [103003] = 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, + [103048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 3, + ACTIONS(943), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(906), 34, + sym_variable_name, + ACTIONS(941), 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, @@ -118648,16 +117911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103856] = 3, + [103093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 3, + ACTIONS(1000), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(956), 34, + ACTIONS(998), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -118692,19 +117956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [103901] = 3, + [103138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(894), 3, sym_file_descriptor, sym__concat, - ACTIONS(902), 35, + sym_variable_name, + ACTIONS(892), 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, @@ -118734,20 +117998,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103946] = 3, + [103183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 3, + ACTIONS(875), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(910), 34, + ACTIONS(873), 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, @@ -118774,28 +118037,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [103991] = 5, + [103228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 1, - sym__special_character, - STATE(1624), 1, - aux_sym__literal_repeat1, - ACTIONS(1884), 2, + ACTIONS(996), 3, sym_file_descriptor, - sym_variable_name, - ACTIONS(1882), 33, + sym__concat, + ts_builtin_sym_end, + 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_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -118810,6 +118071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -118820,20 +118082,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [104040] = 3, + [103273] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(978), 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(980), 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, + [103318] = 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, + [103363] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(945), 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(947), 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, + [103408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 3, + ACTIONS(898), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(914), 34, + ACTIONS(896), 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, @@ -118860,22 +118247,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [104085] = 3, + [103453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 3, - sym_file_descriptor, + ACTIONS(5173), 1, sym__concat, + STATE(1910), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1859), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(918), 34, + ts_builtin_sym_end, + ACTIONS(1857), 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, @@ -118904,20 +118294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [104130] = 3, + [103502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(909), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(933), 34, + ACTIONS(907), 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, @@ -118944,22 +118333,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [104175] = 3, + [103547] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(913), 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(915), 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, + [103592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 2, + ACTIONS(5173), 1, + sym__concat, + STATE(1908), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1901), 3, sym_file_descriptor, sym_variable_name, - ACTIONS(4533), 35, + ts_builtin_sym_end, + ACTIONS(1899), 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, @@ -118988,23 +118422,443 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [104220] = 3, + [103641] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(900), 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(902), 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, + [103686] = 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, + [103731] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(982), 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(984), 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, + [103776] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(986), 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(988), 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, + [103821] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(990), 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(992), 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, + [103866] = 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, + [103911] = 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, + [103956] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(888), 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(890), 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, + [104001] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(949), 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(951), 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, + [104046] = 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, + [104091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 2, + ACTIONS(980), 3, sym_file_descriptor, - sym_variable_name, - ACTIONS(4513), 35, + sym__concat, + ts_builtin_sym_end, + ACTIONS(978), 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, anon_sym_GT_GT, @@ -119030,23 +118884,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [104265] = 3, + [104136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 3, + ACTIONS(915), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(948), 34, + ts_builtin_sym_end, + ACTIONS(913), 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, @@ -119072,23 +118926,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [104310] = 3, + [104181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 3, + ACTIONS(984), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(952), 34, + ts_builtin_sym_end, + ACTIONS(982), 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, @@ -119114,23 +118968,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [104355] = 3, + [104226] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(913), 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(915), 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, + [104271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(988), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(933), 34, + ts_builtin_sym_end, + ACTIONS(986), 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, @@ -119156,23 +119052,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [104400] = 3, + [104316] = 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, + [104361] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(925), 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(927), 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, + [104406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 3, + ACTIONS(5175), 1, + sym__special_character, + STATE(1845), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(886), 34, + ts_builtin_sym_end, + ACTIONS(953), 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_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -119187,7 +119170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119198,17 +119180,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [104445] = 5, - ACTIONS(3), 1, + [104455] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5104), 1, + ACTIONS(974), 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(976), 24, sym__concat, - STATE(1897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(877), 2, + 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, + [104500] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(941), 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(943), 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, + [104545] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(892), 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(894), 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, + [104590] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(921), 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(923), 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, + [104635] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(873), 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(875), 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, + [104680] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(917), 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(919), 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, + [104725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(992), 3, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, - ACTIONS(875), 33, + ACTIONS(990), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -119216,6 +119447,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, @@ -119239,23 +119472,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [104494] = 3, + [104770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 3, + ACTIONS(1004), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(960), 34, + ts_builtin_sym_end, + ACTIONS(1002), 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, @@ -119282,54 +119513,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [104539] = 3, - ACTIONS(3), 1, + [104815] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(966), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(964), 34, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(896), 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(898), 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, - [104584] = 3, + [104860] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(1002), 13, + ACTIONS(907), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -119343,11 +119575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1004), 24, + ACTIONS(909), 24, sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -119368,20 +119600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [104629] = 3, + [104905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 3, + ACTIONS(902), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(968), 34, + ts_builtin_sym_end, + ACTIONS(900), 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, @@ -119408,22 +119639,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [104674] = 3, + [104950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 3, + ACTIONS(909), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(972), 34, + ts_builtin_sym_end, + ACTIONS(907), 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, @@ -119450,22 +119681,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [104719] = 3, + [104995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 3, + ACTIONS(898), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(976), 34, + ts_builtin_sym_end, + ACTIONS(896), 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, @@ -119492,67 +119723,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, 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, + [105040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 3, + ACTIONS(5140), 1, + sym__special_character, + STATE(1845), 1, + aux_sym__literal_repeat1, + ACTIONS(1877), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(980), 34, + ts_builtin_sym_end, + ACTIONS(1875), 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_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -119567,7 +119760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119578,20 +119770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [104854] = 3, + [105089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(947), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(984), 34, + ts_builtin_sym_end, + ACTIONS(945), 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, @@ -119618,22 +119809,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [104899] = 3, + [105134] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(863), 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(865), 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, + [105179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 3, + ACTIONS(5099), 1, + sym__special_character, + STATE(1754), 1, + aux_sym__literal_repeat1, + ACTIONS(1859), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(988), 34, + ACTIONS(1857), 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, @@ -119651,7 +119887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119660,17 +119895,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [104944] = 3, + [105228] = 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, + [105273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 4, + ACTIONS(962), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(910), 33, + ACTIONS(960), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -119704,20 +119982,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [104989] = 3, + [105318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(875), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(994), 34, + ts_builtin_sym_end, + ACTIONS(873), 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, @@ -119744,22 +120021,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105034] = 3, + [105363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 3, + ACTIONS(894), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(998), 34, + ts_builtin_sym_end, + ACTIONS(892), 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, @@ -119786,17 +120063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105079] = 3, + [105408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 4, + ACTIONS(943), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(914), 33, + ACTIONS(941), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -119830,15 +120108,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105124] = 3, + [105453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 4, + ACTIONS(966), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(937), 33, + ACTIONS(964), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -119872,20 +120150,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105169] = 3, + [105498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 3, + ACTIONS(970), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1002), 34, + ts_builtin_sym_end, + ACTIONS(968), 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, @@ -119912,67 +120189,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105214] = 5, + [105543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - sym__concat, - STATE(1728), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1884), 2, + ACTIONS(962), 4, 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, + ts_builtin_sym_end, + 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, @@ -120000,22 +120231,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105312] = 3, + [105588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 3, + ACTIONS(976), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(902), 34, + ts_builtin_sym_end, + ACTIONS(974), 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, @@ -120042,17 +120273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105357] = 3, + [105633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 4, + ACTIONS(947), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(929), 33, + ACTIONS(945), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120060,6 +120291,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, @@ -120083,18 +120316,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105402] = 3, + [105678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 4, + ACTIONS(898), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(918), 33, + ACTIONS(896), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120102,6 +120333,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, @@ -120125,67 +120358,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + [105723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, - sym__special_character, - STATE(1689), 1, - aux_sym__literal_repeat1, - ACTIONS(1884), 2, + ACTIONS(865), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1882), 33, + ACTIONS(863), 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, @@ -120203,6 +120391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120211,18 +120400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105541] = 3, + [105768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 4, + ACTIONS(909), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(933), 33, + ACTIONS(907), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120230,6 +120417,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, @@ -120253,23 +120442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105586] = 5, + [105813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 1, + ACTIONS(902), 3, sym_file_descriptor, - ACTIONS(5180), 1, - sym__special_character, - STATE(1873), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 34, + sym__concat, + ts_builtin_sym_end, + ACTIONS(900), 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, @@ -120290,6 +120475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120300,17 +120486,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [105635] = 5, + [105858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5183), 1, - sym__concat, - STATE(1874), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 2, + ACTIONS(1004), 3, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, - ACTIONS(879), 33, + ACTIONS(1002), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120318,6 +120501,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, @@ -120341,18 +120526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105684] = 3, + [105903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 4, + ACTIONS(980), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(879), 33, + ACTIONS(978), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120386,15 +120570,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105729] = 3, + [105948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 4, + ACTIONS(915), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(894), 33, + ACTIONS(913), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120428,26 +120612,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105774] = 5, + [105993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(984), 4, sym_file_descriptor, - ACTIONS(5167), 1, - sym__special_character, - STATE(1873), 1, - aux_sym__literal_repeat1, - ACTIONS(1873), 34, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(982), 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, @@ -120462,6 +120642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120470,17 +120651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105823] = 3, + [106038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 4, + ACTIONS(988), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(948), 33, + ACTIONS(986), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120514,19 +120696,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105868] = 3, + [106083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 4, + ACTIONS(4570), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(952), 33, + ACTIONS(4568), 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, @@ -120556,15 +120738,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105913] = 3, + [106128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 4, + ACTIONS(992), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(933), 33, + ACTIONS(990), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120598,15 +120780,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [105958] = 3, + [106173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 4, + ACTIONS(996), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(890), 33, + ACTIONS(994), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120640,15 +120822,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106003] = 3, + [106218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 4, + ACTIONS(1000), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(898), 33, + ACTIONS(998), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120682,23 +120864,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106048] = 3, + [106263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 3, + ACTIONS(1901), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(890), 34, + sym_variable_name, + ACTIONS(1899), 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, @@ -120722,16 +120903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106093] = 3, + [106308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 3, + ACTIONS(890), 4, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(968), 34, + ACTIONS(888), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120739,8 +120922,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, @@ -120764,88 +120945,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, 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, + [106353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(178), 1, + ACTIONS(5178), 1, + sym__concat, + STATE(1899), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3511), 2, sym_file_descriptor, - ACTIONS(5167), 1, - sym__special_character, - STATE(1873), 1, - aux_sym__literal_repeat1, - ACTIONS(151), 34, + ts_builtin_sym_end, + ACTIONS(3509), 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, @@ -120860,6 +120980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120868,17 +120989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106268] = 3, + [106402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 4, + ACTIONS(951), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(956), 33, + ACTIONS(949), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120912,15 +121034,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106313] = 3, + [106447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 4, + ACTIONS(939), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(906), 33, + ACTIONS(937), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -120954,20 +121076,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106358] = 3, + [106492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 2, + ACTIONS(935), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1869), 35, + ts_builtin_sym_end, + ACTIONS(933), 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, @@ -120994,21 +121115,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106403] = 3, + [106537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 4, + ACTIONS(4554), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(886), 33, + ACTIONS(4552), 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, @@ -121038,15 +121160,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106448] = 3, + [106582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 4, + ACTIONS(931), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(960), 33, + ACTIONS(929), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121080,18 +121202,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106493] = 5, + [106627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(927), 3, + ACTIONS(927), 4, sym_file_descriptor, + sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(922), 32, + ACTIONS(925), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121113,6 +121232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121124,15 +121244,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106542] = 3, + [106672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 4, - sym_file_descriptor, + ACTIONS(5178), 1, sym__concat, - sym_variable_name, + STATE(1898), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3507), 2, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(964), 33, + ACTIONS(3505), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121166,17 +121288,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106587] = 5, + [106721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, - sym__concat, - STATE(1874), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 2, + ACTIONS(923), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(869), 33, + ACTIONS(921), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121210,15 +121330,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106636] = 3, + [106766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 4, + ACTIONS(919), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(968), 33, + ACTIONS(917), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121252,15 +121372,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106681] = 3, + [106811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 4, - sym_file_descriptor, + ACTIONS(5180), 1, sym__concat, - sym_variable_name, + STATE(1902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(972), 33, + ACTIONS(880), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121294,17 +121416,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106726] = 5, + [106860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, + ACTIONS(5182), 1, sym__concat, - STATE(1874), 1, + STATE(1902), 1, aux_sym_concatenation_repeat1, - ACTIONS(865), 2, + ACTIONS(869), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(863), 33, + ACTIONS(867), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121338,15 +121460,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106775] = 3, + [106909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 4, + ACTIONS(5184), 1, + sym__special_character, + STATE(1900), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 3, sym_file_descriptor, - sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(976), 33, + ACTIONS(953), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121368,7 +121493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121380,79 +121504,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [106958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 4, + ACTIONS(1901), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(980), 33, + ACTIONS(1899), 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, @@ -121479,18 +121544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106946] = 3, + [107003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 4, - sym_file_descriptor, + ACTIONS(5187), 1, sym__concat, - sym_variable_name, + STATE(1902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 2, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(902), 33, + ACTIONS(873), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121524,19 +121590,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [106991] = 3, + [107052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 4, + ACTIONS(865), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1002), 33, + 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, @@ -121566,15 +121632,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107036] = 3, + [107097] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 4, - sym_file_descriptor, + ACTIONS(5178), 1, sym__concat, - sym_variable_name, + STATE(1898), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(998), 33, + ACTIONS(863), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121608,19 +121676,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107081] = 3, + [107146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 4, + ACTIONS(4554), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(984), 33, + ACTIONS(4552), 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, @@ -121647,26 +121716,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107126] = 3, + [107191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 3, + ACTIONS(4570), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1002), 34, + sym_variable_name, + ACTIONS(4568), 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, @@ -121692,23 +121760,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [107171] = 3, + [107236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 3, + ACTIONS(5190), 1, + sym__special_character, + STATE(1710), 1, + aux_sym__literal_repeat1, + ACTIONS(1859), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(902), 34, + sym_variable_name, + ACTIONS(1857), 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_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -121723,7 +121794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121734,15 +121804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [107216] = 3, + [107285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 4, - sym_file_descriptor, + ACTIONS(5192), 1, sym__concat, + STATE(1911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 3, + sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(994), 33, + ACTIONS(880), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121773,18 +121846,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107261] = 3, + [107334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 4, - sym_file_descriptor, + ACTIONS(5173), 1, sym__concat, + STATE(1908), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 3, + sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(988), 33, + ACTIONS(863), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -121815,24 +121890,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107306] = 5, + [107383] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, - sym__special_character, - STATE(1689), 1, - aux_sym__literal_repeat1, - ACTIONS(1899), 2, + ACTIONS(5194), 1, + sym__concat, + STATE(1911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 3, sym_file_descriptor, sym_variable_name, - ACTIONS(1897), 33, + ts_builtin_sym_end, + ACTIONS(867), 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, @@ -121851,6 +121925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121859,23 +121934,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107355] = 5, + [107432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3465), 1, - sym_file_descriptor, - ACTIONS(5106), 1, + ACTIONS(5196), 1, sym__concat, - STATE(1695), 1, + STATE(1911), 1, aux_sym_concatenation_repeat1, - ACTIONS(3463), 34, + ACTIONS(875), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(873), 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, @@ -121903,23 +121978,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107404] = 5, + [107481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, + ACTIONS(5136), 1, + sym__special_character, + STATE(1900), 1, + aux_sym__literal_repeat1, + ACTIONS(1913), 3, sym_file_descriptor, - ACTIONS(5106), 1, - sym__concat, - STATE(1691), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3467), 34, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1911), 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, @@ -121938,7 +122013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121950,21 +122024,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107453] = 7, + [107530] = 5, 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, + ACTIONS(5205), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5203), 4, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5199), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -121978,7 +122050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5201), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -121995,61 +122067,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [107505] = 3, - ACTIONS(59), 1, + [107578] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 13, + 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_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [107549] = 5, + [107622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, + ACTIONS(915), 4, sym_file_descriptor, - ACTIONS(5207), 1, - sym__special_character, - STATE(2109), 1, - aux_sym__literal_repeat1, - ACTIONS(3467), 33, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(913), 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, @@ -122068,6 +122138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122076,22 +122147,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107597] = 5, + [107666] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5213), 3, + ACTIONS(5211), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 4, + ACTIONS(5203), 4, anon_sym_QMARK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5209), 13, + ACTIONS(5207), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122105,7 +122175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5211), 16, + ACTIONS(5209), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122122,64 +122192,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [107645] = 5, - ACTIONS(59), 1, + [107714] = 3, + ACTIONS(3), 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, + ACTIONS(4554), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4552), 34, + anon_sym_LF, + anon_sym_SEMI, 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5211), 16, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [107758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(974), 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_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, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [107693] = 7, + [107802] = 7, ACTIONS(59), 1, sym_comment, + ACTIONS(5213), 1, + anon_sym_RPAREN_RPAREN, ACTIONS(5221), 1, - anon_sym_RBRACK, - ACTIONS(5225), 1, anon_sym_QMARK, - ACTIONS(5227), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5223), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5217), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122193,7 +122302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5219), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122210,109 +122319,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [107745] = 7, - ACTIONS(59), 1, + [107854] = 3, + ACTIONS(3), 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, + ACTIONS(943), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(941), 32, + anon_sym_LF, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5199), 16, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [107898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4568), 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_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, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [107797] = 7, - ACTIONS(59), 1, + [107942] = 3, + ACTIONS(3), 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, + ACTIONS(894), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(892), 32, + anon_sym_LF, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5211), 16, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [107986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(873), 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_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, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [107849] = 5, + [108030] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5213), 3, + ACTIONS(5211), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5235), 4, + ACTIONS(5203), 4, anon_sym_QMARK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5209), 13, + ACTIONS(5207), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122326,7 +122509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5211), 16, + ACTIONS(5209), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122343,21 +122526,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [107897] = 7, + [108078] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_QMARK, ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5225), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122371,7 +122554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122388,14 +122571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [107949] = 3, + [108130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 3, + ACTIONS(898), 4, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(910), 33, + ACTIONS(896), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -122426,17 +122610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [107993] = 3, + [108174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 3, + ACTIONS(1004), 4, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(914), 33, + ACTIONS(1002), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -122467,17 +122651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [108037] = 3, + [108218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 3, + ACTIONS(909), 4, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(937), 33, + ACTIONS(907), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -122508,58 +122692,62 @@ static const uint16_t ts_small_parse_table[] = { 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, + [108262] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(931), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(929), 33, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5227), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(5217), 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, - [108125] = 3, + [108314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 3, + ACTIONS(902), 4, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(918), 33, + ACTIONS(900), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -122590,21 +122778,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [108169] = 3, + [108358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 3, + ACTIONS(1901), 2, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(875), 33, + ACTIONS(1899), 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, @@ -122631,24 +122819,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [108213] = 7, + [108402] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5239), 1, + ACTIONS(5231), 1, anon_sym_RPAREN, - ACTIONS(5245), 1, + ACTIONS(5237), 1, anon_sym_QMARK, - ACTIONS(5247), 2, + ACTIONS(5239), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5243), 3, + ACTIONS(5235), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 13, + ACTIONS(5229), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122662,7 +122849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5241), 16, + ACTIONS(5233), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122679,21 +122866,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [108265] = 7, + [108454] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5241), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5243), 1, anon_sym_QMARK, - ACTIONS(5249), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5205), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5199), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122707,7 +122894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5201), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122724,10 +122911,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [108317] = 3, + [108506] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(854), 13, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5245), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122741,14 +122939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1915), 23, + ACTIONS(5217), 16, 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, @@ -122761,25 +122955,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + [108558] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5251), 1, + ACTIONS(5247), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122793,7 +122984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122810,21 +123001,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [108413] = 7, + [108610] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5231), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5253), 1, - anon_sym_COLON, - ACTIONS(5205), 2, + ACTIONS(5249), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5213), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5209), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122838,7 +123029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5211), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122855,101 +123046,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [108465] = 3, - ACTIONS(3), 1, + [108662] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(935), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(933), 33, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5251), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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_CARET, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [108553] = 5, + [108714] = 7, 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, + ACTIONS(5243), 1, anon_sym_QMARK, + ACTIONS(5253), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5255), 13, + ACTIONS(5205), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5199), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -122963,7 +123119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5257), 16, + ACTIONS(5201), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122980,267 +123136,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [108601] = 3, - ACTIONS(3), 1, + [108766] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(950), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(948), 33, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(5253), 1, + anon_sym_RBRACK, + ACTIONS(5261), 1, + anon_sym_QMARK, + ACTIONS(5263), 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_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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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_CARET, + ACTIONS(5257), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [108689] = 3, - ACTIONS(3), 1, + [108818] = 7, + ACTIONS(59), 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, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5265), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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_CARET, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [108777] = 3, - ACTIONS(3), 1, + [108870] = 7, + ACTIONS(59), 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, + ACTIONS(5241), 1, + anon_sym_RBRACK, + ACTIONS(5261), 1, + anon_sym_QMARK, + ACTIONS(5263), 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [108821] = 3, - ACTIONS(3), 1, + [108922] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(900), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(898), 33, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5267), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(5217), 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, - [108865] = 7, + [108974] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5231), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5261), 1, - anon_sym_COLON, - ACTIONS(5205), 2, + ACTIONS(5253), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5213), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5209), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -123254,7 +123344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5211), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123271,21 +123361,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [108917] = 3, + [109026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 3, + ACTIONS(861), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(890), 33, + 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, @@ -123309,65 +123400,64 @@ static const uint16_t ts_small_parse_table[] = { 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, + [109070] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(4515), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(4513), 34, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(854), 13, 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, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(1871), 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, - [109005] = 7, + [109114] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5269), 1, anon_sym_QMARK, - ACTIONS(5263), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5271), 1, + anon_sym_COLON, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5211), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5207), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -123381,7 +123471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5209), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123398,19 +123488,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109057] = 5, + [109166] = 7, 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, + ACTIONS(5221), 1, anon_sym_QMARK, + ACTIONS(5273), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5255), 13, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -123424,7 +123516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5257), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123441,17 +123533,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109105] = 3, + [109218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 3, + ACTIONS(3511), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(956), 33, + ACTIONS(5275), 1, + sym__special_character, + STATE(2062), 1, + aux_sym__literal_repeat1, + ACTIONS(3509), 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, @@ -123470,7 +123565,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123482,21 +123576,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [109149] = 7, + [109266] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5245), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5265), 1, - anon_sym_RPAREN, - ACTIONS(5247), 2, + ACTIONS(5277), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5243), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -123510,7 +123604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5241), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123527,21 +123621,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109201] = 7, + [109318] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5267), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5269), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5205), 2, + ACTIONS(5279), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5259), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5255), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -123555,7 +123649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5257), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123572,21 +123666,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109253] = 3, + [109370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 3, + ACTIONS(1881), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(906), 33, + ACTIONS(1879), 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, @@ -123610,20 +123705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [109297] = 3, + [109414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 3, + ACTIONS(5281), 1, + sym__special_character, + STATE(2123), 1, + aux_sym__literal_repeat1, + ACTIONS(1859), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(886), 33, + sym_variable_name, + ACTIONS(1857), 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, @@ -123642,7 +123740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123651,65 +123748,150 @@ static const uint16_t ts_small_parse_table[] = { 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, + [109462] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1871), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1869), 34, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(5259), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5203), 4, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5255), 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(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, + [109510] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5259), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5203), 4, + anon_sym_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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [109385] = 7, + [109558] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(5225), 1, - anon_sym_QMARK, - ACTIONS(5267), 1, + ACTIONS(3729), 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(5075), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - ACTIONS(5227), 2, + 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, + [109602] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5283), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5223), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5217), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -123723,7 +123905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5219), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123740,21 +123922,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109437] = 3, + [109654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 3, + ACTIONS(1869), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(960), 33, + ACTIONS(1867), 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, @@ -123778,24 +123961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [109481] = 7, + [109698] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5237), 1, anon_sym_QMARK, - ACTIONS(5271), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5285), 1, + anon_sym_RPAREN, + ACTIONS(5239), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5235), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5229), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -123809,7 +123991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5233), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123826,21 +124008,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109533] = 7, + [109750] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5267), 1, + ACTIONS(5287), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -123854,7 +124036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123871,144 +124053,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109585] = 3, - ACTIONS(3), 1, + [109802] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(966), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(964), 33, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3935), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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_CARET, + ACTIONS(4810), 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, + [109846] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2860), 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(4808), 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, - [109673] = 5, - ACTIONS(3), 1, + [109890] = 3, + ACTIONS(59), 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, + ACTIONS(2860), 13, 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, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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_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_CARET, + ACTIONS(4808), 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, - ACTIONS(5215), 4, - anon_sym_RBRACK, + 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, - ACTIONS(5217), 13, + sym_test_operator, + [109934] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5289), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -124022,7 +124204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5219), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -124039,21 +124221,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109769] = 7, + [109986] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5231), 1, + ACTIONS(5269), 1, anon_sym_QMARK, - ACTIONS(5275), 1, + ACTIONS(5291), 1, anon_sym_COLON, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5213), 3, + ACTIONS(5211), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5209), 13, + ACTIONS(5207), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -124067,7 +124249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5211), 16, + ACTIONS(5209), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -124084,19 +124266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109821] = 5, + [110038] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5223), 3, + ACTIONS(5259), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 4, + ACTIONS(5293), 4, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5217), 13, + ACTIONS(5255), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -124110,7 +124292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5219), 16, + ACTIONS(5257), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -124127,185 +124309,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [109869] = 3, - ACTIONS(3), 1, + [110086] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(4535), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(4533), 34, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5295), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 13, 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, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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_CARET, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [109957] = 3, - ACTIONS(3), 1, + [110138] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(974), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(972), 33, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(5269), 1, + anon_sym_QMARK, + ACTIONS(5297), 1, + anon_sym_COLON, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5211), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5207), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(5209), 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, - [110001] = 3, - ACTIONS(3), 1, + [110190] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(978), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(976), 33, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5299), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(5217), 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, - [110045] = 3, + [110242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 3, + ACTIONS(865), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(980), 33, + 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, @@ -124329,17 +124483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [110089] = 3, + [110286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(5301), 1, + sym__special_character, + STATE(1970), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 2, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, - ACTIONS(984), 33, + ACTIONS(953), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -124361,7 +124517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124373,14 +124528,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [110133] = 3, + [110334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 3, + ACTIONS(1901), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(988), 33, + ACTIONS(1899), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -124414,10 +124569,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [110177] = 3, + [110378] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(3709), 13, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5304), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -124431,14 +124597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4124), 23, + ACTIONS(5217), 16, 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, @@ -124451,189 +124613,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + sym_test_operator, + [110430] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, anon_sym_QMARK, + ACTIONS(5306), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, 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, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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_CARET, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + 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, - [110397] = 7, + [110482] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5277), 1, + ACTIONS(5308), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -124647,7 +124687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -124664,17 +124704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [110449] = 5, + [110534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5279), 1, - sym__special_character, - STATE(1976), 1, - aux_sym__literal_repeat1, - ACTIONS(927), 2, + ACTIONS(861), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(922), 32, + ACTIONS(852), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -124682,6 +124718,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, @@ -124696,6 +124734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124704,24 +124743,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [110497] = 7, + [110578] = 5, 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, + ACTIONS(5205), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5203), 4, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5199), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -124735,7 +124771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5201), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -124752,21 +124788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [110549] = 7, + [110626] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5231), 1, + ACTIONS(5237), 1, anon_sym_QMARK, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5205), 2, + ACTIONS(5310), 1, + anon_sym_RPAREN, + ACTIONS(5239), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5213), 3, + ACTIONS(5235), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5209), 13, + ACTIONS(5229), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -124780,7 +124816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5211), 16, + ACTIONS(5233), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -124797,21 +124833,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [110601] = 7, + [110678] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5231), 1, + ACTIONS(5269), 1, anon_sym_QMARK, - ACTIONS(5286), 1, + ACTIONS(5312), 1, anon_sym_COLON, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5213), 3, + ACTIONS(5211), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5209), 13, + ACTIONS(5207), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -124825,7 +124861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5211), 16, + ACTIONS(5209), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -124842,64 +124878,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [110653] = 7, - ACTIONS(59), 1, + [110730] = 3, + ACTIONS(3), 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, + ACTIONS(947), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(945), 32, + anon_sym_LF, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [110705] = 3, + [110774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 2, + ACTIONS(919), 3, sym_file_descriptor, - sym_variable_name, - ACTIONS(1869), 34, + sym__concat, + ts_builtin_sym_end, + ACTIONS(917), 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, @@ -124926,107 +124957,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [110749] = 7, - ACTIONS(59), 1, + [110818] = 3, + ACTIONS(3), 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, + ACTIONS(923), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(921), 33, + anon_sym_LF, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [110801] = 7, - ACTIONS(59), 1, + [110862] = 3, + ACTIONS(3), 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, + ACTIONS(927), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(925), 33, + anon_sym_LF, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [110853] = 3, + [110906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 4, + ACTIONS(931), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(937), 32, + ACTIONS(929), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125057,23 +125080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [110897] = 7, + [110950] = 5, 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, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5293), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -125087,7 +125109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -125104,15 +125126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [110949] = 3, + [110998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 4, + ACTIONS(935), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(929), 32, + ACTIONS(933), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125143,62 +125164,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [110993] = 7, - ACTIONS(59), 1, + [111042] = 3, + ACTIONS(3), 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, + 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_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [111045] = 3, + [111086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 4, + ACTIONS(951), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(879), 32, + ACTIONS(949), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125229,17 +125246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111089] = 3, + [111130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 4, + ACTIONS(890), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(894), 32, + ACTIONS(888), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125270,17 +125287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111133] = 3, + [111174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 4, + ACTIONS(1000), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(898), 32, + ACTIONS(998), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125311,17 +125328,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111177] = 3, + [111218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 4, + ACTIONS(996), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(890), 32, + ACTIONS(994), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125352,61 +125369,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, 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, + [111262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 4, + ACTIONS(4570), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(906), 32, + ACTIONS(4568), 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, @@ -125434,23 +125410,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111309] = 7, + [111306] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5243), 1, anon_sym_QMARK, - ACTIONS(5298), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5314), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5205), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5199), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -125464,7 +125441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5201), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -125481,64 +125458,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [111361] = 7, - ACTIONS(59), 1, + [111358] = 3, + ACTIONS(3), 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, + ACTIONS(992), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(990), 33, + anon_sym_LF, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [111413] = 3, + [111402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 2, + ACTIONS(988), 3, sym_file_descriptor, - sym_variable_name, - ACTIONS(4533), 34, + sym__concat, + ts_builtin_sym_end, + ACTIONS(986), 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, @@ -125565,20 +125537,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111457] = 3, + [111446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 3, + ACTIONS(984), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(886), 33, + ts_builtin_sym_end, + ACTIONS(982), 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, @@ -125606,17 +125578,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111501] = 3, + [111490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 4, + ACTIONS(915), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(910), 32, + ACTIONS(913), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125647,21 +125619,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111545] = 5, + [111534] = 7, 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, + ACTIONS(5261), 1, anon_sym_QMARK, + ACTIONS(5314), 1, + anon_sym_RBRACK, + ACTIONS(5263), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5237), 13, + 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, @@ -125675,7 +125650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5241), 16, + ACTIONS(5257), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -125692,15 +125667,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [111593] = 3, + [111586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 4, + ACTIONS(980), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(914), 32, + ACTIONS(978), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125731,14 +125705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111637] = 3, + [111630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 1, + ACTIONS(4554), 2, sym_file_descriptor, - ACTIONS(1924), 35, + sym_variable_name, + ACTIONS(4552), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125747,8 +125723,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, @@ -125772,17 +125746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111681] = 3, + [111674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 4, + ACTIONS(976), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(918), 32, + ACTIONS(974), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125813,20 +125787,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111725] = 5, + [111718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - sym__special_character, - STATE(2003), 1, - aux_sym__literal_repeat1, - ACTIONS(927), 3, + ACTIONS(962), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, ts_builtin_sym_end, - ACTIONS(922), 31, + ACTIONS(960), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125848,6 +125819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125856,17 +125828,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111773] = 3, + [111762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 4, + ACTIONS(970), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(933), 32, + ACTIONS(968), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125897,17 +125869,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111817] = 3, + [111806] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5314), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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(5217), 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, + [111858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 4, + ACTIONS(966), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(948), 32, + ACTIONS(964), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125938,17 +125955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111861] = 3, + [111902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 4, + ACTIONS(943), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(952), 32, + ACTIONS(941), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -125979,17 +125996,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111905] = 3, + [111946] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5316), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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(5217), 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, + [111998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 4, + ACTIONS(894), 3, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(933), 32, + ACTIONS(892), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -126020,20 +126082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111949] = 3, + [112042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 3, + ACTIONS(875), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(902), 33, + ts_builtin_sym_end, + ACTIONS(873), 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, @@ -126061,20 +126123,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [111993] = 3, + [112086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 3, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1002), 33, + ts_builtin_sym_end, + 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, @@ -126102,20 +126164,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112037] = 3, + [112130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 3, + ACTIONS(5318), 1, + sym__special_character, + STATE(2010), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 3, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(998), 33, + ts_builtin_sym_end, + ACTIONS(953), 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, @@ -126134,7 +126200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126145,21 +126210,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [112081] = 7, + [112178] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5305), 1, + ACTIONS(5321), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -126173,7 +126238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -126190,19 +126255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [112133] = 3, + [112230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 2, + ACTIONS(865), 3, sym_file_descriptor, sym_variable_name, - ACTIONS(875), 34, + ts_builtin_sym_end, + ACTIONS(863), 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, @@ -126229,16 +126293,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112177] = 3, + [112274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(919), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(994), 33, + ACTIONS(917), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -126270,20 +126334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112221] = 3, + [112318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 3, + ACTIONS(947), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(988), 33, + ts_builtin_sym_end, + ACTIONS(945), 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, @@ -126311,20 +126375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112265] = 3, + [112362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 3, + ACTIONS(898), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(960), 33, + ts_builtin_sym_end, + ACTIONS(896), 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, @@ -126352,19 +126416,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112309] = 3, + [112406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 3, + ACTIONS(923), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(4533), 33, + sym__concat, + ACTIONS(921), 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, @@ -126395,18 +126460,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112353] = 3, + [112450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 3, + ACTIONS(909), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(980), 33, + ts_builtin_sym_end, + ACTIONS(907), 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, @@ -126434,20 +126498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112397] = 3, + [112494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 3, + ACTIONS(902), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(976), 33, + ts_builtin_sym_end, + ACTIONS(900), 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, @@ -126475,20 +126539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112441] = 3, + [112538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 3, + ACTIONS(1004), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(972), 33, + ts_builtin_sym_end, + 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, @@ -126516,16 +126580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112485] = 3, + [112582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 3, + ACTIONS(927), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(968), 33, + ACTIONS(925), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -126557,61 +126621,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112529] = 7, - ACTIONS(59), 1, + [112626] = 3, + ACTIONS(3), 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, + 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_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [112581] = 3, + [112670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 3, + ACTIONS(970), 4, sym_file_descriptor, + sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(4513), 33, + ACTIONS(968), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -126642,66 +126704,61 @@ static const uint16_t ts_small_parse_table[] = { 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, + [112714] = 3, + ACTIONS(3), 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, + 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_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [112677] = 3, + [112758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 3, + ACTIONS(980), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(964), 33, + ts_builtin_sym_end, + ACTIONS(978), 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, @@ -126731,14 +126788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [112721] = 3, + [112802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(931), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(984), 33, + ACTIONS(929), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -126770,68 +126826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [112765] = 7, + [112846] = 5, 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, + ACTIONS(5211), 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, + ACTIONS(5293), 4, anon_sym_QMARK, - ACTIONS(5205), 2, + anon_sym_COLON, 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, + ACTIONS(5207), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -126845,7 +126855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5257), 16, + ACTIONS(5209), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -126862,21 +126872,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [112869] = 7, + [112894] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5313), 1, + ACTIONS(5323), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -126890,7 +126900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -126907,56 +126917,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + [112946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 4, + ACTIONS(984), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(960), 32, + ACTIONS(982), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -126989,100 +126958,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [112990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 3, + ACTIONS(5325), 1, + sym__special_character, + STATE(1970), 1, + aux_sym__literal_repeat1, + ACTIONS(3511), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(948), 33, + ts_builtin_sym_end, + ACTIONS(3509), 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, @@ -127101,7 +126990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127110,15 +126998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113141] = 3, + [113038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 2, + ACTIONS(992), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(1924), 34, + ACTIONS(990), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -127126,8 +127017,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, @@ -127153,18 +127042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [113185] = 3, + [113082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 4, + ACTIONS(935), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(964), 32, + 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, @@ -127192,20 +127080,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113229] = 3, + [113126] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5327), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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(5217), 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, + [113178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 4, + ACTIONS(939), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(968), 32, + 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, @@ -127233,17 +127166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113273] = 3, + [113222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 4, + ACTIONS(996), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(972), 32, + ACTIONS(994), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -127276,14 +127210,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [113317] = 3, + [113266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(951), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(933), 33, + ACTIONS(949), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -127315,19 +127248,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113361] = 5, + [113310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5315), 1, - sym__special_character, - STATE(2039), 1, - aux_sym__literal_repeat1, - ACTIONS(927), 2, + ACTIONS(890), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(922), 32, + sym__concat, + ACTIONS(888), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -127350,6 +127280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127358,20 +127289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113409] = 3, + [113354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 4, + ACTIONS(1000), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(976), 32, + 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, @@ -127399,16 +127330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113453] = 3, + [113398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 3, + ACTIONS(996), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(918), 33, + ACTIONS(994), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -127440,20 +127371,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113497] = 3, + [113442] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5329), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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(5217), 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, + [113494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 4, + ACTIONS(992), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(980), 32, + ACTIONS(990), 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, @@ -127481,17 +127457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113541] = 3, + [113538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 4, + ACTIONS(1000), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(984), 32, + ACTIONS(998), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -127524,15 +127501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [113585] = 3, + [113582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 4, + ACTIONS(890), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(988), 32, + ACTIONS(888), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -127565,18 +127542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [113629] = 3, + [113626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 3, + ACTIONS(951), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(914), 33, + ts_builtin_sym_end, + ACTIONS(949), 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, @@ -127606,18 +127583,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [113673] = 3, + [113670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 3, + ACTIONS(939), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(910), 33, + ts_builtin_sym_end, + ACTIONS(937), 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, @@ -127647,15 +127624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [113717] = 3, + [113714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 4, + ACTIONS(935), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(994), 32, + ACTIONS(933), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -127688,18 +127665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [113761] = 3, + [113758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 4, + ACTIONS(984), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(998), 32, + ACTIONS(982), 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, @@ -127727,20 +127703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113805] = 3, + [113802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 4, + ACTIONS(980), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1002), 32, + ACTIONS(978), 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, @@ -127768,20 +127744,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [113849] = 3, + [113846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 4, + ACTIONS(962), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(902), 32, + 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, @@ -127809,65 +127785,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, 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, + [113890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 3, + ACTIONS(931), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(906), 33, + ts_builtin_sym_end, + ACTIONS(929), 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, @@ -127897,324 +127829,144 @@ static const uint16_t ts_small_parse_table[] = { 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, + [113934] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(927), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(925), 32, + anon_sym_LF, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4461), 23, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [113978] = 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_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, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [114285] = 3, - ACTIONS(59), 1, + [114022] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3949), 13, + ACTIONS(923), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(921), 32, + anon_sym_LF, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [114329] = 7, + [114066] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5328), 1, + ACTIONS(5331), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -128228,7 +127980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128245,14 +127997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [114381] = 3, + [114118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 3, + ACTIONS(1901), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(890), 33, + ACTIONS(1899), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -128284,16 +128035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [114425] = 3, + [114162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 3, + ACTIONS(966), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(898), 33, + ACTIONS(964), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -128325,24 +128076,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [114469] = 3, + [114206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, + ACTIONS(919), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(894), 33, + ts_builtin_sym_end, + ACTIONS(917), 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, + [114250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1879), 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, @@ -128368,21 +128161,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [114513] = 7, + [114294] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5330), 1, + ACTIONS(5333), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -128396,7 +128189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128413,19 +128206,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [114565] = 5, - ACTIONS(59), 1, + [114346] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 3, + ACTIONS(1869), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1867), 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_BANG_EQ, - ACTIONS(5215), 4, - 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_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [114390] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, anon_sym_QMARK, + ACTIONS(5335), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5237), 13, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -128439,7 +128275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5241), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128456,57 +128292,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [114613] = 5, - ACTIONS(59), 1, + [114442] = 3, + ACTIONS(3), 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, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 34, + anon_sym_LF, + 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5241), 16, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [114486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 1, + sym_file_descriptor, + ACTIONS(5337), 1, + sym__special_character, + STATE(2062), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 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_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, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + 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, - [114661] = 3, + [114534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 3, + ACTIONS(947), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(879), 33, + ACTIONS(945), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -128538,23 +128414,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [114705] = 7, + [114578] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5332), 1, + ACTIONS(5340), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -128568,7 +128445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128585,14 +128462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [114757] = 3, + [114630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 3, + ACTIONS(865), 2, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(1869), 33, + ACTIONS(863), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -128600,6 +128476,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, @@ -128623,15 +128501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [114801] = 3, + [114674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(865), 2, sym_file_descriptor, - ACTIONS(875), 35, + sym_variable_name, + ACTIONS(863), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -128664,17 +128542,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [114718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(900), 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, - [114845] = 3, + [114762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 3, + ACTIONS(1004), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(929), 33, + ACTIONS(1002), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -128706,16 +128623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [114889] = 3, + [114806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 3, + ACTIONS(915), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(937), 33, + ACTIONS(913), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -128747,23 +128664,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [114933] = 7, + [114850] = 5, 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, + ACTIONS(5235), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5293), 4, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5229), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -128777,7 +128693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5233), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128794,21 +128710,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [114985] = 7, + [114898] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5336), 1, + ACTIONS(5342), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -128822,7 +128738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128839,21 +128755,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [115037] = 7, + [114950] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5338), 1, + ACTIONS(5344), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -128867,7 +128783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128884,21 +128800,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [115089] = 7, + [115002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(907), 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, + [115046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(896), 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, + [115090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(974), 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, + [115134] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5340), 1, + ACTIONS(5346), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -128912,7 +128951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128929,21 +128968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [115141] = 7, + [115186] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5245), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_RPAREN, - ACTIONS(5247), 2, + ACTIONS(5348), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5243), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -128957,7 +128996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5241), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128974,19 +129013,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [115193] = 5, + [115238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(873), 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, + [115282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(892), 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, + [115326] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5223), 3, + ACTIONS(5205), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5235), 4, - anon_sym_RBRACK, + ACTIONS(5293), 4, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5217), 13, + ACTIONS(5199), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -129000,7 +129121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5219), 16, + ACTIONS(5201), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -129017,21 +129138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [115241] = 7, + [115374] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5269), 1, anon_sym_QMARK, - ACTIONS(5344), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5350), 1, + anon_sym_COLON, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5211), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5207), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -129045,7 +129166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5209), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -129062,60 +129183,21 @@ static const uint16_t ts_small_parse_table[] = { 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, + [115426] = 7, 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, + ACTIONS(5221), 1, anon_sym_QMARK, + ACTIONS(5352), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5197), 13, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -129129,7 +129211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -129146,54 +129228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [115385] = 3, + [115478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 2, + ACTIONS(943), 3, 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, + ACTIONS(941), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -129225,20 +129267,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [115473] = 3, + [115522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(5354), 1, + sym__special_character, + STATE(2010), 1, + aux_sym__literal_repeat1, + ACTIONS(1859), 3, sym_file_descriptor, - sym__concat, - ACTIONS(879), 34, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1857), 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, @@ -129257,7 +129302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129266,16 +129310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [115517] = 3, + [115570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 2, + ACTIONS(943), 2, sym_file_descriptor, sym__concat, - ACTIONS(894), 34, + ACTIONS(941), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -129310,13 +129353,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [115561] = 3, + [115614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 2, + ACTIONS(976), 3, sym_file_descriptor, sym__concat, - ACTIONS(898), 34, + sym_variable_name, + ACTIONS(974), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -129348,69 +129392,23 @@ static const uint16_t ts_small_parse_table[] = { 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, + [115658] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5237), 1, anon_sym_QMARK, - ACTIONS(5348), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5356), 1, + anon_sym_RPAREN, + ACTIONS(5239), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5235), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5229), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -129424,7 +129422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5233), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -129441,109 +129439,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [115709] = 7, - ACTIONS(59), 1, + [115710] = 3, + ACTIONS(3), 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, + ACTIONS(894), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(892), 34, + anon_sym_LF, + anon_sym_SEMI, 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, 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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [115813] = 5, + [115754] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 4, + ACTIONS(5203), 4, anon_sym_RPAREN_RPAREN, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -129557,7 +129506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -129574,19 +129523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [115861] = 5, + [115802] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 4, + ACTIONS(5203), 4, anon_sym_RPAREN_RPAREN, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -129600,7 +129549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -129617,148 +129566,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [115909] = 7, - ACTIONS(59), 1, + [115850] = 3, + ACTIONS(3), 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, + ACTIONS(875), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(873), 34, + anon_sym_LF, + anon_sym_SEMI, 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, 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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [116013] = 7, - ACTIONS(59), 1, + [115894] = 3, + ACTIONS(3), 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, + ACTIONS(915), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(913), 33, + anon_sym_LF, + 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [116065] = 3, + [115938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 2, + ACTIONS(865), 2, sym_file_descriptor, - sym__concat, - ACTIONS(890), 34, + sym_variable_name, + ACTIONS(863), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -129793,18 +129689,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [116109] = 5, + [115982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5360), 1, - sym__special_character, - STATE(2003), 1, - aux_sym__literal_repeat1, - ACTIONS(1884), 3, + ACTIONS(988), 4, sym_file_descriptor, + sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1882), 31, + ACTIONS(986), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -129826,6 +129719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129836,58 +129730,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [116157] = 7, - ACTIONS(59), 1, + [116026] = 3, + ACTIONS(3), 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, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(863), 35, + anon_sym_LF, + anon_sym_SEMI, 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_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, - [116209] = 3, + [116070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 2, + ACTIONS(919), 3, sym_file_descriptor, sym__concat, - ACTIONS(906), 34, + sym_variable_name, + ACTIONS(917), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -129919,61 +129810,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [116114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, + ACTIONS(923), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(894), 33, + sym_variable_name, + ACTIONS(921), 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, @@ -130001,24 +129851,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [116341] = 7, + [116158] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5364), 1, + ACTIONS(5241), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -130032,7 +129881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -130049,22 +129898,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [116393] = 3, + [116210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 2, + ACTIONS(927), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(875), 34, + sym__concat, + sym_variable_name, + ACTIONS(925), 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, @@ -130090,13 +129939,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [116437] = 3, + [116254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 2, + ACTIONS(898), 2, sym_file_descriptor, sym__concat, - ACTIONS(910), 34, + ACTIONS(896), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130131,13 +129980,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [116481] = 3, + [116298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 2, + ACTIONS(909), 2, sym_file_descriptor, sym__concat, - ACTIONS(914), 34, + ACTIONS(907), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130172,54 +130021,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [116342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 2, + ACTIONS(931), 3, sym_file_descriptor, sym__concat, - ACTIONS(918), 34, + sym_variable_name, + ACTIONS(929), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130251,24 +130060,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [116613] = 7, + [116386] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5366), 1, + ACTIONS(5358), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -130282,7 +130090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -130299,56 +130107,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [116438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(1004), 3, sym_file_descriptor, sym__concat, - ACTIONS(933), 34, + sym_variable_name, + ACTIONS(1002), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130380,24 +130146,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [116757] = 7, + [116482] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5371), 1, + ACTIONS(5360), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -130411,7 +130176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -130428,13 +130193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [116809] = 3, + [116534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 2, + ACTIONS(902), 3, sym_file_descriptor, sym__concat, - ACTIONS(948), 34, + sym_variable_name, + ACTIONS(900), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130466,23 +130232,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [116853] = 5, + [116578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 1, + 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, - STATE(1976), 1, - aux_sym__literal_repeat1, - ACTIONS(3469), 2, + anon_sym_DQUOTE, + 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, + [116622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(3467), 32, + 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, @@ -130501,6 +130305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130509,16 +130314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [116901] = 3, + [116666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 2, + ACTIONS(951), 3, sym_file_descriptor, sym__concat, - ACTIONS(952), 34, + sym_variable_name, + ACTIONS(949), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130550,16 +130355,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [116945] = 3, + [116710] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5362), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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(5217), 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, + [116762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(890), 3, sym_file_descriptor, sym__concat, - ACTIONS(933), 34, + sym_variable_name, + ACTIONS(888), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130591,16 +130441,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [116989] = 3, + [116806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 2, + ACTIONS(1000), 3, sym_file_descriptor, sym__concat, - ACTIONS(956), 34, + sym_variable_name, + ACTIONS(998), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130632,21 +130482,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117033] = 3, + [116850] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5364), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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(5217), 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, + [116902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 2, + ACTIONS(1822), 1, + sym_variable_name, + ACTIONS(5167), 1, sym_file_descriptor, - sym__concat, - ACTIONS(886), 34, + ACTIONS(1816), 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(5165), 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, @@ -130662,27 +130572,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + [116950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 2, + ACTIONS(996), 3, sym_file_descriptor, sym__concat, - ACTIONS(960), 34, + sym_variable_name, + ACTIONS(994), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130714,24 +130611,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117121] = 7, + [116994] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5269), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5375), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5205), 2, + ACTIONS(5366), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5259), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5255), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -130745,7 +130641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5257), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -130762,21 +130658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [117173] = 7, + [117046] = 3, 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, + ACTIONS(854), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -130790,10 +130675,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5219), 16, + ACTIONS(1871), 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, @@ -130806,22 +130695,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [117225] = 7, + [117090] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5377), 1, + ACTIONS(5368), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -130835,7 +130727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -130852,13 +130744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [117277] = 3, + [117142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 2, + ACTIONS(988), 2, sym_file_descriptor, sym__concat, - ACTIONS(964), 34, + ACTIONS(986), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130893,13 +130785,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117321] = 3, + [117186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(947), 3, sym_file_descriptor, sym__concat, - ACTIONS(968), 34, + sym_variable_name, + ACTIONS(945), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130931,16 +130824,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117365] = 3, + [117230] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5370), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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(5217), 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, + [117282] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5372), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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(5217), 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, + [117334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(5374), 1, + sym__special_character, + STATE(2123), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 2, sym_file_descriptor, - sym__concat, - ACTIONS(972), 34, + sym_variable_name, + ACTIONS(953), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -130963,6 +130949,45 @@ static const uint16_t ts_small_parse_table[] = { 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, + [117382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(4568), 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, @@ -130975,13 +131000,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117409] = 3, + [117426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, - ACTIONS(976), 34, + sym_variable_name, + ACTIONS(960), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -131013,24 +131039,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117453] = 7, + [117470] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(2860), 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(4808), 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, - ACTIONS(5375), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + sym_test_operator, + [117514] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2860), 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(4808), 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, - ACTIONS(5197), 13, + 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, + [117558] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3935), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -131044,10 +131140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(4810), 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, @@ -131060,18 +131160,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [117505] = 3, + [117602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(4554), 3, sym_file_descriptor, - sym__concat, - ACTIONS(980), 34, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(4552), 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, @@ -131102,13 +131205,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117549] = 3, + [117646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(966), 3, sym_file_descriptor, sym__concat, - ACTIONS(984), 34, + sym_variable_name, + ACTIONS(964), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -131140,16 +131244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117593] = 3, + [117690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(970), 3, sym_file_descriptor, sym__concat, - ACTIONS(988), 34, + sym_variable_name, + ACTIONS(968), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -131181,25 +131285,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117637] = 3, + [117734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 2, + ACTIONS(962), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(852), 34, + 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_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -131225,54 +131328,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [117681] = 3, - ACTIONS(3), 1, + [117778] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(996), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(994), 34, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5377), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 13, 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, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, + anon_sym_CARET, + ACTIONS(5217), 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, - [117725] = 3, + [117830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(992), 3, sym_file_descriptor, sym__concat, - ACTIONS(998), 34, + sym_variable_name, + ACTIONS(990), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -131304,16 +131412,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117769] = 3, + [117874] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_QMARK, + ACTIONS(5379), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5219), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 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(5217), 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, + [117926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(980), 3, sym_file_descriptor, sym__concat, - ACTIONS(1002), 34, + sym_variable_name, + ACTIONS(978), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -131345,16 +131498,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117813] = 3, + [117970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(984), 3, sym_file_descriptor, sym__concat, - ACTIONS(902), 34, + sym_variable_name, + ACTIONS(982), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -131386,21 +131539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [117857] = 3, + [118014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 4, + ACTIONS(988), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(956), 32, + ACTIONS(986), 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, @@ -131430,21 +131582,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [117901] = 7, + [118058] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5221), 1, anon_sym_QMARK, - ACTIONS(5379), 1, + ACTIONS(5381), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5205), 2, + ACTIONS(5223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5201), 3, + ACTIONS(5219), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5197), 13, + ACTIONS(5215), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -131458,7 +131610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5199), 16, + ACTIONS(5217), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -131475,19 +131627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [117953] = 5, + [118110] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5259), 3, + ACTIONS(5235), 3, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5235), 4, - anon_sym_RBRACK_RBRACK, + ACTIONS(5203), 4, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5255), 13, + ACTIONS(5229), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -131501,7 +131653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5257), 16, + ACTIONS(5233), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -131518,10 +131670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, sym_test_operator, - [118001] = 3, + [118158] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(3729), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -131535,10 +131687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4461), 23, + ACTIONS(5075), 23, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -131559,10 +131711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [118045] = 3, + [118202] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(5235), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5203), 4, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5229), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -131576,14 +131737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4461), 23, + ACTIONS(5233), 16, 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, @@ -131596,14 +131753,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + [118250] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(3949), 13, + ACTIONS(5269), 1, + anon_sym_QMARK, + ACTIONS(5383), 1, + anon_sym_COLON, + ACTIONS(5223), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5211), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5207), 13, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, @@ -131617,14 +131782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4459), 23, + ACTIONS(5209), 16, 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, @@ -131637,141 +131798,73 @@ static const uint16_t ts_small_parse_table[] = { 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, + [118302] = 18, 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, + 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, - sym_number, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(740), 1, anon_sym_BQUOTE, + ACTIONS(744), 1, + sym_test_operator, + STATE(443), 1, + aux_sym__literal_repeat1, + STATE(1276), 1, + sym__expression, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - 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, + ACTIONS(722), 4, 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, - [118220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1869), 33, + ACTIONS(5385), 4, 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, - [118263] = 3, + STATE(814), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(446), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(865), 3, sym_file_descriptor, - ACTIONS(875), 34, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(863), 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, @@ -131799,10 +131892,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [118306] = 18, + [118418] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -131825,9 +131917,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(744), 1, sym_test_operator, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(937), 1, + STATE(1400), 1, sym__expression, ACTIONS(742), 2, anon_sym_LT_LPAREN, @@ -131837,19 +131929,19 @@ static const uint16_t ts_small_parse_table[] = { sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5381), 4, + ACTIONS(5385), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -131857,19 +131949,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118379] = 7, + [118491] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5389), 1, anon_sym_DQUOTE, - ACTIONS(5387), 1, + ACTIONS(5391), 1, aux_sym__simple_variable_name_token1, - STATE(2500), 1, + STATE(2499), 1, sym_string, - ACTIONS(844), 2, + ACTIONS(782), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5383), 9, + ACTIONS(5387), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -131879,7 +131971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 21, + ACTIONS(774), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -131901,69 +131993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [118430] = 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, - 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(1260), 1, - sym__expression, - ACTIONS(742), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(722), 4, - sym_raw_string, - sym_ansi_c_string, - sym_number, - sym_word, - 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, - STATE(437), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118503] = 3, + [118542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 3, + ACTIONS(4570), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(4513), 32, + ACTIONS(4568), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -131996,19 +132033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [118546] = 7, + [118585] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5389), 1, anon_sym_DQUOTE, - ACTIONS(5387), 1, + ACTIONS(5391), 1, aux_sym__simple_variable_name_token1, - STATE(2500), 1, + STATE(2499), 1, sym_string, - ACTIONS(838), 2, + ACTIONS(842), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5383), 9, + ACTIONS(5387), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -132018,7 +132055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 21, + ACTIONS(840), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -132040,17 +132077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [118597] = 3, + [118636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 3, + ACTIONS(865), 1, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1869), 32, + 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, @@ -132078,16 +132114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [118640] = 3, + [118679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 3, + ACTIONS(4554), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(4533), 32, + ACTIONS(4552), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -132120,62 +132157,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [118683] = 18, + [118722] = 3, 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, + 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, - ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(734), 1, sym__special_character, - ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(738), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(744), 1, - sym_test_operator, - STATE(438), 1, - aux_sym__literal_repeat1, - STATE(1570), 1, - sym__expression, - ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(722), 4, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [118765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4552), 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, - ACTIONS(5381), 4, + sym_test_operator, + [118808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4568), 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, - 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, - [118756] = 18, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + 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, + [118851] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -132198,9 +132300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(744), 1, sym_test_operator, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(938), 1, + STATE(1404), 1, sym__expression, ACTIONS(742), 2, anon_sym_LT_LPAREN, @@ -132210,19 +132312,19 @@ static const uint16_t ts_small_parse_table[] = { sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5391), 4, + ACTIONS(5393), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -132230,16 +132332,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118829] = 3, + [118924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 2, + ACTIONS(865), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(875), 33, + 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, @@ -132267,50 +132370,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [118872] = 3, + [118967] = 18, ACTIONS(3), 1, sym_comment, - 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, + 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, - sym_number, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(740), 1, anon_sym_BQUOTE, + ACTIONS(744), 1, + sym_test_operator, + STATE(443), 1, + aux_sym__literal_repeat1, + STATE(1400), 1, + sym__expression, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(722), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - sym_test_operator, - [118915] = 18, + ACTIONS(5395), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(814), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(446), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [119040] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -132333,9 +132450,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(744), 1, sym_test_operator, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(941), 1, + STATE(1211), 1, sym__expression, ACTIONS(742), 2, anon_sym_LT_LPAREN, @@ -132345,19 +132462,19 @@ static const uint16_t ts_small_parse_table[] = { sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5393), 4, + ACTIONS(5397), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -132365,18 +132482,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118988] = 8, + [119113] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(5397), 1, + ACTIONS(5401), 1, anon_sym_POUND, - ACTIONS(5399), 1, + ACTIONS(5403), 1, aux_sym__simple_variable_name_token1, - STATE(2292), 1, + STATE(2274), 1, sym_string, - ACTIONS(5395), 8, + ACTIONS(5399), 8, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -132385,7 +132502,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 10, + ACTIONS(840), 10, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PERCENT, + anon_sym_COLON, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(842), 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, + [119166] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(5401), 1, + anon_sym_POUND, + ACTIONS(5403), 1, + aux_sym__simple_variable_name_token1, + STATE(2274), 1, + sym_string, + ACTIONS(5399), 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(774), 10, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -132396,7 +132558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(844), 13, + ACTIONS(782), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -132410,7 +132572,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [119041] = 18, + [119219] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 1, + sym_variable_name, + ACTIONS(5167), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1816), 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(5165), 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [119266] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -132433,9 +132637,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(744), 1, sym_test_operator, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(940), 1, + STATE(1400), 1, sym__expression, ACTIONS(742), 2, anon_sym_LT_LPAREN, @@ -132445,19 +132649,19 @@ static const uint16_t ts_small_parse_table[] = { sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5401), 4, + ACTIONS(5393), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -132465,7 +132669,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119114] = 18, + [119339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1901), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1899), 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, + [119382] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -132488,9 +132732,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(744), 1, sym_test_operator, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(1570), 1, + STATE(1418), 1, sym__expression, ACTIONS(742), 2, anon_sym_LT_LPAREN, @@ -132500,19 +132744,19 @@ static const uint16_t ts_small_parse_table[] = { sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5401), 4, + ACTIONS(5395), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -132520,78 +132764,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119187] = 8, + [119455] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 1, - anon_sym_DQUOTE, - ACTIONS(5397), 1, - anon_sym_POUND, - ACTIONS(5399), 1, - aux_sym__simple_variable_name_token1, - STATE(2292), 1, - sym_string, - 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, - sym__special_character, - sym_number, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - 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(877), 3, - sym_file_descriptor, + ACTIONS(1822), 1, 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, + ACTIONS(5167), 1, + sym_file_descriptor, + ACTIONS(1816), 13, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -132605,13 +132785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [119283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(4533), 33, + ACTIONS(5165), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -132632,20 +132806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - 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, - [119326] = 18, + [119502] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -132668,9 +132829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(744), 1, sym_test_operator, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(1570), 1, + STATE(1528), 1, sym__expression, ACTIONS(742), 2, anon_sym_LT_LPAREN, @@ -132680,19 +132841,19 @@ static const uint16_t ts_small_parse_table[] = { sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5403), 4, + ACTIONS(5405), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -132700,7 +132861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119399] = 18, + [119575] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -132723,9 +132884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(744), 1, sym_test_operator, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(1558), 1, + STATE(1410), 1, sym__expression, ACTIONS(742), 2, anon_sym_LT_LPAREN, @@ -132735,19 +132896,19 @@ static const uint16_t ts_small_parse_table[] = { sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5403), 4, + ACTIONS(5407), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -132755,34 +132916,71 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119472] = 7, + [119648] = 3, 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, + ACTIONS(1901), 3, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1899), 32, anon_sym_LF, - ACTIONS(5383), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, + 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_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(842), 20, + sym__special_character, + anon_sym_DQUOTE, + 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, + [119691] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 1, + sym_variable_name, + ACTIONS(5167), 1, + sym_file_descriptor, + ACTIONS(1816), 12, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + ACTIONS(5165), 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, @@ -132798,24 +132996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [119522] = 8, + anon_sym_BQUOTE, + [119737] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, + ACTIONS(5411), 1, anon_sym_DQUOTE, - ACTIONS(5409), 1, + ACTIONS(5413), 1, anon_sym_POUND, - ACTIONS(5411), 1, + ACTIONS(5415), 1, aux_sym__simple_variable_name_token1, - STATE(2408), 1, + STATE(2422), 1, sym_string, - ACTIONS(830), 5, + ACTIONS(774), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, sym_number, sym_word, - ACTIONS(5405), 8, + ACTIONS(5409), 8, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -132824,7 +133023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(838), 17, + ACTIONS(782), 17, sym_file_descriptor, sym_variable_name, anon_sym_RPAREN, @@ -132842,63 +133041,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [119574] = 8, + [119789] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, + ACTIONS(5389), 1, anon_sym_DQUOTE, - ACTIONS(5409), 1, - anon_sym_POUND, - ACTIONS(5411), 1, + ACTIONS(5391), 1, aux_sym__simple_variable_name_token1, - STATE(2408), 1, + STATE(2499), 1, sym_string, - ACTIONS(842), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - sym_number, - sym_word, - ACTIONS(5405), 8, + ACTIONS(842), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5387), 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(844), 17, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, + ACTIONS(840), 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_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, - [119626] = 7, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [119839] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, + ACTIONS(5419), 1, anon_sym_DQUOTE, - ACTIONS(5417), 1, + ACTIONS(5421), 1, aux_sym__simple_variable_name_token1, - STATE(2591), 1, + STATE(2584), 1, sym_string, - ACTIONS(844), 2, + ACTIONS(782), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5413), 9, + ACTIONS(5417), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -132908,7 +133106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 20, + ACTIONS(774), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -132929,19 +133127,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [119676] = 7, + [119889] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5411), 1, anon_sym_DQUOTE, - ACTIONS(5387), 1, + ACTIONS(5413), 1, + anon_sym_POUND, + ACTIONS(5415), 1, aux_sym__simple_variable_name_token1, - STATE(2500), 1, + STATE(2422), 1, sym_string, - ACTIONS(838), 2, + ACTIONS(840), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + sym_number, + sym_word, + ACTIONS(5409), 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), 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, + 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, + [119941] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5389), 1, + anon_sym_DQUOTE, + ACTIONS(5391), 1, + aux_sym__simple_variable_name_token1, + STATE(2499), 1, + sym_string, + ACTIONS(782), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5383), 9, + ACTIONS(5387), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -132951,7 +133193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 20, + ACTIONS(774), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -132972,19 +133214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [119726] = 7, + [119991] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, + ACTIONS(5419), 1, anon_sym_DQUOTE, - ACTIONS(5417), 1, + ACTIONS(5421), 1, aux_sym__simple_variable_name_token1, - STATE(2591), 1, + STATE(2584), 1, sym_string, - ACTIONS(838), 2, + ACTIONS(842), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5413), 9, + ACTIONS(5417), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -132994,7 +133236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 20, + ACTIONS(840), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -133015,20 +133257,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [119776] = 7, + [120041] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5421), 1, + ACTIONS(5425), 1, anon_sym_DQUOTE, - ACTIONS(5423), 1, + ACTIONS(5427), 1, aux_sym__simple_variable_name_token1, - STATE(2756), 1, + STATE(2807), 1, sym_string, - ACTIONS(838), 3, + ACTIONS(782), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5419), 9, + ACTIONS(5423), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -133038,7 +133280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(830), 18, + ACTIONS(774), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -133057,20 +133299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [119825] = 7, + [120090] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5421), 1, + ACTIONS(5425), 1, anon_sym_DQUOTE, - ACTIONS(5423), 1, + ACTIONS(5427), 1, aux_sym__simple_variable_name_token1, - STATE(2756), 1, + STATE(2807), 1, sym_string, - ACTIONS(844), 3, + ACTIONS(842), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5419), 9, + ACTIONS(5423), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -133080,7 +133322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(842), 18, + ACTIONS(840), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -133099,52 +133341,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [119874] = 19, + [120139] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(806), 1, - anon_sym_BANG, - ACTIONS(808), 1, + ACTIONS(97), 1, aux_sym_unary_expression_token1, - ACTIONS(810), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(812), 1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(816), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(826), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5425), 1, - sym__special_character, - ACTIONS(5427), 1, - sym_regex, - STATE(1190), 1, + ACTIONS(5429), 1, + anon_sym_RPAREN_RPAREN, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2139), 1, + STATE(1919), 1, sym__expression, - ACTIONS(802), 2, + ACTIONS(149), 2, sym_number, sym_word, - ACTIONS(818), 2, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(824), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1930), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1181), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133152,7 +133394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119946] = 19, + [120211] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -133165,21 +133407,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5429), 1, + ACTIONS(5431), 1, anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2075), 1, + STATE(2105), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -133190,14 +133432,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133205,7 +133447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120018] = 19, + [120283] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -133218,21 +133460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5431), 1, + ACTIONS(5433), 1, anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2090), 1, + STATE(2116), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -133243,14 +133485,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133258,7 +133500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120090] = 19, + [120355] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(726), 1, @@ -133267,43 +133509,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unary_expression_token1, ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(5431), 1, + ACTIONS(5429), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5433), 1, - anon_sym_LPAREN, ACTIONS(5435), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_LPAREN, ACTIONS(5437), 1, - sym__special_character, + anon_sym_DOLLAR_LPAREN, ACTIONS(5439), 1, + sym__special_character, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(5445), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5451), 1, sym_test_operator, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(801), 1, + STATE(645), 1, sym__expression, ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133311,52 +133553,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120162] = 19, + [120427] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, - aux_sym_unary_expression_token1, - ACTIONS(160), 1, + ACTIONS(726), 1, anon_sym_BANG, - ACTIONS(164), 1, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(5435), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(5439), 1, + sym__special_character, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, - sym_test_operator, ACTIONS(5451), 1, - anon_sym_RPAREN_RPAREN, - STATE(925), 1, + sym_test_operator, + ACTIONS(5453), 1, + sym_regex, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(2074), 1, + STATE(908), 1, sym__expression, - ACTIONS(149), 2, + ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133364,52 +133606,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120234] = 19, + [120499] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, - aux_sym_unary_expression_token1, - ACTIONS(160), 1, + ACTIONS(726), 1, anon_sym_BANG, - ACTIONS(164), 1, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(5435), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(5439), 1, + sym__special_character, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(5451), 1, sym_test_operator, - ACTIONS(5453), 1, + ACTIONS(5455), 1, anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(2073), 1, + STATE(896), 1, sym__expression, - ACTIONS(149), 2, + ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133417,7 +133659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120306] = 19, + [120571] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(726), 1, @@ -133426,43 +133668,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unary_expression_token1, ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(5433), 1, - anon_sym_LPAREN, ACTIONS(5435), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_LPAREN, ACTIONS(5437), 1, - sym__special_character, + anon_sym_DOLLAR_LPAREN, ACTIONS(5439), 1, + sym__special_character, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(5445), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5451), 1, sym_test_operator, - ACTIONS(5455), 1, + ACTIONS(5457), 1, anon_sym_RPAREN_RPAREN, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(918), 1, + STATE(826), 1, sym__expression, ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133470,7 +133712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120378] = 19, + [120643] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -133483,21 +133725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5457), 1, - sym_regex, - STATE(925), 1, + ACTIONS(5459), 1, + anon_sym_RPAREN_RPAREN, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1274), 1, + STATE(2135), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -133508,14 +133750,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133523,52 +133765,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120450] = 19, + [120715] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, - aux_sym_unary_expression_token1, - ACTIONS(160), 1, + ACTIONS(726), 1, anon_sym_BANG, - ACTIONS(164), 1, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(5435), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(5439), 1, + sym__special_character, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(5451), 1, sym_test_operator, - ACTIONS(5459), 1, + ACTIONS(5461), 1, anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(2089), 1, + STATE(872), 1, sym__expression, - ACTIONS(149), 2, + ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133576,7 +133818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120522] = 19, + [120787] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -133589,21 +133831,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5461), 1, + ACTIONS(5463), 1, anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2087), 1, + STATE(2071), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -133614,67 +133856,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - STATE(482), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120594] = 19, - ACTIONS(59), 1, - sym_comment, - ACTIONS(726), 1, - anon_sym_BANG, - ACTIONS(728), 1, - aux_sym_unary_expression_token1, - ACTIONS(732), 1, - anon_sym_DOLLAR, - ACTIONS(5433), 1, - anon_sym_LPAREN, - ACTIONS(5435), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5437), 1, - sym__special_character, - ACTIONS(5439), 1, - anon_sym_DQUOTE, - ACTIONS(5443), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - sym_test_operator, - ACTIONS(5463), 1, - anon_sym_RPAREN_RPAREN, - STATE(438), 1, - aux_sym__literal_repeat1, - 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(810), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133682,7 +133871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120666] = 19, + [120859] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -133695,21 +133884,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5465), 1, + ACTIONS(5455), 1, anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2095), 1, + STATE(2122), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -133720,14 +133909,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133735,52 +133924,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120738] = 19, + [120931] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(726), 1, - anon_sym_BANG, - ACTIONS(728), 1, - aux_sym_unary_expression_token1, - ACTIONS(732), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(5433), 1, + ACTIONS(748), 1, anon_sym_LPAREN, - ACTIONS(5435), 1, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5437), 1, + ACTIONS(758), 1, sym__special_character, - ACTIONS(5439), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(770), 1, sym_test_operator, - ACTIONS(5467), 1, + ACTIONS(5465), 1, sym_regex, - STATE(438), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(902), 1, + STATE(1461), 1, sym__expression, - ACTIONS(722), 2, + ACTIONS(149), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133788,7 +133977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120810] = 19, + [121003] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -133801,21 +133990,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5469), 1, + ACTIONS(5467), 1, anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2108), 1, + STATE(2077), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -133826,14 +134015,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133841,7 +134030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120882] = 19, + [121075] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(726), 1, @@ -133850,43 +134039,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unary_expression_token1, ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(5433), 1, - anon_sym_LPAREN, ACTIONS(5435), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_LPAREN, ACTIONS(5437), 1, - sym__special_character, + anon_sym_DOLLAR_LPAREN, ACTIONS(5439), 1, + sym__special_character, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(5445), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5451), 1, sym_test_operator, - ACTIONS(5471), 1, + ACTIONS(5467), 1, anon_sym_RPAREN_RPAREN, - STATE(438), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(917), 1, + STATE(885), 1, sym__expression, ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133894,7 +134083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120954] = 19, + [121147] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -133907,21 +134096,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5455), 1, + ACTIONS(5469), 1, anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2088), 1, + STATE(2032), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -133932,14 +134121,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -133947,35 +134136,35 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121026] = 19, + [121219] = 19, ACTIONS(59), 1, sym_comment, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, ACTIONS(164), 1, anon_sym_DOLLAR, 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(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(770), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5457), 1, - sym_regex, - ACTIONS(5473), 1, - sym__special_character, - STATE(1274), 1, - sym__expression, - STATE(1405), 1, + ACTIONS(5461), 1, + anon_sym_RPAREN_RPAREN, + STATE(803), 1, aux_sym__literal_repeat1, + STATE(2133), 1, + sym__expression, ACTIONS(149), 2, sym_number, sym_word, @@ -133985,14 +134174,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134000,52 +134189,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121098] = 19, + [121291] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(726), 1, - anon_sym_BANG, - ACTIONS(728), 1, + ACTIONS(97), 1, aux_sym_unary_expression_token1, - ACTIONS(732), 1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(5433), 1, + ACTIONS(748), 1, anon_sym_LPAREN, - ACTIONS(5435), 1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5437), 1, + ACTIONS(758), 1, sym__special_character, - ACTIONS(5439), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5451), 1, + ACTIONS(5457), 1, anon_sym_RPAREN_RPAREN, - STATE(438), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(916), 1, + STATE(1966), 1, sym__expression, - ACTIONS(722), 2, + ACTIONS(149), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134053,7 +134242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121170] = 19, + [121363] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -134066,21 +134255,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5475), 1, + ACTIONS(5471), 1, anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1994), 1, + STATE(2113), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -134091,14 +134280,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134106,34 +134295,34 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121242] = 19, + [121435] = 19, ACTIONS(59), 1, sym_comment, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, ACTIONS(164), 1, anon_sym_DOLLAR, ACTIONS(748), 1, anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, - anon_sym_BANG, - ACTIONS(796), 1, - aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5457), 1, + ACTIONS(5465), 1, sym_regex, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1274), 1, + STATE(1461), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -134144,14 +134333,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134159,13 +134348,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121314] = 19, + [121507] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, - aux_sym_unary_expression_token1, - ACTIONS(160), 1, - anon_sym_BANG, ACTIONS(164), 1, anon_sym_DOLLAR, ACTIONS(748), 1, @@ -134178,15 +134363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(812), 1, + anon_sym_BANG, + ACTIONS(814), 1, + aux_sym_unary_expression_token1, + ACTIONS(818), 1, sym_test_operator, - ACTIONS(5471), 1, - anon_sym_RPAREN_RPAREN, - STATE(925), 1, + ACTIONS(5465), 1, + sym_regex, + ACTIONS(5473), 1, + sym__special_character, + STATE(1197), 1, aux_sym__literal_repeat1, - STATE(2026), 1, + STATE(1461), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -134197,14 +134386,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134212,52 +134401,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121386] = 19, + [121579] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(726), 1, + ACTIONS(786), 1, + anon_sym_LPAREN, + ACTIONS(788), 1, anon_sym_BANG, - ACTIONS(728), 1, + ACTIONS(790), 1, aux_sym_unary_expression_token1, - ACTIONS(732), 1, - anon_sym_DOLLAR, - ACTIONS(5433), 1, - anon_sym_LPAREN, - ACTIONS(5435), 1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5437), 1, - sym__special_character, - ACTIONS(5439), 1, + ACTIONS(794), 1, + anon_sym_DOLLAR, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(802), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(808), 1, sym_test_operator, ACTIONS(5475), 1, - anon_sym_RPAREN_RPAREN, - STATE(438), 1, + sym__special_character, + ACTIONS(5477), 1, + sym_regex, + STATE(1426), 1, aux_sym__literal_repeat1, - STATE(624), 1, + STATE(1961), 1, sym__expression, - ACTIONS(722), 2, + ACTIONS(784), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(800), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(1945), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(1430), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134265,52 +134454,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121458] = 19, + [121651] = 19, ACTIONS(59), 1, sym_comment, ACTIONS(127), 1, aux_sym_unary_expression_token1, - ACTIONS(226), 1, + ACTIONS(218), 1, anon_sym_BANG, - ACTIONS(230), 1, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(774), 1, + ACTIONS(820), 1, anon_sym_LPAREN, - ACTIONS(776), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(778), 1, + ACTIONS(824), 1, sym__special_character, - ACTIONS(780), 1, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(790), 1, + ACTIONS(836), 1, sym_test_operator, - ACTIONS(5477), 1, + ACTIONS(5479), 1, sym_regex, - STATE(1091), 1, + STATE(1098), 1, aux_sym__literal_repeat1, - STATE(2058), 1, + STATE(2127), 1, sym__expression, - ACTIONS(222), 2, + ACTIONS(214), 2, sym_number, sym_word, - ACTIONS(782), 2, + ACTIONS(828), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(788), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2100), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(982), 7, + STATE(988), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134318,52 +134507,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121530] = 19, + [121723] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, - aux_sym_unary_expression_token1, - ACTIONS(160), 1, + ACTIONS(726), 1, anon_sym_BANG, - ACTIONS(164), 1, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(5431), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5435), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(5439), 1, + sym__special_character, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(5451), 1, sym_test_operator, - ACTIONS(5463), 1, - anon_sym_RPAREN_RPAREN, - STATE(925), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(2098), 1, + STATE(904), 1, sym__expression, - ACTIONS(149), 2, + ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134371,50 +134560,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121602] = 18, + [121795] = 19, ACTIONS(59), 1, sym_comment, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(806), 1, - anon_sym_BANG, - ACTIONS(808), 1, + ACTIONS(97), 1, aux_sym_unary_expression_token1, - ACTIONS(810), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(812), 1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(816), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(826), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5425), 1, - sym__special_character, - STATE(1190), 1, + ACTIONS(5481), 1, + anon_sym_RPAREN_RPAREN, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1953), 1, + STATE(2058), 1, sym__expression, - ACTIONS(802), 2, + ACTIONS(149), 2, sym_number, sym_word, - ACTIONS(818), 2, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(824), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1930), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1181), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134422,50 +134613,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121671] = 18, - ACTIONS(3), 1, + [121867] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(5483), 1, - anon_sym_esac, - ACTIONS(5485), 1, + ACTIONS(5435), 1, anon_sym_LPAREN, - ACTIONS(5487), 1, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5489), 1, + ACTIONS(5439), 1, sym__special_character, - ACTIONS(5491), 1, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(5493), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(5499), 1, + ACTIONS(5451), 1, sym_test_operator, - STATE(3574), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(3755), 1, - sym_concatenation, - STATE(4192), 1, - sym_last_case_item, - ACTIONS(5497), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2336), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5479), 4, - sym_raw_string, - sym_ansi_c_string, + STATE(862), 1, + sym__expression, + ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(5481), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3539), 7, + ACTIONS(5443), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5449), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(814), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134473,7 +134664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121740] = 18, + [121936] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, @@ -134486,6 +134677,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unary_expression_token1, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, @@ -134494,12 +134687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(770), 1, sym_test_operator, - ACTIONS(5473), 1, - sym__special_character, - STATE(1274), 1, - sym__expression, - STATE(1405), 1, + STATE(803), 1, aux_sym__literal_repeat1, + STATE(1924), 1, + sym__expression, ACTIONS(149), 2, sym_number, sym_word, @@ -134509,14 +134700,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134524,7 +134715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121809] = 18, + [122005] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, @@ -134537,6 +134728,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unary_expression_token1, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, @@ -134545,11 +134738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(770), 1, sym_test_operator, - ACTIONS(5473), 1, - sym__special_character, - STATE(1405), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2027), 1, + STATE(1461), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -134560,14 +134751,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134575,50 +134766,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121878] = 18, + [122074] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(127), 1, + ACTIONS(97), 1, aux_sym_unary_expression_token1, - ACTIONS(226), 1, + ACTIONS(160), 1, anon_sym_BANG, - ACTIONS(230), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(774), 1, + ACTIONS(748), 1, anon_sym_LPAREN, - ACTIONS(776), 1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(778), 1, + ACTIONS(758), 1, sym__special_character, - ACTIONS(780), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(790), 1, + ACTIONS(844), 1, sym_test_operator, - STATE(1091), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2058), 1, + STATE(1461), 1, sym__expression, - ACTIONS(222), 2, + ACTIONS(149), 2, sym_number, sym_word, - ACTIONS(782), 2, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(788), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2100), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(982), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134626,50 +134817,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121947] = 18, + [122143] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(127), 1, - aux_sym_unary_expression_token1, - ACTIONS(226), 1, - anon_sym_BANG, - ACTIONS(230), 1, - anon_sym_DOLLAR, - ACTIONS(774), 1, + ACTIONS(786), 1, anon_sym_LPAREN, - ACTIONS(776), 1, + ACTIONS(788), 1, + anon_sym_BANG, + ACTIONS(790), 1, + aux_sym_unary_expression_token1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(778), 1, - sym__special_character, - ACTIONS(780), 1, + ACTIONS(794), 1, + anon_sym_DOLLAR, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(802), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(790), 1, + ACTIONS(808), 1, sym_test_operator, - STATE(1091), 1, + ACTIONS(5475), 1, + sym__special_character, + STATE(1426), 1, aux_sym__literal_repeat1, - STATE(2066), 1, + STATE(1961), 1, sym__expression, - ACTIONS(222), 2, + ACTIONS(784), 2, sym_number, sym_word, - ACTIONS(782), 2, + ACTIONS(800), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(788), 2, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2100), 6, + STATE(1945), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(982), 7, + STATE(1430), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134677,50 +134868,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122016] = 18, + [122212] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(806), 1, - anon_sym_BANG, - ACTIONS(808), 1, + ACTIONS(127), 1, aux_sym_unary_expression_token1, - ACTIONS(810), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(812), 1, + ACTIONS(218), 1, + anon_sym_BANG, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(816), 1, - anon_sym_DQUOTE, ACTIONS(820), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_LPAREN, ACTIONS(822), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, + ACTIONS(824), 1, + sym__special_character, ACTIONS(826), 1, + anon_sym_DQUOTE, + ACTIONS(830), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(832), 1, + anon_sym_BQUOTE, + ACTIONS(836), 1, sym_test_operator, - ACTIONS(5425), 1, - sym__special_character, - STATE(1190), 1, + STATE(1098), 1, aux_sym__literal_repeat1, - STATE(2139), 1, + STATE(1958), 1, sym__expression, - ACTIONS(802), 2, + ACTIONS(214), 2, sym_number, sym_word, - ACTIONS(818), 2, + ACTIONS(828), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(824), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1930), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1181), 7, + STATE(988), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134728,101 +134919,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122085] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, - anon_sym_DOLLAR, - 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(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - sym_test_operator, - 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, - 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, - 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, - [122154] = 18, - ACTIONS(3), 1, + [122281] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(218), 1, + anon_sym_BANG, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(5485), 1, + ACTIONS(820), 1, anon_sym_LPAREN, - ACTIONS(5487), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5489), 1, + ACTIONS(824), 1, sym__special_character, - ACTIONS(5491), 1, - anon_sym_DQUOTE, - ACTIONS(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - sym_test_operator, - ACTIONS(5507), 1, - anon_sym_esac, - STATE(3574), 1, - aux_sym__literal_repeat1, - STATE(3755), 1, - sym_concatenation, - STATE(4271), 1, - sym_last_case_item, - ACTIONS(5497), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2348), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5479), 4, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(826), 1, + anon_sym_DQUOTE, + ACTIONS(830), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(832), 1, + anon_sym_BQUOTE, + ACTIONS(836), 1, + sym_test_operator, + STATE(1098), 1, + aux_sym__literal_repeat1, + STATE(2070), 1, + sym__expression, + ACTIONS(214), 2, sym_number, sym_word, - ACTIONS(5505), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3539), 7, + ACTIONS(828), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2117), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(988), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134830,50 +134970,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122223] = 18, + [122350] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(127), 1, - aux_sym_unary_expression_token1, - ACTIONS(226), 1, + ACTIONS(726), 1, anon_sym_BANG, - ACTIONS(230), 1, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(774), 1, + ACTIONS(5435), 1, anon_sym_LPAREN, - ACTIONS(776), 1, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(778), 1, + ACTIONS(5439), 1, sym__special_character, - ACTIONS(780), 1, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(790), 1, + ACTIONS(5451), 1, sym_test_operator, - STATE(1091), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(1928), 1, + STATE(863), 1, sym__expression, - ACTIONS(222), 2, + ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(782), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(788), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2100), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(982), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134881,50 +135021,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122292] = 18, - ACTIONS(3), 1, + [122419] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(5485), 1, + ACTIONS(748), 1, anon_sym_LPAREN, - ACTIONS(5487), 1, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5489), 1, + ACTIONS(758), 1, sym__special_character, - ACTIONS(5491), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(5493), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(5499), 1, + ACTIONS(770), 1, sym_test_operator, - ACTIONS(5511), 1, - anon_sym_esac, - STATE(3574), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(3755), 1, - sym_concatenation, - STATE(4258), 1, - sym_last_case_item, - ACTIONS(5497), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2341), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5479), 4, - sym_raw_string, - sym_ansi_c_string, + STATE(1967), 1, + sym__expression, + ACTIONS(149), 2, sym_number, sym_word, - ACTIONS(5509), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3539), 7, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1351), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134932,50 +135072,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122361] = 18, + [122488] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5485), 1, - anon_sym_LPAREN, ACTIONS(5487), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_esac, ACTIONS(5489), 1, - sym__special_character, + anon_sym_LPAREN, ACTIONS(5491), 1, - anon_sym_DQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(5493), 1, - anon_sym_DOLLAR_LBRACE, + sym__special_character, ACTIONS(5495), 1, - anon_sym_BQUOTE, + anon_sym_DQUOTE, + ACTIONS(5497), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5499), 1, + anon_sym_BQUOTE, + ACTIONS(5503), 1, sym_test_operator, - ACTIONS(5515), 1, - anon_sym_esac, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4212), 1, + STATE(4059), 1, sym_last_case_item, - ACTIONS(5497), 2, + ACTIONS(5501), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2347), 2, + STATE(2353), 2, sym_case_item, aux_sym_case_statement_repeat1, - ACTIONS(5479), 4, + ACTIONS(5483), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5513), 4, + ACTIONS(5485), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -134983,50 +135123,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122430] = 18, + [122557] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(127), 1, - aux_sym_unary_expression_token1, - ACTIONS(226), 1, + ACTIONS(726), 1, anon_sym_BANG, - ACTIONS(230), 1, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(774), 1, + ACTIONS(5435), 1, anon_sym_LPAREN, - ACTIONS(776), 1, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(778), 1, + ACTIONS(5439), 1, sym__special_character, - ACTIONS(780), 1, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(790), 1, + ACTIONS(5451), 1, sym_test_operator, - STATE(1091), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(1999), 1, + STATE(908), 1, sym__expression, - ACTIONS(222), 2, + ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(782), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(788), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2100), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(982), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135034,50 +135174,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122499] = 18, + [122626] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, - aux_sym_unary_expression_token1, - ACTIONS(160), 1, - anon_sym_BANG, - ACTIONS(164), 1, - anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(786), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(788), 1, + anon_sym_BANG, + ACTIONS(790), 1, + aux_sym_unary_expression_token1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(794), 1, + anon_sym_DOLLAR, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(802), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(808), 1, sym_test_operator, - STATE(925), 1, + ACTIONS(5475), 1, + sym__special_character, + STATE(1426), 1, aux_sym__literal_repeat1, - STATE(2091), 1, + STATE(1939), 1, sym__expression, - ACTIONS(149), 2, + ACTIONS(784), 2, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(800), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1945), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(1430), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135085,7 +135225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122568] = 18, + [122695] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, @@ -135100,17 +135240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, + ACTIONS(812), 1, anon_sym_BANG, - ACTIONS(796), 1, + ACTIONS(814), 1, aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(818), 1, sym_test_operator, - STATE(925), 1, + ACTIONS(5473), 1, + sym__special_character, + STATE(1197), 1, aux_sym__literal_repeat1, - STATE(1932), 1, + STATE(1938), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -135121,14 +135261,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135136,13 +135276,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122637] = 18, + [122764] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, - aux_sym_unary_expression_token1, - ACTIONS(160), 1, - anon_sym_BANG, ACTIONS(164), 1, anon_sym_DOLLAR, ACTIONS(748), 1, @@ -135155,13 +135291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(812), 1, + anon_sym_BANG, + ACTIONS(814), 1, + aux_sym_unary_expression_token1, + ACTIONS(818), 1, sym_test_operator, - STATE(925), 1, + ACTIONS(5473), 1, + sym__special_character, + STATE(1197), 1, aux_sym__literal_repeat1, - STATE(2092), 1, + STATE(2080), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -135172,14 +135312,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135187,50 +135327,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122706] = 18, + [122833] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(127), 1, aux_sym_unary_expression_token1, - ACTIONS(226), 1, + ACTIONS(218), 1, anon_sym_BANG, - ACTIONS(230), 1, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(774), 1, + ACTIONS(820), 1, anon_sym_LPAREN, - ACTIONS(776), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(778), 1, + ACTIONS(824), 1, sym__special_character, - ACTIONS(780), 1, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(790), 1, + ACTIONS(836), 1, sym_test_operator, - STATE(1091), 1, + STATE(1098), 1, aux_sym__literal_repeat1, - STATE(2093), 1, + STATE(1932), 1, sym__expression, - ACTIONS(222), 2, + ACTIONS(214), 2, sym_number, sym_word, - ACTIONS(782), 2, + ACTIONS(828), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(788), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2100), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(982), 7, + STATE(988), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135238,32 +135378,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122775] = 18, + [122902] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, anon_sym_DOLLAR, 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(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, - anon_sym_BANG, - ACTIONS(796), 1, - aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(770), 1, sym_test_operator, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1961), 1, + STATE(1946), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -135274,14 +135414,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135289,50 +135429,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122844] = 18, + [122971] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(164), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(218), 1, + anon_sym_BANG, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(820), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(824), 1, + sym__special_character, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, - anon_sym_BANG, - ACTIONS(796), 1, - aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(836), 1, sym_test_operator, - STATE(925), 1, + STATE(1098), 1, aux_sym__literal_repeat1, - STATE(1979), 1, + STATE(2140), 1, sym__expression, - ACTIONS(149), 2, + ACTIONS(214), 2, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(828), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(988), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135340,101 +135480,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122913] = 18, + [123040] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(127), 1, aux_sym_unary_expression_token1, - ACTIONS(160), 1, + ACTIONS(218), 1, anon_sym_BANG, - ACTIONS(164), 1, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(820), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(824), 1, + sym__special_character, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(836), 1, sym_test_operator, - STATE(925), 1, + STATE(1098), 1, aux_sym__literal_repeat1, - STATE(1274), 1, + STATE(2087), 1, sym__expression, - ACTIONS(149), 2, + ACTIONS(214), 2, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(828), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122982] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, - anon_sym_DOLLAR, - 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(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - sym_test_operator, - ACTIONS(5519), 1, - anon_sym_esac, - STATE(3574), 1, - aux_sym__literal_repeat1, - STATE(3755), 1, - sym_concatenation, - STATE(4210), 1, - sym_last_case_item, - ACTIONS(5497), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - ACTIONS(5517), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3539), 7, + STATE(988), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135442,32 +135531,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123051] = 18, + [123109] = 18, ACTIONS(59), 1, sym_comment, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, ACTIONS(164), 1, anon_sym_DOLLAR, ACTIONS(748), 1, anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, - anon_sym_BANG, - ACTIONS(796), 1, - aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(844), 1, sym_test_operator, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1978), 1, + STATE(1943), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -135478,14 +135567,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135493,7 +135582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123120] = 18, + [123178] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, @@ -135508,17 +135597,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, + ACTIONS(812), 1, anon_sym_BANG, - ACTIONS(796), 1, + ACTIONS(814), 1, aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(818), 1, sym_test_operator, - STATE(925), 1, + ACTIONS(5473), 1, + sym__special_character, + STATE(1197), 1, aux_sym__literal_repeat1, - STATE(1915), 1, + STATE(1461), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -135529,14 +135618,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135544,7 +135633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123189] = 18, + [123247] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, @@ -135559,17 +135648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, + ACTIONS(812), 1, anon_sym_BANG, - ACTIONS(796), 1, + ACTIONS(814), 1, aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(818), 1, sym_test_operator, - STATE(925), 1, + ACTIONS(5473), 1, + sym__special_character, + STATE(1197), 1, aux_sym__literal_repeat1, - STATE(1916), 1, + STATE(1976), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -135580,14 +135669,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135595,50 +135684,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123258] = 18, + [123316] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(726), 1, + ACTIONS(786), 1, + anon_sym_LPAREN, + ACTIONS(788), 1, anon_sym_BANG, - ACTIONS(728), 1, + ACTIONS(790), 1, aux_sym_unary_expression_token1, - ACTIONS(732), 1, - anon_sym_DOLLAR, - ACTIONS(5433), 1, - anon_sym_LPAREN, - ACTIONS(5435), 1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5437), 1, - sym__special_character, - ACTIONS(5439), 1, + ACTIONS(794), 1, + anon_sym_DOLLAR, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(802), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(808), 1, sym_test_operator, - STATE(438), 1, + ACTIONS(5475), 1, + sym__special_character, + STATE(1426), 1, aux_sym__literal_repeat1, - STATE(878), 1, + STATE(1965), 1, sym__expression, - ACTIONS(722), 2, + ACTIONS(784), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(800), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(1945), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(1430), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135646,32 +135735,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123327] = 18, + [123385] = 18, ACTIONS(59), 1, sym_comment, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, ACTIONS(164), 1, anon_sym_DOLLAR, 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(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(770), 1, + ACTIONS(844), 1, sym_test_operator, - ACTIONS(5473), 1, - sym__special_character, - STATE(1405), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2119), 1, + STATE(2089), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -135682,14 +135771,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135697,50 +135786,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123396] = 18, + [123454] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(804), 1, + ACTIONS(786), 1, anon_sym_LPAREN, - ACTIONS(806), 1, + ACTIONS(788), 1, anon_sym_BANG, - ACTIONS(808), 1, + ACTIONS(790), 1, aux_sym_unary_expression_token1, - ACTIONS(810), 1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(812), 1, + ACTIONS(794), 1, anon_sym_DOLLAR, - ACTIONS(816), 1, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(802), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(826), 1, + ACTIONS(808), 1, sym_test_operator, - ACTIONS(5425), 1, + ACTIONS(5475), 1, sym__special_character, - STATE(1190), 1, + STATE(1426), 1, aux_sym__literal_repeat1, - STATE(2078), 1, + STATE(1954), 1, sym__expression, - ACTIONS(802), 2, + ACTIONS(784), 2, sym_number, sym_word, - ACTIONS(818), 2, + ACTIONS(800), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(824), 2, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1930), 6, + STATE(1945), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1181), 7, + STATE(1430), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135748,50 +135837,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123465] = 18, - ACTIONS(59), 1, + [123523] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(127), 1, - aux_sym_unary_expression_token1, - ACTIONS(226), 1, - anon_sym_BANG, - ACTIONS(230), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(774), 1, + ACTIONS(5489), 1, anon_sym_LPAREN, - ACTIONS(776), 1, + ACTIONS(5491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(778), 1, + ACTIONS(5493), 1, sym__special_character, - ACTIONS(780), 1, + ACTIONS(5495), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(5497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(5499), 1, anon_sym_BQUOTE, - ACTIONS(790), 1, + ACTIONS(5503), 1, sym_test_operator, - STATE(1091), 1, + ACTIONS(5507), 1, + anon_sym_esac, + STATE(3564), 1, aux_sym__literal_repeat1, - 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, + STATE(3771), 1, + sym_concatenation, + STATE(4119), 1, + sym_last_case_item, + ACTIONS(5501), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2100), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(982), 7, + STATE(2355), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5483), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(5505), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135799,50 +135888,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123534] = 18, + [123592] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(804), 1, + ACTIONS(786), 1, anon_sym_LPAREN, - ACTIONS(806), 1, + ACTIONS(788), 1, anon_sym_BANG, - ACTIONS(808), 1, + ACTIONS(790), 1, aux_sym_unary_expression_token1, - ACTIONS(810), 1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(812), 1, + ACTIONS(794), 1, anon_sym_DOLLAR, - ACTIONS(816), 1, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(802), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(826), 1, + ACTIONS(808), 1, sym_test_operator, - ACTIONS(5425), 1, + ACTIONS(5475), 1, sym__special_character, - STATE(1190), 1, + STATE(1426), 1, aux_sym__literal_repeat1, - STATE(2120), 1, + STATE(1953), 1, sym__expression, - ACTIONS(802), 2, + ACTIONS(784), 2, sym_number, sym_word, - ACTIONS(818), 2, + ACTIONS(800), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(824), 2, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1930), 6, + STATE(1945), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1181), 7, + STATE(1430), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135850,13 +135939,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123603] = 18, + [123661] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, - aux_sym_unary_expression_token1, - ACTIONS(160), 1, - anon_sym_BANG, ACTIONS(164), 1, anon_sym_DOLLAR, ACTIONS(748), 1, @@ -135869,13 +135954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(812), 1, + anon_sym_BANG, + ACTIONS(814), 1, + aux_sym_unary_expression_token1, + ACTIONS(818), 1, sym_test_operator, - STATE(925), 1, + ACTIONS(5473), 1, + sym__special_character, + STATE(1197), 1, aux_sym__literal_repeat1, - STATE(2126), 1, + STATE(1913), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -135886,14 +135975,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135901,50 +135990,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123672] = 18, + [123730] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(164), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(218), 1, + anon_sym_BANG, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(820), 1, anon_sym_LPAREN, - ACTIONS(752), 1, - anon_sym_BANG, - ACTIONS(754), 1, - aux_sym_unary_expression_token1, - ACTIONS(756), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(824), 1, + sym__special_character, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(770), 1, + ACTIONS(836), 1, sym_test_operator, - ACTIONS(5473), 1, - sym__special_character, - STATE(1405), 1, + STATE(1098), 1, aux_sym__literal_repeat1, - STATE(1935), 1, + STATE(2127), 1, sym__expression, - ACTIONS(149), 2, + ACTIONS(214), 2, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(828), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(988), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -135952,101 +136041,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123741] = 18, + [123799] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - 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(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - sym_test_operator, - ACTIONS(5523), 1, - anon_sym_esac, - STATE(3574), 1, - aux_sym__literal_repeat1, - STATE(3755), 1, - sym_concatenation, - STATE(4228), 1, - sym_last_case_item, - ACTIONS(5497), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - 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, - [123810] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, - anon_sym_DOLLAR, - ACTIONS(5485), 1, anon_sym_LPAREN, - ACTIONS(5487), 1, + ACTIONS(5491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5489), 1, + ACTIONS(5493), 1, sym__special_character, - ACTIONS(5491), 1, + ACTIONS(5495), 1, anon_sym_DQUOTE, - ACTIONS(5493), 1, + ACTIONS(5497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_BQUOTE, ACTIONS(5499), 1, + anon_sym_BQUOTE, + ACTIONS(5503), 1, sym_test_operator, - ACTIONS(5527), 1, + ACTIONS(5511), 1, anon_sym_esac, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4231), 1, + STATE(4235), 1, sym_last_case_item, - ACTIONS(5497), 2, + ACTIONS(5501), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2356), 2, + STATE(2351), 2, sym_case_item, aux_sym_case_statement_repeat1, - ACTIONS(5479), 4, + ACTIONS(5483), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5525), 4, + ACTIONS(5509), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136054,7 +136092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123879] = 18, + [123868] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, @@ -136067,6 +136105,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unary_expression_token1, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, @@ -136075,11 +136115,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(770), 1, sym_test_operator, - ACTIONS(5473), 1, - sym__special_character, - STATE(1405), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1946), 1, + STATE(2143), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -136090,14 +136128,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136105,32 +136143,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123948] = 18, + [123937] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, anon_sym_DOLLAR, 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(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, - anon_sym_BANG, - ACTIONS(796), 1, - aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(770), 1, sym_test_operator, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1919), 1, + STATE(2081), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -136141,14 +136179,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136156,50 +136194,152 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124017] = 18, - ACTIONS(59), 1, + [124006] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(164), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(5489), 1, anon_sym_LPAREN, - ACTIONS(752), 1, - anon_sym_BANG, - ACTIONS(754), 1, - aux_sym_unary_expression_token1, - ACTIONS(756), 1, + ACTIONS(5491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(5493), 1, + sym__special_character, + ACTIONS(5495), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(5497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(5499), 1, anon_sym_BQUOTE, - ACTIONS(770), 1, + ACTIONS(5503), 1, sym_test_operator, - ACTIONS(5473), 1, - sym__special_character, - STATE(1405), 1, + ACTIONS(5515), 1, + anon_sym_esac, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(2137), 1, - sym__expression, - ACTIONS(149), 2, + STATE(3771), 1, + sym_concatenation, + STATE(4239), 1, + sym_last_case_item, + ACTIONS(5501), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2360), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5483), 4, + sym_raw_string, + sym_ansi_c_string, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(5513), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124075] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5493), 1, + sym__special_character, + ACTIONS(5495), 1, + anon_sym_DQUOTE, + ACTIONS(5497), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5499), 1, + anon_sym_BQUOTE, + ACTIONS(5503), 1, + sym_test_operator, + ACTIONS(5519), 1, + anon_sym_esac, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4126), 1, + sym_last_case_item, + ACTIONS(5501), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2373), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5483), 4, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + sym_number, + sym_word, + ACTIONS(5517), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124144] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5493), 1, + sym__special_character, + ACTIONS(5495), 1, + anon_sym_DQUOTE, + ACTIONS(5497), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5499), 1, + anon_sym_BQUOTE, + ACTIONS(5503), 1, + sym_test_operator, + ACTIONS(5523), 1, + anon_sym_esac, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4157), 1, + sym_last_case_item, + ACTIONS(5501), 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, - STATE(482), 7, + STATE(2359), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5483), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(5521), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136207,40 +136347,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124086] = 18, + [124213] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5485), 1, + ACTIONS(5489), 1, anon_sym_LPAREN, - ACTIONS(5487), 1, + ACTIONS(5491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5489), 1, + ACTIONS(5493), 1, sym__special_character, - ACTIONS(5491), 1, + ACTIONS(5495), 1, anon_sym_DQUOTE, - ACTIONS(5493), 1, + ACTIONS(5497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, + ACTIONS(5499), 1, anon_sym_BQUOTE, + ACTIONS(5503), 1, + sym_test_operator, + ACTIONS(5527), 1, + anon_sym_esac, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4093), 1, + sym_last_case_item, + ACTIONS(5501), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2340), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5483), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(5525), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124282] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5493), 1, + sym__special_character, + ACTIONS(5495), 1, + anon_sym_DQUOTE, + ACTIONS(5497), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5499), 1, + anon_sym_BQUOTE, + ACTIONS(5503), 1, sym_test_operator, ACTIONS(5531), 1, anon_sym_esac, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4119), 1, + STATE(4094), 1, sym_last_case_item, - ACTIONS(5497), 2, + ACTIONS(5501), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2338), 2, + STATE(2343), 2, sym_case_item, aux_sym_case_statement_repeat1, - ACTIONS(5479), 4, + ACTIONS(5483), 4, sym_raw_string, sym_ansi_c_string, sym_number, @@ -136250,7 +136441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136258,50 +136449,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124155] = 18, + [124351] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(726), 1, - anon_sym_BANG, - ACTIONS(728), 1, + ACTIONS(97), 1, aux_sym_unary_expression_token1, - ACTIONS(732), 1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(5433), 1, + ACTIONS(748), 1, anon_sym_LPAREN, - ACTIONS(5435), 1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5437), 1, + ACTIONS(758), 1, sym__special_character, - ACTIONS(5439), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(844), 1, sym_test_operator, - STATE(438), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(857), 1, + STATE(2003), 1, sym__expression, - ACTIONS(722), 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(1351), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(454), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124420] = 18, + ACTIONS(59), 1, + sym_comment, + ACTIONS(786), 1, + anon_sym_LPAREN, + ACTIONS(788), 1, + anon_sym_BANG, + ACTIONS(790), 1, + aux_sym_unary_expression_token1, + ACTIONS(792), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(794), 1, + anon_sym_DOLLAR, + ACTIONS(798), 1, + anon_sym_DQUOTE, + ACTIONS(802), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(804), 1, + anon_sym_BQUOTE, + ACTIONS(808), 1, + sym_test_operator, + ACTIONS(5475), 1, + sym__special_character, + STATE(1426), 1, + aux_sym__literal_repeat1, + STATE(1997), 1, + sym__expression, + ACTIONS(784), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(800), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(1945), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(1430), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136309,7 +136551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124224] = 18, + [124489] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, @@ -136324,17 +136566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, + ACTIONS(812), 1, anon_sym_BANG, - ACTIONS(796), 1, + ACTIONS(814), 1, aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(818), 1, sym_test_operator, - STATE(925), 1, + ACTIONS(5473), 1, + sym__special_character, + STATE(1197), 1, aux_sym__literal_repeat1, - STATE(1274), 1, + STATE(1992), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -136345,14 +136587,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136360,40 +136602,40 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124293] = 18, + [124558] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5485), 1, + ACTIONS(5489), 1, anon_sym_LPAREN, - ACTIONS(5487), 1, + ACTIONS(5491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5489), 1, + ACTIONS(5493), 1, sym__special_character, - ACTIONS(5491), 1, + ACTIONS(5495), 1, anon_sym_DQUOTE, - ACTIONS(5493), 1, + ACTIONS(5497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_BQUOTE, ACTIONS(5499), 1, + anon_sym_BQUOTE, + ACTIONS(5503), 1, sym_test_operator, ACTIONS(5535), 1, anon_sym_esac, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4118), 1, + STATE(4161), 1, sym_last_case_item, - ACTIONS(5497), 2, + ACTIONS(5501), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2337), 2, + STATE(2345), 2, sym_case_item, aux_sym_case_statement_repeat1, - ACTIONS(5479), 4, + ACTIONS(5483), 4, sym_raw_string, sym_ansi_c_string, sym_number, @@ -136403,7 +136645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136411,50 +136653,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124362] = 18, + [124627] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(127), 1, aux_sym_unary_expression_token1, - ACTIONS(160), 1, + ACTIONS(218), 1, anon_sym_BANG, - ACTIONS(164), 1, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(748), 1, + ACTIONS(820), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(824), 1, + sym__special_character, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(836), 1, sym_test_operator, - STATE(925), 1, + STATE(1098), 1, aux_sym__literal_repeat1, - STATE(2081), 1, + STATE(2142), 1, sym__expression, - ACTIONS(149), 2, + ACTIONS(214), 2, sym_number, sym_word, - ACTIONS(762), 2, + ACTIONS(828), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(768), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(988), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136462,50 +136704,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124431] = 18, + [124696] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(726), 1, - anon_sym_BANG, - ACTIONS(728), 1, + ACTIONS(127), 1, aux_sym_unary_expression_token1, - ACTIONS(732), 1, + ACTIONS(218), 1, + anon_sym_BANG, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(5433), 1, + ACTIONS(820), 1, anon_sym_LPAREN, - ACTIONS(5435), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5437), 1, + ACTIONS(824), 1, sym__special_character, - ACTIONS(5439), 1, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(836), 1, sym_test_operator, - STATE(438), 1, + STATE(1098), 1, aux_sym__literal_repeat1, - STATE(856), 1, + STATE(1977), 1, sym__expression, - ACTIONS(722), 2, + ACTIONS(214), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(828), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(2117), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(988), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136513,32 +136755,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124500] = 18, + [124765] = 18, ACTIONS(59), 1, sym_comment, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, ACTIONS(164), 1, anon_sym_DOLLAR, ACTIONS(748), 1, anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, - anon_sym_BANG, - ACTIONS(796), 1, - aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(844), 1, sym_test_operator, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1942), 1, + STATE(2090), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -136549,14 +136791,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136564,50 +136806,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124569] = 18, - ACTIONS(59), 1, + [124834] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(127), 1, - aux_sym_unary_expression_token1, - ACTIONS(226), 1, - anon_sym_BANG, - ACTIONS(230), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(774), 1, + ACTIONS(5489), 1, anon_sym_LPAREN, - ACTIONS(776), 1, + ACTIONS(5491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(778), 1, + ACTIONS(5493), 1, sym__special_character, - ACTIONS(780), 1, + ACTIONS(5495), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(5497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(5499), 1, anon_sym_BQUOTE, - ACTIONS(790), 1, + ACTIONS(5503), 1, sym_test_operator, - STATE(1091), 1, + ACTIONS(5539), 1, + anon_sym_esac, + STATE(3564), 1, aux_sym__literal_repeat1, - 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, + STATE(3771), 1, + sym_concatenation, + STATE(4057), 1, + sym_last_case_item, + ACTIONS(5501), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2100), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(982), 7, + STATE(2335), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5483), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(5537), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136615,50 +136857,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124638] = 18, + [124903] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(804), 1, + ACTIONS(164), 1, + anon_sym_DOLLAR, + ACTIONS(748), 1, anon_sym_LPAREN, - ACTIONS(806), 1, + ACTIONS(752), 1, anon_sym_BANG, - ACTIONS(808), 1, + ACTIONS(754), 1, aux_sym_unary_expression_token1, - ACTIONS(810), 1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(812), 1, - anon_sym_DOLLAR, - ACTIONS(816), 1, + ACTIONS(758), 1, + sym__special_character, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(826), 1, + ACTIONS(770), 1, sym_test_operator, - ACTIONS(5425), 1, - sym__special_character, - STATE(1190), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1962), 1, + STATE(2026), 1, sym__expression, - ACTIONS(802), 2, + ACTIONS(149), 2, sym_number, sym_word, - ACTIONS(818), 2, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(824), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1930), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1181), 7, + STATE(454), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124972] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5493), 1, + sym__special_character, + ACTIONS(5495), 1, + anon_sym_DQUOTE, + ACTIONS(5497), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5499), 1, + anon_sym_BQUOTE, + ACTIONS(5503), 1, + sym_test_operator, + ACTIONS(5543), 1, + anon_sym_esac, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4120), 1, + sym_last_case_item, + ACTIONS(5501), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2361), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5483), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(5541), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136666,7 +136959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124707] = 18, + [125041] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, @@ -136681,17 +136974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(794), 1, + ACTIONS(812), 1, anon_sym_BANG, - ACTIONS(796), 1, + ACTIONS(814), 1, aux_sym_unary_expression_token1, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(800), 1, + ACTIONS(818), 1, sym_test_operator, - STATE(925), 1, + ACTIONS(5473), 1, + sym__special_character, + STATE(1197), 1, aux_sym__literal_repeat1, - STATE(1920), 1, + STATE(1933), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -136702,14 +136995,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136717,50 +137010,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124776] = 18, + [125110] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(804), 1, + ACTIONS(164), 1, + anon_sym_DOLLAR, + ACTIONS(748), 1, anon_sym_LPAREN, - ACTIONS(806), 1, + ACTIONS(752), 1, anon_sym_BANG, - ACTIONS(808), 1, + ACTIONS(754), 1, aux_sym_unary_expression_token1, - ACTIONS(810), 1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(812), 1, - anon_sym_DOLLAR, - ACTIONS(816), 1, + ACTIONS(758), 1, + sym__special_character, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(826), 1, + ACTIONS(770), 1, sym_test_operator, - ACTIONS(5425), 1, - sym__special_character, - STATE(1190), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1960), 1, + STATE(1978), 1, sym__expression, - ACTIONS(802), 2, + ACTIONS(149), 2, sym_number, sym_word, - ACTIONS(818), 2, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(824), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1930), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1181), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136768,7 +137061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124845] = 18, + [125179] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -136781,19 +137074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1921), 1, + STATE(1984), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -136804,14 +137097,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136819,50 +137112,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124914] = 18, + [125248] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(127), 1, - aux_sym_unary_expression_token1, - ACTIONS(226), 1, - anon_sym_BANG, - ACTIONS(230), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(774), 1, + ACTIONS(748), 1, anon_sym_LPAREN, - ACTIONS(776), 1, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(778), 1, + ACTIONS(758), 1, sym__special_character, - ACTIONS(780), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(790), 1, + ACTIONS(770), 1, sym_test_operator, - STATE(1091), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(2065), 1, + STATE(1964), 1, sym__expression, - ACTIONS(222), 2, + ACTIONS(149), 2, sym_number, sym_word, - ACTIONS(782), 2, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(788), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2100), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(982), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136870,50 +137163,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124983] = 18, + [125317] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(726), 1, + ACTIONS(786), 1, + anon_sym_LPAREN, + ACTIONS(788), 1, anon_sym_BANG, - ACTIONS(728), 1, + ACTIONS(790), 1, aux_sym_unary_expression_token1, - ACTIONS(732), 1, - anon_sym_DOLLAR, - ACTIONS(5433), 1, - anon_sym_LPAREN, - ACTIONS(5435), 1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5437), 1, - sym__special_character, - ACTIONS(5439), 1, + ACTIONS(794), 1, + anon_sym_DOLLAR, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(802), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(808), 1, sym_test_operator, - STATE(438), 1, + ACTIONS(5475), 1, + sym__special_character, + STATE(1426), 1, aux_sym__literal_repeat1, - STATE(902), 1, + STATE(1941), 1, sym__expression, - ACTIONS(722), 2, + ACTIONS(784), 2, sym_number, sym_word, - ACTIONS(5441), 2, + ACTIONS(800), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5447), 2, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(810), 6, + STATE(1945), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(437), 7, + STATE(1430), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136921,7 +137214,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125052] = 18, + [125386] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5493), 1, + sym__special_character, + ACTIONS(5495), 1, + anon_sym_DQUOTE, + ACTIONS(5497), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5499), 1, + anon_sym_BQUOTE, + ACTIONS(5503), 1, + sym_test_operator, + ACTIONS(5547), 1, + anon_sym_esac, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4116), 1, + sym_last_case_item, + ACTIONS(5501), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2342), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5483), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(5545), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125455] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(97), 1, @@ -136934,19 +137278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(798), 1, - sym__special_character, - ACTIONS(840), 1, + ACTIONS(844), 1, sym_test_operator, - STATE(925), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1956), 1, + STATE(2098), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -136957,14 +137301,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -136972,50 +137316,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125121] = 18, + [125524] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(806), 1, + ACTIONS(726), 1, anon_sym_BANG, - ACTIONS(808), 1, + ACTIONS(728), 1, aux_sym_unary_expression_token1, - ACTIONS(810), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(812), 1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(816), 1, + ACTIONS(5435), 1, + anon_sym_LPAREN, + ACTIONS(5437), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5439), 1, + sym__special_character, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(826), 1, + ACTIONS(5451), 1, sym_test_operator, - ACTIONS(5425), 1, - sym__special_character, - STATE(1190), 1, + STATE(443), 1, aux_sym__literal_repeat1, - STATE(1917), 1, + STATE(855), 1, sym__expression, - ACTIONS(802), 2, + ACTIONS(722), 2, sym_number, sym_word, - ACTIONS(818), 2, + ACTIONS(5443), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(824), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1930), 6, + STATE(814), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1181), 7, + STATE(446), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -137023,58 +137367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125190] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, - anon_sym_DOLLAR, - 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(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - sym_test_operator, - ACTIONS(5539), 1, - anon_sym_esac, - STATE(3574), 1, - aux_sym__literal_repeat1, - STATE(3755), 1, - sym_concatenation, - STATE(4091), 1, - sym_last_case_item, - ACTIONS(5497), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - 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, - [125259] = 18, + [125593] = 18, ACTIONS(59), 1, sym_comment, ACTIONS(164), 1, @@ -137087,6 +137380,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unary_expression_token1, ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(758), 1, + sym__special_character, ACTIONS(760), 1, anon_sym_DQUOTE, ACTIONS(764), 1, @@ -137095,11 +137390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(770), 1, sym_test_operator, - ACTIONS(5473), 1, - sym__special_character, - STATE(1405), 1, + STATE(803), 1, aux_sym__literal_repeat1, - STATE(1949), 1, + STATE(1916), 1, sym__expression, ACTIONS(149), 2, sym_number, @@ -137110,65 +137403,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(956), 6, + STATE(1351), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(482), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125328] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, - anon_sym_DOLLAR, - 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(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - sym_test_operator, - ACTIONS(5543), 1, - anon_sym_esac, - STATE(3574), 1, - aux_sym__literal_repeat1, - STATE(3755), 1, - sym_concatenation, - STATE(4092), 1, - sym_last_case_item, - ACTIONS(5497), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - ACTIONS(5541), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(3539), 7, + STATE(454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -137176,14 +137418,12 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125397] = 5, + [125662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, + ACTIONS(5553), 1, sym__concat, - STATE(2255), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5133), 12, + ACTIONS(5549), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137196,7 +137436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5129), 15, + ACTIONS(5551), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137208,16 +137448,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [125438] = 4, + [125701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, + ACTIONS(5555), 1, sym__concat, - ACTIONS(5547), 12, + STATE(2263), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137230,7 +137473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5549), 16, + ACTIONS(882), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137242,17 +137485,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [125477] = 4, + [125742] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5557), 1, sym__concat, - ACTIONS(5553), 12, + STATE(2258), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5107), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137265,7 +137509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5555), 16, + ACTIONS(5103), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137277,19 +137521,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [125783] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5559), 1, sym__concat, - STATE(2256), 1, + STATE(2263), 1, aux_sym_concatenation_repeat1, - ACTIONS(863), 12, + ACTIONS(867), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137302,7 +137545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(865), 15, + ACTIONS(869), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137318,14 +137561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [125557] = 5, + [125824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, + ACTIONS(5557), 1, sym__concat, - STATE(2256), 1, + STATE(2258), 1, aux_sym_concatenation_repeat1, - ACTIONS(879), 12, + ACTIONS(863), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137338,7 +137581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(881), 15, + ACTIONS(865), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137354,14 +137597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [125598] = 5, + [125865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, + ACTIONS(5565), 1, sym__concat, - STATE(2261), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5564), 12, + ACTIONS(5561), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137374,7 +137615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5566), 15, + ACTIONS(5563), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137386,16 +137627,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [125639] = 4, + [125904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5572), 1, + ACTIONS(5567), 1, sym__concat, - ACTIONS(5568), 12, + STATE(2263), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137408,7 +137652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5570), 16, + ACTIONS(875), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137420,19 +137664,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [125678] = 5, + [125945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, + ACTIONS(5574), 1, sym__concat, - STATE(2255), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 12, + ACTIONS(5570), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137445,7 +137686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(877), 15, + ACTIONS(5572), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137457,16 +137698,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [125719] = 4, + [125984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 1, + ACTIONS(5580), 1, sym__concat, - ACTIONS(5574), 12, + ACTIONS(5576), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137479,7 +137721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5576), 16, + ACTIONS(5578), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137496,14 +137738,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [125758] = 5, + [126023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5580), 1, + ACTIONS(5557), 1, sym__concat, - STATE(2256), 1, + STATE(2260), 1, aux_sym_concatenation_repeat1, - ACTIONS(869), 12, + ACTIONS(5582), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137516,7 +137758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(871), 15, + ACTIONS(5584), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137532,10 +137774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [125799] = 3, + [126064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(952), 12, + ACTIONS(986), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137548,7 +137790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(954), 16, + ACTIONS(988), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -137565,10 +137807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [125835] = 3, + [126100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 12, + ACTIONS(998), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137581,7 +137823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5584), 16, + ACTIONS(1000), 16, + sym__concat, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137593,15 +137836,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [126136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(879), 12, + ACTIONS(964), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137614,7 +137856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(881), 16, + ACTIONS(966), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -137631,10 +137873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [125907] = 3, + [126172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 12, + ACTIONS(960), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137647,7 +137889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(908), 16, + ACTIONS(962), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -137664,10 +137906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [125943] = 3, + [126208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 12, + ACTIONS(960), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137680,7 +137922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(974), 16, + ACTIONS(962), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -137697,10 +137939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [125979] = 3, + [126244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 12, + ACTIONS(978), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137713,7 +137955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(1004), 16, + ACTIONS(980), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -137730,7 +137972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126015] = 3, + [126280] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(968), 12, @@ -137763,10 +138005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126051] = 3, + [126316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(964), 12, + ACTIONS(907), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137779,7 +138021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(966), 16, + ACTIONS(909), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -137796,10 +138038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126087] = 3, + [126352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(984), 12, + ACTIONS(982), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137812,7 +138054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(986), 16, + ACTIONS(984), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -137829,10 +138071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126123] = 3, + [126388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 12, + ACTIONS(913), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137845,7 +138087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(1000), 16, + ACTIONS(915), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -137862,10 +138104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126159] = 3, + [126424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 12, + ACTIONS(5586), 1, + sym__special_character, + STATE(2277), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 11, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137873,13 +138119,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(958), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137895,10 +138139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126195] = 3, + [126464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(994), 12, + ACTIONS(5589), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137911,8 +138155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(996), 16, - sym__concat, + ACTIONS(5591), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137924,14 +138167,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - [126231] = 3, + [126500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(886), 12, + ACTIONS(917), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137944,7 +138188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(888), 16, + ACTIONS(919), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -137961,10 +138205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126267] = 3, + [126536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(956), 12, + ACTIONS(5593), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -137977,8 +138221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(958), 16, - sym__concat, + ACTIONS(5595), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -137990,14 +138233,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - [126303] = 3, + [126572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 12, + ACTIONS(5549), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138010,8 +138254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(935), 16, - sym__concat, + ACTIONS(5551), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -138023,14 +138266,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - [126339] = 3, + [126608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(898), 12, + ACTIONS(888), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138043,7 +138287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(900), 16, + ACTIONS(890), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138060,10 +138304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126375] = 3, + [126644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 12, + ACTIONS(5576), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138076,7 +138320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5588), 16, + ACTIONS(5578), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -138093,10 +138337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126411] = 3, + [126680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(988), 12, + ACTIONS(974), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138109,7 +138353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(990), 16, + ACTIONS(976), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138126,10 +138370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126447] = 3, + [126716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(948), 12, + ACTIONS(896), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138142,7 +138386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(950), 16, + ACTIONS(898), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138159,10 +138403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126483] = 3, + [126752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 12, + ACTIONS(5597), 1, + sym__special_character, + STATE(2277), 1, + aux_sym__literal_repeat1, + ACTIONS(5582), 11, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138170,13 +138418,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(5584), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -138192,10 +138438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126519] = 3, + [126792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 12, + ACTIONS(921), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138208,7 +138454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(912), 16, + ACTIONS(923), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138225,10 +138471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126555] = 3, + [126828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(980), 12, + ACTIONS(945), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138241,7 +138487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(982), 16, + ACTIONS(947), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138258,10 +138504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126591] = 3, + [126864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(902), 12, + ACTIONS(941), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138274,7 +138520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(904), 16, + ACTIONS(943), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138291,14 +138537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126627] = 5, + [126900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - sym__special_character, - STATE(2289), 1, - aux_sym__literal_repeat1, - ACTIONS(5564), 11, + ACTIONS(900), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138306,11 +138548,13 @@ static const uint16_t ts_small_parse_table[] = { 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(5566), 15, + ACTIONS(902), 16, + sym__concat, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -138326,10 +138570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126667] = 3, + [126936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(914), 12, + ACTIONS(994), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138342,7 +138586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(916), 16, + ACTIONS(996), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138359,10 +138603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126703] = 3, + [126972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(929), 12, + ACTIONS(990), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138375,7 +138619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(931), 16, + ACTIONS(992), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138392,10 +138636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126739] = 3, + [127008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 12, + ACTIONS(1002), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138408,7 +138652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(935), 16, + ACTIONS(1004), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138425,14 +138669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126775] = 5, + [127044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - sym__special_character, - STATE(2289), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 11, + ACTIONS(892), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138440,11 +138680,13 @@ static const uint16_t ts_small_parse_table[] = { 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(927), 15, + ACTIONS(894), 16, + sym__concat, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -138460,10 +138702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126815] = 3, + [127080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(890), 12, + ACTIONS(925), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138476,7 +138718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(892), 16, + ACTIONS(927), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138493,10 +138735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126851] = 3, + [127116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 12, + ACTIONS(929), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138509,7 +138751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(978), 16, + ACTIONS(931), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138526,10 +138768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126887] = 3, + [127152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 12, + ACTIONS(933), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138542,7 +138784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(939), 16, + ACTIONS(935), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138559,10 +138801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126923] = 3, + [127188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(918), 12, + ACTIONS(937), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138575,7 +138817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(920), 16, + ACTIONS(939), 16, sym__concat, anon_sym_SEMI, anon_sym_LPAREN, @@ -138592,10 +138834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [126959] = 3, + [127224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 12, + ACTIONS(873), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138608,7 +138850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5549), 16, + ACTIONS(875), 16, + sym__concat, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -138620,15 +138863,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [127260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 12, + ACTIONS(949), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138641,7 +138883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(5570), 16, + ACTIONS(951), 16, + sym__concat, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -138653,47 +138896,140 @@ static const uint16_t ts_small_parse_table[] = { 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, + [127296] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(5599), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5601), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5599), 1, + anon_sym_esac, + ACTIONS(5601), 1, + anon_sym_LPAREN, ACTIONS(5603), 1, sym__special_character, - ACTIONS(5605), 1, - anon_sym_DQUOTE, ACTIONS(5607), 1, + sym_test_operator, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4071), 1, + sym_last_case_item, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5483), 2, + sym_number, + sym_word, + ACTIONS(5605), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2337), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127361] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5617), 1, + anon_sym_DOLLAR, + ACTIONS(5620), 1, + sym__special_character, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5626), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5609), 1, + ACTIONS(5629), 1, anon_sym_BQUOTE, - ACTIONS(5613), 1, + ACTIONS(5635), 1, sym_test_operator, - STATE(2995), 1, + STATE(3030), 1, aux_sym__literal_repeat1, - ACTIONS(5611), 2, + ACTIONS(5632), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2304), 2, + STATE(2302), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(5595), 4, + ACTIONS(5609), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5597), 4, + ACTIONS(5612), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2990), 7, + STATE(2997), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127418] = 18, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5539), 1, + anon_sym_esac, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5607), 1, + sym_test_operator, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4057), 1, + sym_last_case_item, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5483), 2, + sym_number, + sym_word, + ACTIONS(5605), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2335), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -138701,38 +139037,152 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127088] = 11, + [127483] = 18, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5487), 1, + anon_sym_esac, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5607), 1, + sym_test_operator, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4059), 1, + sym_last_case_item, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5483), 2, + sym_number, + sym_word, + ACTIONS(5605), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2353), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1830), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2276), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2327), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1838), 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, + [127587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1838), 1, + ACTIONS(1820), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2327), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1818), 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, - ACTIONS(5615), 1, + anon_sym_AMP, + [127624] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1836), 1, + anon_sym_LT_LT_LT, + ACTIONS(5638), 1, anon_sym_LF, - ACTIONS(5619), 1, + ACTIONS(5642), 1, sym_file_descriptor, - ACTIONS(1832), 2, + ACTIONS(1830), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1834), 2, + ACTIONS(1832), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1836), 2, + ACTIONS(1834), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1849), 2, + ACTIONS(1855), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(1851), 4, + ACTIONS(1015), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(2308), 4, + STATE(2327), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5617), 8, + ACTIONS(5640), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -138741,60 +139191,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [127139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(875), 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(877), 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, - [127174] = 5, + [127675] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1832), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3829), 2, - sym_file_descriptor, + ACTIONS(5644), 1, anon_sym_LF, + ACTIONS(5654), 1, + anon_sym_LT_LT_LT, + ACTIONS(5657), 1, + sym_file_descriptor, + ACTIONS(5651), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, 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_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5648), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -138803,14 +139217,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, + ACTIONS(5646), 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_AMP, - [127213] = 3, + [127720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 12, + ACTIONS(4552), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -138823,7 +139244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(4535), 15, + ACTIONS(4554), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -138839,46 +139260,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [127248] = 18, + [127755] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5621), 1, - anon_sym_esac, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + ACTIONS(5660), 1, + anon_sym_esac, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4108), 1, + STATE(4098), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2326), 2, + STATE(2347), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -138886,46 +139307,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127313] = 18, + [127820] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5539), 1, - anon_sym_esac, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + ACTIONS(5662), 1, + anon_sym_esac, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4091), 1, + STATE(4092), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2332), 2, + STATE(2349), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -138933,46 +139354,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127378] = 18, + [127885] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - ACTIONS(5631), 1, + ACTIONS(5664), 1, anon_sym_esac, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4062), 1, + STATE(4099), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2368), 2, + STATE(2341), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -138980,42 +139401,42 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127443] = 14, + [127950] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5670), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5641), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR, - ACTIONS(5644), 1, + ACTIONS(5674), 1, sym__special_character, - ACTIONS(5647), 1, + ACTIONS(5676), 1, anon_sym_DQUOTE, - ACTIONS(5650), 1, + ACTIONS(5678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5653), 1, + ACTIONS(5680), 1, anon_sym_BQUOTE, - ACTIONS(5659), 1, + ACTIONS(5684), 1, sym_test_operator, - STATE(2995), 1, + STATE(3030), 1, aux_sym__literal_repeat1, - ACTIONS(5656), 2, + ACTIONS(5682), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2304), 2, + STATE(2302), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(5633), 4, + ACTIONS(5666), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5636), 4, + ACTIONS(5668), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2990), 7, + STATE(2997), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139023,79 +139444,113 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127500] = 4, + [128007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 2, - sym_file_descriptor, + ACTIONS(5676), 1, + anon_sym_DQUOTE, + ACTIONS(5688), 1, + aux_sym__simple_variable_name_token1, + STATE(3021), 1, + sym_string, + ACTIONS(5686), 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(840), 15, anon_sym_LF, - 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, anon_sym_SEMI_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, + 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, + [128048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 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, - [127537] = 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(4570), 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, + [128083] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - ACTIONS(5662), 1, + ACTIONS(5690), 1, anon_sym_esac, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4065), 1, + STATE(4070), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2369), 2, + STATE(2370), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139103,10 +139558,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127602] = 3, + [128148] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 12, + ACTIONS(5670), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5672), 1, + anon_sym_DOLLAR, + ACTIONS(5674), 1, + sym__special_character, + ACTIONS(5676), 1, + anon_sym_DQUOTE, + ACTIONS(5678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5680), 1, + anon_sym_BQUOTE, + ACTIONS(5684), 1, + sym_test_operator, + STATE(3030), 1, + aux_sym__literal_repeat1, + ACTIONS(5682), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2302), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5666), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + ACTIONS(5692), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2997), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128205] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 1, + anon_sym_DQUOTE, + ACTIONS(5688), 1, + aux_sym__simple_variable_name_token1, + STATE(3021), 1, + sym_string, + ACTIONS(5686), 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(774), 15, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [128246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(863), 12, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -139119,7 +139652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, sym_word, - ACTIONS(4515), 15, + ACTIONS(865), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_PIPE, @@ -139135,24 +139668,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [127637] = 8, + [128281] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1838), 1, + ACTIONS(1836), 1, anon_sym_LT_LT_LT, - ACTIONS(5619), 1, + ACTIONS(5642), 1, sym_file_descriptor, - ACTIONS(5664), 1, + ACTIONS(5694), 1, anon_sym_LF, - ACTIONS(1836), 2, + ACTIONS(1826), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1830), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1832), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1834), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2316), 4, + ACTIONS(1828), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2327), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5617), 8, + ACTIONS(5640), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -139161,100 +139708,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - 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_AMP, - [127682] = 18, + [128332] = 9, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5706), 1, + sym_file_descriptor, + ACTIONS(5709), 1, + sym_variable_name, + STATE(3927), 1, + sym_subscript, + ACTIONS(5696), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5698), 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(5701), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(5704), 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, + [128379] = 18, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5523), 1, + anon_sym_esac, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - ACTIONS(5668), 1, - anon_sym_esac, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4143), 1, + STATE(4157), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2327), 2, + STATE(2359), 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(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, - ACTIONS(5613), 1, - sym_test_operator, - STATE(2995), 1, - aux_sym__literal_repeat1, - ACTIONS(5611), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2304), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5595), 4, - sym_raw_string, - sym_ansi_c_string, - sym_number, - sym_word, - ACTIONS(5670), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2990), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139262,46 +139793,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127804] = 18, + [128444] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5483), 1, + ACTIONS(5527), 1, anon_sym_esac, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4192), 1, + STATE(4093), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2336), 2, + STATE(2340), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139309,46 +139840,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127869] = 18, + [128509] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5543), 1, + ACTIONS(5535), 1, anon_sym_esac, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4092), 1, + STATE(4161), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2335), 2, + STATE(2345), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139356,46 +139887,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127934] = 18, + [128574] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5515), 1, + ACTIONS(5531), 1, anon_sym_esac, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4212), 1, + STATE(4094), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2347), 2, + STATE(2343), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139403,46 +139934,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127999] = 18, + [128639] = 18, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5519), 1, - anon_sym_esac, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + ACTIONS(5712), 1, + anon_sym_esac, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4210), 1, + STATE(4073), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2362), 2, + STATE(2332), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139450,42 +139981,79 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128064] = 14, + [128704] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5599), 1, + ACTIONS(1836), 1, + anon_sym_LT_LT_LT, + ACTIONS(5642), 1, + sym_file_descriptor, + ACTIONS(5714), 1, + anon_sym_LF, + ACTIONS(1834), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2308), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5640), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(5716), 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_AMP, + [128749] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5670), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5601), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR, - ACTIONS(5603), 1, + ACTIONS(5674), 1, sym__special_character, - ACTIONS(5605), 1, + ACTIONS(5676), 1, anon_sym_DQUOTE, - ACTIONS(5607), 1, + ACTIONS(5678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5609), 1, + ACTIONS(5680), 1, anon_sym_BQUOTE, - ACTIONS(5613), 1, + ACTIONS(5684), 1, sym_test_operator, - STATE(2995), 1, + STATE(3030), 1, aux_sym__literal_repeat1, - ACTIONS(5611), 2, + ACTIONS(5682), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2304), 2, + STATE(2302), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(5595), 4, + ACTIONS(5666), 4, sym_raw_string, sym_ansi_c_string, sym_number, sym_word, - ACTIONS(5672), 4, + ACTIONS(5718), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2990), 7, + STATE(2997), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139493,24 +140061,24 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128121] = 8, + [128806] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5674), 1, - anon_sym_LF, - ACTIONS(5684), 1, + ACTIONS(1938), 1, anon_sym_LT_LT_LT, - ACTIONS(5687), 1, + ACTIONS(5714), 1, + anon_sym_LF, + ACTIONS(5722), 1, sym_file_descriptor, - ACTIONS(5681), 2, + ACTIONS(1936), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2316), 4, + STATE(2369), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5678), 8, + ACTIONS(5720), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -139519,57 +140087,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(5676), 10, + ACTIONS(5716), 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_AMP, - [128166] = 18, - ACTIONS(59), 1, + anon_sym_BQUOTE, + [128850] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(1104), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5726), 1, + anon_sym_LPAREN, + ACTIONS(5728), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5730), 1, + sym__special_character, + ACTIONS(5732), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5736), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5738), 1, anon_sym_BQUOTE, - ACTIONS(5503), 1, - anon_sym_esac, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5742), 1, + sym__comment_word, + ACTIONS(5744), 1, sym_test_operator, - STATE(3574), 1, + ACTIONS(5746), 1, + sym__empty_value, + STATE(1354), 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, + ACTIONS(5724), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5734), 2, sym_raw_string, sym_ansi_c_string, - STATE(2363), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3539), 7, + ACTIONS(5740), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1886), 2, + sym_concatenation, + sym_array, + STATE(665), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139577,93 +140142,77 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128231] = 18, + [128912] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5752), 1, + sym__concat, + STATE(2357), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5748), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5141), 1, + sym_number, + sym_word, + ACTIONS(5750), 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, - ACTIONS(5145), 1, + sym_raw_string, + sym_ansi_c_string, 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(5690), 1, - anon_sym_esac, - 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(2367), 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, - [128296] = 18, + sym_test_operator, + [128950] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - ACTIONS(5692), 1, - anon_sym_esac, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4185), 1, + STATE(4091), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2355), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139671,111 +140220,150 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128361] = 6, + [129012] = 4, ACTIONS(3), 1, sym_comment, - 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(842), 15, + ACTIONS(1820), 2, + sym_file_descriptor, anon_sym_LF, + STATE(2363), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1818), 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, - 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, + [129048] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(5644), 1, + anon_sym_LF, + ACTIONS(5757), 1, + anon_sym_LT_LT_LT, + ACTIONS(5760), 1, sym_file_descriptor, - ACTIONS(5711), 1, - sym_variable_name, - STATE(4009), 1, - sym_subscript, - ACTIONS(5698), 3, - anon_sym_DOLLAR, - sym_number, - sym_word, - ACTIONS(5700), 3, + ACTIONS(5651), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2334), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5754), 8, anon_sym_LT, anon_sym_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, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(5706), 10, + ACTIONS(5646), 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_AMP, + [129092] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - sym__special_character, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, anon_sym_BQUOTE, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5607), 1, + sym_test_operator, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4070), 1, + sym_last_case_item, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [128449] = 11, + ACTIONS(5483), 2, + sym_number, + sym_word, + ACTIONS(5605), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2406), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129154] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1838), 1, + ACTIONS(1893), 1, anon_sym_LT_LT_LT, - ACTIONS(5619), 1, - sym_file_descriptor, - ACTIONS(5714), 1, + ACTIONS(5763), 1, anon_sym_LF, - ACTIONS(1830), 2, + ACTIONS(5767), 1, + sym_file_descriptor, + ACTIONS(1834), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1887), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(1832), 2, + ACTIONS(1889), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1834), 2, + ACTIONS(1891), 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, + ACTIONS(1828), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(2308), 4, + STATE(2363), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5617), 8, + ACTIONS(5765), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -139784,56 +140372,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [128500] = 6, - ACTIONS(3), 1, + [129204] = 17, + ACTIONS(59), 1, sym_comment, - 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, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - sym_number, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, anon_sym_BQUOTE, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5607), 1, + sym_test_operator, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4273), 1, + sym_last_case_item, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5483), 2, + sym_number, sym_word, - sym_test_operator, - [128541] = 5, + ACTIONS(5605), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2406), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129266] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5720), 1, + ACTIONS(5752), 1, sym__concat, - STATE(2339), 1, + STATE(2364), 1, aux_sym_concatenation_repeat1, - ACTIONS(5716), 6, + ACTIONS(5769), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(5718), 18, + ACTIONS(5771), 18, sym_file_descriptor, sym_variable_name, anon_sym_RPAREN, @@ -139852,44 +140450,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [128579] = 17, + [129304] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, - anon_sym_DOLLAR, - ACTIONS(5724), 1, + ACTIONS(5775), 1, anon_sym_LPAREN, - ACTIONS(5726), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5728), 1, + ACTIONS(5779), 1, + anon_sym_DOLLAR, + ACTIONS(5781), 1, sym__special_character, - ACTIONS(5730), 1, + ACTIONS(5783), 1, anon_sym_DQUOTE, - ACTIONS(5734), 1, + ACTIONS(5787), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5736), 1, + ACTIONS(5789), 1, anon_sym_BQUOTE, - ACTIONS(5740), 1, + ACTIONS(5793), 1, sym__comment_word, - ACTIONS(5742), 1, + ACTIONS(5795), 1, sym_test_operator, - ACTIONS(5744), 1, + ACTIONS(5797), 1, sym__empty_value, - STATE(1346), 1, + STATE(1222), 1, aux_sym__literal_repeat1, - ACTIONS(5722), 2, + ACTIONS(5773), 2, sym_number, sym_word, - ACTIONS(5732), 2, + ACTIONS(5785), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5738), 2, + ACTIONS(5791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1826), 2, + STATE(1901), 2, sym_concatenation, sym_array, - STATE(832), 7, + STATE(793), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139897,44 +140495,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128641] = 17, + [129366] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4123), 1, + STATE(4092), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139942,44 +140540,134 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128703] = 17, + [129428] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, STATE(4087), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5483), 2, + sym_number, + sym_word, + ACTIONS(5605), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2406), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129490] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5607), 1, + sym_test_operator, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4093), 1, + sym_last_case_item, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5483), 2, + sym_number, + sym_word, + ACTIONS(5605), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2406), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129552] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5607), 1, + sym_test_operator, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, + sym_concatenation, + STATE(4071), 1, + sym_last_case_item, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -139987,24 +140675,25 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128765] = 4, + [129614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 2, + ACTIONS(1889), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2276), 2, sym_file_descriptor, anon_sym_LF, - STATE(2329), 4, + STATE(2363), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1819), 20, + ACTIONS(1838), 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, @@ -140019,149 +140708,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128801] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1911), 1, - anon_sym_LT_LT_LT, - ACTIONS(5664), 1, - anon_sym_LF, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(5666), 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_AMP, - [128845] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5674), 1, - anon_sym_LF, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(5676), 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, - anon_sym_BQUOTE, - [128889] = 5, - ACTIONS(59), 1, - sym_comment, - ACTIONS(5762), 1, - sym__concat, - STATE(2342), 1, - aux_sym_concatenation_repeat1, - 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, - 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, - [128927] = 17, + [129652] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4062), 1, + STATE(4099), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140169,80 +140753,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128989] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - anon_sym_LT_LT_LT, - ACTIONS(5664), 1, - anon_sym_LF, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - 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, - anon_sym_BQUOTE, - [129033] = 17, + [129714] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5770), 1, + ACTIONS(5801), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5774), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR, - ACTIONS(5776), 1, + ACTIONS(5807), 1, sym__special_character, - ACTIONS(5778), 1, + ACTIONS(5809), 1, anon_sym_DQUOTE, - ACTIONS(5782), 1, + ACTIONS(5813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5784), 1, + ACTIONS(5815), 1, anon_sym_BQUOTE, - ACTIONS(5788), 1, + ACTIONS(5819), 1, sym__comment_word, - ACTIONS(5790), 1, + ACTIONS(5821), 1, sym_test_operator, - ACTIONS(5792), 1, + ACTIONS(5823), 1, sym__empty_value, - STATE(1838), 1, + STATE(2084), 1, aux_sym__literal_repeat1, - ACTIONS(5768), 2, + ACTIONS(5799), 2, sym_number, sym_word, - ACTIONS(5780), 2, + ACTIONS(5811), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5786), 2, + ACTIONS(5817), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1981), 2, + STATE(2168), 2, sym_concatenation, sym_array, - STATE(1300), 7, + STATE(1827), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140250,44 +140798,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129095] = 17, + [129776] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4065), 1, + STATE(4063), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140295,44 +140843,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129157] = 17, - ACTIONS(59), 1, + [129838] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5827), 1, + anon_sym_LPAREN, + ACTIONS(5829), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5831), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5833), 1, + sym__special_character, + ACTIONS(5835), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5839), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5841), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5845), 1, + sym__comment_word, + ACTIONS(5847), 1, sym_test_operator, - STATE(3574), 1, + ACTIONS(5849), 1, + sym__empty_value, + STATE(1952), 1, aux_sym__literal_repeat1, - 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, + ACTIONS(5825), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5837), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3539), 7, + ACTIONS(5843), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2163), 2, + sym_concatenation, + sym_array, + STATE(1641), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140340,44 +140888,89 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129219] = 17, + [129900] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4091), 1, + STATE(4162), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129962] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1219), 1, + anon_sym_DOLLAR, + ACTIONS(5853), 1, + anon_sym_LPAREN, + ACTIONS(5855), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5857), 1, + sym__special_character, + ACTIONS(5859), 1, + anon_sym_DQUOTE, + ACTIONS(5863), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5865), 1, + anon_sym_BQUOTE, + ACTIONS(5869), 1, + sym__comment_word, + ACTIONS(5871), 1, + sym_test_operator, + ACTIONS(5873), 1, + sym__empty_value, + STATE(1862), 1, + aux_sym__literal_repeat1, + ACTIONS(5851), 2, + sym_number, + sym_word, + ACTIONS(5861), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2054), 2, + sym_concatenation, + sym_array, + STATE(1172), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140385,44 +140978,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129281] = 17, + [130024] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4092), 1, + STATE(4157), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140430,77 +141023,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129343] = 5, - ACTIONS(59), 1, - sym_comment, - ACTIONS(5794), 1, - sym__concat, - STATE(2342), 1, - aux_sym_concatenation_repeat1, - ACTIONS(869), 6, - anon_sym_LT, - anon_sym_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_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, + [130086] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, - anon_sym_DQUOTE, - ACTIONS(5798), 1, + ACTIONS(5877), 1, anon_sym_LPAREN, - ACTIONS(5800), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5881), 1, anon_sym_DOLLAR, - ACTIONS(5804), 1, + ACTIONS(5883), 1, sym__special_character, - ACTIONS(5808), 1, + ACTIONS(5885), 1, + anon_sym_DQUOTE, + ACTIONS(5889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5810), 1, + ACTIONS(5891), 1, anon_sym_BQUOTE, - ACTIONS(5814), 1, + ACTIONS(5895), 1, sym__comment_word, - ACTIONS(5816), 1, + ACTIONS(5897), 1, sym_test_operator, - ACTIONS(5818), 1, + ACTIONS(5899), 1, sym__empty_value, - STATE(2506), 1, + STATE(3528), 1, aux_sym__literal_repeat1, - ACTIONS(5796), 2, + ACTIONS(5875), 2, sym_number, sym_word, - ACTIONS(5806), 2, + ACTIONS(5887), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5812), 2, + ACTIONS(5893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2690), 2, + STATE(3620), 2, sym_concatenation, sym_array, - STATE(2378), 7, + STATE(3464), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140508,44 +141068,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129443] = 17, + [130148] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4212), 1, + STATE(4073), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140553,21 +141113,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129505] = 5, + [130210] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5820), 1, + ACTIONS(5752), 1, sym__concat, - STATE(2342), 1, + STATE(2357), 1, aux_sym_concatenation_repeat1, - ACTIONS(879), 6, + ACTIONS(5901), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(881), 18, + ACTIONS(5903), 18, sym_file_descriptor, sym_variable_name, anon_sym_RPAREN, @@ -140586,44 +141146,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [129543] = 17, - ACTIONS(3), 1, + [130248] = 17, + ACTIONS(59), 1, sym_comment, - ACTIONS(1019), 1, - anon_sym_DOLLAR, - ACTIONS(5825), 1, - anon_sym_LPAREN, - ACTIONS(5827), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5829), 1, - sym__special_character, - ACTIONS(5831), 1, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5835), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5837), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5841), 1, - sym__comment_word, - ACTIONS(5843), 1, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5607), 1, sym_test_operator, - ACTIONS(5845), 1, - sym__empty_value, - STATE(837), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - ACTIONS(5823), 2, + STATE(3771), 1, + sym_concatenation, + STATE(4094), 1, + sym_last_case_item, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5833), 2, + ACTIONS(5605), 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, + STATE(2406), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140631,44 +141191,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129605] = 17, + [130310] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DOLLAR, - ACTIONS(5849), 1, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5907), 1, anon_sym_LPAREN, - ACTIONS(5851), 1, + ACTIONS(5909), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5853), 1, + ACTIONS(5911), 1, + anon_sym_DOLLAR, + ACTIONS(5913), 1, sym__special_character, - ACTIONS(5855), 1, - anon_sym_DQUOTE, - ACTIONS(5859), 1, + ACTIONS(5917), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5861), 1, + ACTIONS(5919), 1, anon_sym_BQUOTE, - ACTIONS(5865), 1, + ACTIONS(5923), 1, sym__comment_word, - ACTIONS(5867), 1, + ACTIONS(5925), 1, sym_test_operator, - ACTIONS(5869), 1, + ACTIONS(5927), 1, sym__empty_value, - STATE(1731), 1, + STATE(2480), 1, aux_sym__literal_repeat1, - ACTIONS(5847), 2, + ACTIONS(5905), 2, sym_number, sym_word, - ACTIONS(5857), 2, + ACTIONS(5915), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5863), 2, + ACTIONS(5921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2069), 2, + STATE(2655), 2, sym_concatenation, sym_array, - STATE(1024), 7, + STATE(2438), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140676,80 +141236,110 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129667] = 8, - ACTIONS(3), 1, + [130372] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(5674), 1, - anon_sym_LF, - ACTIONS(5874), 1, - anon_sym_LT_LT_LT, - ACTIONS(5877), 1, - sym_file_descriptor, - ACTIONS(5681), 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(5871), 8, + ACTIONS(5929), 1, + sym__concat, + STATE(2358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(869), 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, - 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_AMP, - [129711] = 17, - ACTIONS(3), 1, - sym_comment, - 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, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5896), 1, anon_sym_BQUOTE, - ACTIONS(5900), 1, - sym__comment_word, - ACTIONS(5902), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(5904), 1, - sym__empty_value, - STATE(1959), 1, - aux_sym__literal_repeat1, - ACTIONS(5880), 2, + [130410] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5931), 1, + sym__concat, + STATE(2358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(5892), 2, + ACTIONS(875), 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, - ACTIONS(5898), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2143), 2, + sym_test_operator, + [130448] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5607), 1, + sym_test_operator, + STATE(3564), 1, + aux_sym__literal_repeat1, + STATE(3771), 1, sym_concatenation, - sym_array, - STATE(1866), 7, + STATE(4098), 1, + sym_last_case_item, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5483), 2, + sym_number, + sym_word, + ACTIONS(5605), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2406), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140757,44 +141347,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129773] = 17, + [130510] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4143), 1, + STATE(4161), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140802,44 +141392,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129835] = 17, + [130572] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4192), 1, + STATE(4059), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -140847,64 +141437,24 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129897] = 11, + [130634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1911), 1, - anon_sym_LT_LT_LT, - ACTIONS(5748), 1, + ACTIONS(5934), 1, + sym__concat, + STATE(2411), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, sym_file_descriptor, - ACTIONS(5906), 1, anon_sym_LF, - ACTIONS(1836), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1895), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1909), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1919), 2, + ACTIONS(863), 22, 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [129947] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1895), 2, + anon_sym_esac, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3829), 2, - sym_file_descriptor, - anon_sym_LF, - 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_SEMI_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, @@ -140919,37 +141469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129985] = 11, + sym__special_character, + [130672] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1911), 1, + ACTIONS(1893), 1, anon_sym_LT_LT_LT, - ACTIONS(5748), 1, - sym_file_descriptor, - ACTIONS(5908), 1, + ACTIONS(5714), 1, anon_sym_LF, - ACTIONS(1836), 2, + ACTIONS(5767), 1, + sym_file_descriptor, + ACTIONS(1834), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1895), 2, - anon_sym_PIPE, - 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, + STATE(2334), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5746), 8, + ACTIONS(5765), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -140958,98 +141496,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [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(1821), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2333), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1819), 20, + ACTIONS(5716), 9, 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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_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, - [130133] = 5, + [130716] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5720), 1, + ACTIONS(5936), 1, sym__concat, - STATE(2331), 1, + STATE(2358), 1, aux_sym_concatenation_repeat1, - ACTIONS(5936), 6, + ACTIONS(880), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(5938), 18, + ACTIONS(882), 18, sym_file_descriptor, sym_variable_name, anon_sym_RPAREN, @@ -141068,89 +141539,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [130171] = 17, - ACTIONS(59), 1, + [130754] = 17, + ACTIONS(3), 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, + ACTIONS(5940), 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(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(5135), 1, + ACTIONS(5942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5944), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5946), 1, + sym__special_character, + ACTIONS(5948), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5954), 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(4210), 1, - sym_last_case_item, - ACTIONS(5149), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5958), 1, + sym__comment_word, + ACTIONS(5960), 1, + sym_test_operator, + ACTIONS(5962), 1, + sym__empty_value, + STATE(1907), 1, + aux_sym__literal_repeat1, + ACTIONS(5938), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5950), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3539), 7, + ACTIONS(5956), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1931), 2, + sym_concatenation, + sym_array, + STATE(1308), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -141158,44 +141584,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [130295] = 17, + [130816] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5942), 1, + ACTIONS(1070), 1, + anon_sym_DOLLAR, + ACTIONS(5966), 1, anon_sym_LPAREN, - ACTIONS(5944), 1, + ACTIONS(5968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5946), 1, - anon_sym_DOLLAR, - ACTIONS(5948), 1, + ACTIONS(5970), 1, sym__special_character, - ACTIONS(5950), 1, + ACTIONS(5972), 1, anon_sym_DQUOTE, - ACTIONS(5954), 1, + ACTIONS(5976), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5956), 1, + ACTIONS(5978), 1, anon_sym_BQUOTE, - ACTIONS(5960), 1, + ACTIONS(5982), 1, sym__comment_word, - ACTIONS(5962), 1, + ACTIONS(5984), 1, sym_test_operator, - ACTIONS(5964), 1, + ACTIONS(5986), 1, sym__empty_value, - STATE(2097), 1, + STATE(731), 1, aux_sym__literal_repeat1, - ACTIONS(5940), 2, + ACTIONS(5964), 2, sym_number, sym_word, - ACTIONS(5952), 2, + ACTIONS(5974), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5958), 2, + ACTIONS(5980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2150), 2, + STATE(1263), 2, sym_concatenation, sym_array, - STATE(1675), 7, + STATE(465), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -141203,21 +141629,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [130357] = 5, + [130878] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5720), 1, + ACTIONS(5752), 1, sym__concat, - STATE(2339), 1, + STATE(2364), 1, aux_sym_concatenation_repeat1, - ACTIONS(5966), 6, + ACTIONS(5988), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(5968), 18, + ACTIONS(5990), 18, sym_file_descriptor, sym_variable_name, anon_sym_RPAREN, @@ -141236,44 +141662,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [130395] = 17, + [130916] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1820), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1818), 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, + [130952] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5644), 1, + anon_sym_LF, + ACTIONS(5998), 1, + anon_sym_LT_LT_LT, + ACTIONS(6001), 1, + sym_file_descriptor, + ACTIONS(5995), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2369), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5992), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(5646), 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, + anon_sym_BQUOTE, + [130996] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4209), 1, + STATE(4080), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -141281,44 +141775,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [130457] = 17, + [131058] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5972), 1, + ACTIONS(1241), 1, + anon_sym_DOLLAR, + ACTIONS(6006), 1, anon_sym_LPAREN, - ACTIONS(5974), 1, + ACTIONS(6008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5976), 1, - anon_sym_DOLLAR, - ACTIONS(5978), 1, + ACTIONS(6010), 1, sym__special_character, - ACTIONS(5980), 1, + ACTIONS(6012), 1, anon_sym_DQUOTE, - ACTIONS(5984), 1, + ACTIONS(6016), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5986), 1, + ACTIONS(6018), 1, anon_sym_BQUOTE, - ACTIONS(5990), 1, + ACTIONS(6022), 1, sym__comment_word, - ACTIONS(5992), 1, + ACTIONS(6024), 1, sym_test_operator, - ACTIONS(5994), 1, + ACTIONS(6026), 1, sym__empty_value, - STATE(3487), 1, + STATE(1653), 1, aux_sym__literal_repeat1, - ACTIONS(5970), 2, + ACTIONS(6004), 2, sym_number, sym_word, - ACTIONS(5982), 2, + ACTIONS(6014), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5988), 2, + ACTIONS(6020), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3581), 2, + STATE(1971), 2, sym_concatenation, sym_array, - STATE(3488), 7, + STATE(1080), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -141326,134 +141820,77 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [130519] = 17, - ACTIONS(3), 1, + [131120] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1284), 1, + ACTIONS(5752), 1, + sym__concat, + STATE(2364), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5998), 1, - anon_sym_LPAREN, - ACTIONS(6000), 1, + sym_number, + sym_word, + ACTIONS(865), 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, - 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, + sym_test_operator, + [131158] = 17, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5623), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(5629), 1, + ACTIONS(5607), 1, sym_test_operator, - STATE(3574), 1, + STATE(3564), 1, aux_sym__literal_repeat1, - STATE(3755), 1, + STATE(3771), 1, sym_concatenation, - STATE(4185), 1, + STATE(4057), 1, sym_last_case_item, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5479), 2, + ACTIONS(5483), 2, sym_number, sym_word, - ACTIONS(5627), 2, + ACTIONS(5605), 2, sym_raw_string, sym_ansi_c_string, - STATE(2419), 2, + STATE(2406), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3539), 7, + STATE(3537), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -141461,54 +141898,60 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [130705] = 5, - ACTIONS(59), 1, + [131220] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__concat, - STATE(2331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 6, + ACTIONS(1893), 1, + anon_sym_LT_LT_LT, + ACTIONS(5767), 1, + sym_file_descriptor, + ACTIONS(6028), 1, + anon_sym_LF, + ACTIONS(1834), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1889), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1891), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1897), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1015), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2363), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5765), 8, anon_sym_LT, anon_sym_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, 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, - [130743] = 5, + [131270] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(5720), 1, - sym__concat, - STATE(2331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6020), 6, + ACTIONS(6030), 1, + sym__special_character, + STATE(2436), 1, + aux_sym__literal_repeat1, + ACTIONS(5748), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(6022), 18, + ACTIONS(5750), 17, sym_file_descriptor, sym_variable_name, anon_sym_RPAREN, @@ -141518,7 +141961,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141527,17 +141969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [130781] = 5, + [131307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2385), 1, + STATE(2405), 1, aux_sym_concatenation_repeat1, - ACTIONS(877), 2, + ACTIONS(6032), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(875), 22, + ACTIONS(6034), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -141559,153 +142001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - 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, + [131344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6026), 1, + ACTIONS(6036), 1, sym__special_character, - STATE(2377), 1, + STATE(2384), 1, aux_sym__literal_repeat1, - ACTIONS(5718), 2, + ACTIONS(6032), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5716), 21, + ACTIONS(6034), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -141727,17 +142033,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131042] = 3, + [131381] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(952), 6, + ACTIONS(978), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(954), 19, + ACTIONS(980), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -141757,36 +142063,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [131075] = 11, + [131414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1080), 1, - anon_sym_RPAREN, - ACTIONS(2315), 1, - anon_sym_LT_LT_LT, - ACTIONS(5766), 1, + ACTIONS(5934), 1, + sym__concat, + STATE(2411), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6038), 2, sym_file_descriptor, - ACTIONS(6028), 1, anon_sym_LF, - ACTIONS(2309), 2, + ACTIONS(6040), 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, - 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, @@ -141795,36 +142091,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [131124] = 11, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [131451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_LT_LT_LT, - ACTIONS(4041), 1, - ts_builtin_sym_end, - ACTIONS(6030), 1, - anon_sym_LF, - ACTIONS(6034), 1, - sym_file_descriptor, - ACTIONS(3831), 2, + ACTIONS(1932), 2, anon_sym_PIPE, 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, + ACTIONS(2276), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(2329), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6032), 8, + ACTIONS(1838), 17, + anon_sym_SEMI, + 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, @@ -141833,17 +142123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [131173] = 3, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [131488] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(994), 6, + ACTIONS(974), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(996), 19, + ACTIONS(976), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -141863,54 +142157,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [131206] = 5, - ACTIONS(3), 1, + [131521] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6024), 1, - sym__concat, - STATE(2528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(877), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(875), 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(6030), 1, + sym__special_character, + STATE(2436), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5903), 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, - sym__special_character, - [131243] = 5, + 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, + [131558] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(6036), 1, - sym__special_character, - STATE(2376), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 6, + ACTIONS(913), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(927), 17, + ACTIONS(915), 19, sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_RPAREN, anon_sym_GT_GT, @@ -141919,6 +142210,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141927,17 +142219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [131280] = 5, + [131591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6039), 1, + ACTIONS(6042), 1, sym__special_character, - STATE(2377), 1, + STATE(2384), 1, aux_sym__literal_repeat1, - ACTIONS(927), 2, + ACTIONS(958), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(922), 21, + ACTIONS(953), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -141959,23 +142251,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131317] = 5, + [131628] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(5720), 1, - sym__concat, - STATE(2331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1869), 6, + ACTIONS(960), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1871), 17, + 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, @@ -141991,23 +142281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [131354] = 5, + [131661] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(5720), 1, - sym__concat, - STATE(2339), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1882), 6, + ACTIONS(982), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1884), 17, + ACTIONS(984), 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, @@ -142023,17 +142311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [131391] = 3, + [131694] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(902), 6, + ACTIONS(968), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(904), 19, + ACTIONS(970), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142053,17 +142341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [131424] = 5, + [131727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6042), 1, - sym__concat, - STATE(2381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 2, + ACTIONS(6036), 1, + sym__special_character, + STATE(2384), 1, + aux_sym__literal_repeat1, + ACTIONS(6045), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(879), 21, + ACTIONS(6047), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -142085,17 +142373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131461] = 3, + [131764] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(1002), 6, + ACTIONS(964), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1004), 19, + ACTIONS(966), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142115,17 +142403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [131494] = 3, + [131797] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(998), 6, + ACTIONS(941), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1000), 19, + ACTIONS(943), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142145,17 +142433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [131527] = 5, + [131830] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6045), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2381), 1, + STATE(2411), 1, aux_sym_concatenation_repeat1, - ACTIONS(871), 2, + ACTIONS(6049), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(869), 21, + ACTIONS(6051), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -142177,17 +142465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131564] = 5, + [131867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6047), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2381), 1, + STATE(2405), 1, aux_sym_concatenation_repeat1, - ACTIONS(865), 2, + ACTIONS(5903), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(863), 21, + ACTIONS(5901), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -142209,26 +142497,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131601] = 5, - ACTIONS(3), 1, + [131904] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6026), 1, + ACTIONS(892), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(894), 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, - STATE(2377), 1, - aux_sym__literal_repeat1, - ACTIONS(5968), 2, + 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, + [131937] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1015), 1, + anon_sym_RPAREN, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(5722), 1, sym_file_descriptor, + ACTIONS(6053), 1, anon_sym_LF, - ACTIONS(5966), 21, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(1932), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(1934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1897), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5720), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -142237,27 +142565,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, - [131638] = 5, + [131986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(6055), 1, sym__concat, - STATE(2384), 1, + STATE(2458), 1, aux_sym_concatenation_repeat1, - ACTIONS(5968), 2, + ACTIONS(865), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5966), 21, + 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, @@ -142273,17 +142595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131675] = 3, + sym__special_character, + anon_sym_BQUOTE, + [132023] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(988), 6, + ACTIONS(990), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(990), 19, + ACTIONS(992), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142303,33 +142627,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [131708] = 8, + [132056] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(1828), 1, + anon_sym_BQUOTE, + ACTIONS(1938), 1, anon_sym_LT_LT_LT, - ACTIONS(6058), 1, + ACTIONS(5722), 1, sym_file_descriptor, - ACTIONS(5674), 2, - ts_builtin_sym_end, + ACTIONS(6057), 1, anon_sym_LF, - ACTIONS(6052), 2, + ACTIONS(1936), 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, + ACTIONS(4162), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(4249), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(4371), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP, - ACTIONS(6049), 8, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5720), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -142338,17 +142665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [131751] = 5, + [132105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2385), 1, + STATE(2405), 1, aux_sym_concatenation_repeat1, - ACTIONS(6022), 2, + ACTIONS(6045), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6020), 21, + ACTIONS(6047), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -142370,66 +142697,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131788] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(984), 6, - anon_sym_LT, - anon_sym_GT, - 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, - [131821] = 11, + [132142] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(1017), 1, + ts_builtin_sym_end, + ACTIONS(2728), 1, anon_sym_LT_LT_LT, - ACTIONS(5766), 1, - sym_file_descriptor, - ACTIONS(6061), 1, + ACTIONS(6059), 1, anon_sym_LF, - ACTIONS(2313), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4175), 2, + ACTIONS(6063), 1, + sym_file_descriptor, + ACTIONS(2278), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4423), 2, + ACTIONS(2724), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(4740), 3, + ACTIONS(2726), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2722), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2333), 4, + STATE(2403), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5764), 8, + ACTIONS(6061), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -142438,114 +142735,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [131870] = 3, - ACTIONS(59), 1, + [132191] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(980), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_number, - sym_word, - ACTIONS(982), 19, + ACTIONS(6071), 1, + anon_sym_LT_LT_LT, + ACTIONS(6074), 1, 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, - [131903] = 5, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6063), 1, - sym__special_character, - STATE(2376), 1, - aux_sym__literal_repeat1, - ACTIONS(5966), 6, + ACTIONS(5644), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6068), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2400), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5646), 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(6065), 8, anon_sym_LT, anon_sym_GT, - 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, 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, - [131940] = 3, - ACTIONS(59), 1, + [132234] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(976), 6, + ACTIONS(6077), 1, + sym__concat, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(873), 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_AMP_GT, - anon_sym_DOLLAR, - sym_number, - sym_word, - ACTIONS(978), 19, - sym_file_descriptor, - sym__concat, - 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_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, - [131973] = 5, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [132271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3831), 2, + ACTIONS(2278), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3829), 3, + ACTIONS(2276), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - STATE(2426), 4, + STATE(2403), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1840), 16, + ACTIONS(1838), 16, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, @@ -142562,25 +142834,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132010] = 4, + [132308] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 3, + ACTIONS(2728), 1, + anon_sym_LT_LT_LT, + ACTIONS(6063), 1, sym_file_descriptor, + ACTIONS(2726), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5714), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(2426), 4, + STATE(2400), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1819), 18, + ACTIONS(5716), 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(6061), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -142589,21 +142869,17 @@ 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, - [132045] = 3, + [132351] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(972), 6, + ACTIONS(873), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(974), 19, + ACTIONS(875), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142623,47 +142899,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132078] = 3, - ACTIONS(59), 1, + [132384] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(968), 6, + ACTIONS(6080), 1, + sym__concat, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(867), 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_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, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [132421] = 16, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6085), 1, + anon_sym_LPAREN, + ACTIONS(6088), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6091), 1, + anon_sym_DOLLAR, + ACTIONS(6094), 1, sym__special_character, + ACTIONS(6097), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6103), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6106), 1, anon_sym_BQUOTE, + ACTIONS(6112), 1, + sym_test_operator, + STATE(3582), 1, + aux_sym__literal_repeat1, + STATE(3875), 1, + sym_concatenation, + ACTIONS(6082), 2, + sym_number, + sym_word, + ACTIONS(6100), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [132111] = 3, + STATE(2406), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3580), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132480] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(933), 6, + ACTIONS(960), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(935), 19, + ACTIONS(962), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142683,17 +143004,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132144] = 3, + [132513] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(964), 6, + ACTIONS(994), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(966), 19, + ACTIONS(996), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142713,60 +143034,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132177] = 3, - ACTIONS(59), 1, + [132546] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(960), 6, + ACTIONS(2728), 1, + anon_sym_LT_LT_LT, + ACTIONS(3731), 1, + ts_builtin_sym_end, + ACTIONS(6063), 1, + sym_file_descriptor, + ACTIONS(6115), 1, + anon_sym_LF, + ACTIONS(2278), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2724), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2726), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3735), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2403), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6061), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_number, - sym_word, - ACTIONS(962), 19, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [132595] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1820), 3, sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2403), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1818), 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, + [132630] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6117), 1, sym__concat, - sym_variable_name, - anon_sym_RPAREN, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(880), 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_DOLLAR_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [132667] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1015), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [132210] = 5, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(5722), 1, + sym_file_descriptor, + ACTIONS(6119), 1, + anon_sym_LF, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4162), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4249), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(4247), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5720), 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, + [132716] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(6063), 1, - sym__special_character, - STATE(2376), 1, - aux_sym__literal_repeat1, - ACTIONS(5716), 6, + ACTIONS(5752), 1, + sym__concat, + STATE(2357), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1857), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(5718), 17, + ACTIONS(1859), 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, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -142775,47 +143205,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132247] = 3, - ACTIONS(59), 1, + [132753] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(910), 6, + ACTIONS(5934), 1, + sym__concat, + STATE(2411), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5771), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5769), 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_DOLLAR, - sym_number, - sym_word, - ACTIONS(912), 19, - sym_file_descriptor, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [132790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5934), 1, sym__concat, - sym_variable_name, - anon_sym_RPAREN, + STATE(2405), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5750), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5748), 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_DOLLAR_LPAREN, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [132827] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6036), 1, 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, - [132280] = 3, + STATE(2384), 1, + aux_sym__literal_repeat1, + ACTIONS(5750), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5748), 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, + [132864] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(914), 6, + ACTIONS(945), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(916), 19, + ACTIONS(947), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142835,51 +143331,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132313] = 5, - ACTIONS(3), 1, + [132897] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6024), 1, - sym__concat, - STATE(2385), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6065), 2, - sym_file_descriptor, - anon_sym_LF, - 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, + ACTIONS(998), 6, anon_sym_LT, anon_sym_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, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [132350] = 5, + 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, + [132930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2384), 1, + STATE(2535), 1, aux_sym_concatenation_repeat1, - ACTIONS(6069), 2, + ACTIONS(865), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6071), 21, + ACTIONS(863), 21, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -142899,17 +143392,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132387] = 3, + sym__special_character, + [132967] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(937), 6, + ACTIONS(896), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(939), 19, + ACTIONS(898), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142929,17 +143423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132420] = 3, + [133000] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(886), 6, + ACTIONS(888), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(888), 19, + ACTIONS(890), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -142959,55 +143453,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132453] = 11, - ACTIONS(3), 1, - sym_comment, - 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(3831), 2, - anon_sym_PIPE, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [132502] = 3, + [133033] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(929), 6, + ACTIONS(907), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(931), 19, + ACTIONS(909), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -143027,17 +143483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132535] = 3, + [133066] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(906), 6, + ACTIONS(900), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(908), 19, + ACTIONS(902), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -143057,17 +143513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132568] = 5, + [133099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2384), 1, + STATE(2411), 1, aux_sym_concatenation_repeat1, - ACTIONS(6075), 2, + ACTIONS(5990), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6077), 21, + ACTIONS(5988), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -143089,17 +143545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132605] = 3, + [133136] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(918), 6, + ACTIONS(949), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(920), 19, + ACTIONS(951), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -143119,17 +143575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132638] = 3, + [133169] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(956), 6, + ACTIONS(937), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(958), 19, + ACTIONS(939), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -143149,57 +143605,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132671] = 5, - ACTIONS(3), 1, + [133202] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6026), 1, - sym__special_character, - STATE(2377), 1, - aux_sym__literal_repeat1, - ACTIONS(6069), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6071), 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_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_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, + [133235] = 3, + ACTIONS(59), 1, + sym_comment, + 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, + 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, - [132708] = 5, + 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, + [133268] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 2, + ACTIONS(1828), 1, + anon_sym_RPAREN, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(5722), 1, sym_file_descriptor, + ACTIONS(6121), 1, anon_sym_LF, - ACTIONS(4175), 2, + ACTIONS(1932), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2333), 4, + ACTIONS(1934), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1887), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 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, + ACTIONS(5720), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -143208,22 +143703,17 @@ 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, - [132745] = 3, + [133317] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(890), 6, + ACTIONS(929), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(892), 19, + ACTIONS(931), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -143243,60 +143733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132778] = 16, - ACTIONS(59), 1, - sym_comment, - 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, - 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, - STATE(3875), 1, - sym_concatenation, - ACTIONS(6079), 2, - sym_number, - sym_word, - 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, + [133350] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(879), 6, + ACTIONS(925), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(881), 19, + ACTIONS(927), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -143316,17 +143763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132870] = 5, + [133383] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, - sym__concat, - STATE(2385), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6112), 2, + ACTIONS(6036), 1, + sym__special_character, + STATE(2384), 1, + aux_sym__literal_repeat1, + ACTIONS(5903), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6114), 21, + ACTIONS(5901), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -143348,17 +143795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132907] = 3, + [133420] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(898), 6, + ACTIONS(921), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(900), 19, + ACTIONS(923), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -143378,161 +143825,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [132940] = 11, - ACTIONS(3), 1, + [133453] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1080), 1, - anon_sym_BQUOTE, - 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, + ACTIONS(917), 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, - [132989] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6118), 1, - sym__concat, - STATE(2470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(877), 2, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(919), 19, sym_file_descriptor, - anon_sym_LF, - ACTIONS(875), 21, - anon_sym_SEMI, - anon_sym_PIPE, + sym__concat, + 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_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [133026] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [133486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, - sym__concat, - STATE(2384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5718), 2, + ACTIONS(2276), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5716), 21, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(4162), 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, - [133063] = 8, - ACTIONS(3), 1, - sym_comment, - 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, + STATE(2329), 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(6026), 1, - sym__special_character, - STATE(2377), 1, - aux_sym__literal_repeat1, - ACTIONS(6075), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6077), 21, + ACTIONS(1838), 17, 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, @@ -143547,19 +143886,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133143] = 3, + anon_sym_BQUOTE, + [133523] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(948), 6, + ACTIONS(6123), 1, + sym__special_character, + STATE(2436), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(950), 19, + ACTIONS(958), 17, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_RPAREN, anon_sym_GT_GT, @@ -143568,7 +143911,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -143577,17 +143919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [133176] = 3, + [133560] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(894), 6, + ACTIONS(986), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(896), 19, + ACTIONS(988), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -143607,21 +143949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [133209] = 3, + [133593] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(933), 6, + ACTIONS(5752), 1, + sym__concat, + STATE(2364), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1899), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(935), 19, + ACTIONS(1901), 17, sym_file_descriptor, - sym__concat, sym_variable_name, - anon_sym_RPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143637,87 +143981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [133242] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3829), 2, - sym_file_descriptor, - anon_sym_LF, - 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_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, + [133630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_RPAREN, - ACTIONS(2315), 1, - anon_sym_LT_LT_LT, - ACTIONS(5766), 1, + ACTIONS(927), 3, 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [133328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6024), 1, sym__concat, - STATE(2385), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5938), 2, - sym_file_descriptor, anon_sym_LF, - ACTIONS(5936), 21, + ACTIONS(925), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -143739,19 +144010,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133365] = 4, + [133662] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6126), 1, + anon_sym_RPAREN, + ACTIONS(6128), 1, + sym__special_character, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2518), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133718] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6122), 1, + ACTIONS(6130), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -143769,19 +144081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [133399] = 4, + [133752] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6132), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -143799,70 +144111,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [133433] = 15, - ACTIONS(59), 1, + [133786] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, - anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 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(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, + ACTIONS(6136), 1, + anon_sym_POUND, + ACTIONS(6138), 1, + aux_sym__simple_variable_name_token1, + STATE(3037), 1, 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_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(840), 2, 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, + ACTIONS(6134), 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_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, @@ -143870,40 +144145,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [133523] = 15, + [133828] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5151), 1, + ACTIONS(5125), 1, sym_test_operator, ACTIONS(6128), 1, sym__special_character, - ACTIONS(6132), 1, + ACTIONS(6140), 1, anon_sym_RPAREN, - STATE(3071), 1, + STATE(3080), 1, aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(5101), 2, sym_number, sym_word, - ACTIONS(5143), 2, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2478), 2, + STATE(2440), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3047), 7, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -143911,19 +144186,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [133579] = 4, + [133884] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(6136), 1, + anon_sym_POUND, + ACTIONS(6138), 1, + aux_sym__simple_variable_name_token1, + STATE(3037), 1, + sym_string, + ACTIONS(774), 2, + sym_number, + sym_word, + ACTIONS(6134), 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(782), 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, + [133926] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6142), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -143941,19 +144250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [133613] = 4, + [133960] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6136), 1, + ACTIONS(6144), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -143971,57 +144280,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [133647] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - anon_sym_LT_LT_LT, - ACTIONS(5766), 1, - sym_file_descriptor, - ACTIONS(6138), 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(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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [133693] = 5, + [133994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, - sym__special_character, - STATE(2442), 1, - aux_sym__literal_repeat1, - ACTIONS(927), 2, + ACTIONS(5934), 1, + sym__concat, + STATE(2533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5903), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(922), 20, + ACTIONS(5901), 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, @@ -144037,63 +144311,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - 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, + [134030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, - sym__special_character, - STATE(2442), 1, - aux_sym__literal_repeat1, - ACTIONS(6075), 2, + ACTIONS(5934), 1, + sym__concat, + STATE(2535), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5990), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6077), 20, + ACTIONS(5988), 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, @@ -144109,104 +144342,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - 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, + [134066] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2463), 1, + STATE(2533), 1, aux_sym_concatenation_repeat1, - ACTIONS(6075), 2, + ACTIONS(5750), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6077), 20, + ACTIONS(5748), 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, @@ -144222,61 +144373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [133969] = 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(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, + [134102] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6153), 1, + ACTIONS(6146), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -144294,17 +144403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [134059] = 5, + [134136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2528), 1, + STATE(2535), 1, aux_sym_concatenation_repeat1, - ACTIONS(6112), 2, + ACTIONS(5771), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6114), 20, + ACTIONS(5769), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -144325,47 +144434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134095] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6155), 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, - sym_test_operator, - [134129] = 5, + [134172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2529), 1, + STATE(2533), 1, aux_sym_concatenation_repeat1, - ACTIONS(6075), 2, + ACTIONS(6032), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6077), 20, + ACTIONS(6034), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -144386,21 +144465,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134165] = 5, + [134208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2470), 1, + STATE(2535), 1, aux_sym_concatenation_repeat1, - ACTIONS(6112), 2, + ACTIONS(6049), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6114), 20, + ACTIONS(6051), 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, @@ -144416,17 +144496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134201] = 3, + [134244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 3, - sym_file_descriptor, + ACTIONS(5934), 1, sym__concat, + STATE(2533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6045), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(952), 21, + ACTIONS(6047), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -144446,22 +144527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134233] = 5, + [134280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(6148), 1, sym__concat, - STATE(2528), 1, + STATE(2597), 1, aux_sym_concatenation_repeat1, - ACTIONS(6065), 2, + ACTIONS(865), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6067), 20, + ACTIONS(863), 19, 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, @@ -144477,264 +144557,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134269] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6157), 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, - sym_test_operator, - [134303] = 4, - ACTIONS(59), 1, - sym_comment, - 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_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, - [134337] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6161), 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, - 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, - 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(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(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_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, - [134573] = 5, + [134316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6171), 1, + ACTIONS(5934), 1, sym__concat, - STATE(2495), 1, + STATE(2535), 1, aux_sym_concatenation_repeat1, - ACTIONS(871), 2, + ACTIONS(6038), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(869), 20, + ACTIONS(6040), 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, @@ -144750,48 +144589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134609] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6173), 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, - sym_test_operator, - [134643] = 5, + [134352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, + ACTIONS(6150), 1, sym__concat, - STATE(2470), 1, + STATE(2463), 1, aux_sym_concatenation_repeat1, - ACTIONS(6065), 2, + ACTIONS(882), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6067), 20, + ACTIONS(880), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -144812,22 +144620,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [134679] = 5, + [134388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(6152), 1, sym__concat, - STATE(2529), 1, + STATE(2463), 1, aux_sym_concatenation_repeat1, - ACTIONS(6069), 2, + ACTIONS(869), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6071), 20, + ACTIONS(867), 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, @@ -144843,19 +144650,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134715] = 4, + anon_sym_BQUOTE, + [134424] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6175), 1, + ACTIONS(6154), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -144873,66 +144681,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [134458] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, - sym__concat, - STATE(2528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6022), 2, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(5722), 1, sym_file_descriptor, + ACTIONS(6156), 1, anon_sym_LF, - ACTIONS(6020), 20, - anon_sym_SEMI, + ACTIONS(1932), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(1934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4448), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5720), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -144941,21 +144717,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_AMP, - [134841] = 5, + [134504] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6158), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, + [134538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6179), 1, + ACTIONS(6160), 1, sym__concat, - STATE(2495), 1, + STATE(2463), 1, aux_sym_concatenation_repeat1, - ACTIONS(865), 2, + ACTIONS(875), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(863), 20, + ACTIONS(873), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -144976,22 +144778,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [134877] = 5, + [134574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, - sym__concat, - STATE(2529), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5968), 2, + ACTIONS(6163), 1, + sym__special_character, + STATE(2464), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5966), 20, + ACTIONS(953), 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, @@ -145007,19 +144808,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134913] = 4, + anon_sym_BQUOTE, + [134610] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6166), 1, + anon_sym_RPAREN, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2518), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134666] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6181), 1, + ACTIONS(6168), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -145037,40 +144880,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [134947] = 15, + [134700] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5151), 1, + ACTIONS(5125), 1, sym_test_operator, ACTIONS(6128), 1, sym__special_character, - ACTIONS(6183), 1, + ACTIONS(6170), 1, anon_sym_RPAREN, - STATE(3071), 1, + STATE(3080), 1, aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(5101), 2, sym_number, sym_word, - ACTIONS(5143), 2, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2487), 2, + STATE(2518), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3047), 7, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -145078,19 +144921,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [135003] = 4, + [134756] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6172), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, + [134790] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6185), 1, + ACTIONS(6174), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -145108,19 +144981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [135037] = 4, + [134824] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6187), 1, + ACTIONS(6176), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -145138,25 +145011,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [135071] = 5, + [134858] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, - sym__concat, - STATE(2528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5938), 2, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(5722), 1, sym_file_descriptor, + ACTIONS(6178), 1, anon_sym_LF, - ACTIONS(5936), 20, - anon_sym_SEMI, + ACTIONS(1932), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(1934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4478), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5720), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -145165,21 +145047,17 @@ 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, - [135107] = 3, + [134904] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(5936), 6, + ACTIONS(863), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(5938), 18, + ACTIONS(865), 18, sym_file_descriptor, sym_variable_name, anon_sym_RPAREN, @@ -145198,40 +145076,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [135139] = 15, + [134936] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5151), 1, + ACTIONS(5125), 1, sym_test_operator, ACTIONS(6128), 1, sym__special_character, - ACTIONS(6189), 1, + ACTIONS(6180), 1, anon_sym_RPAREN, - STATE(3071), 1, + STATE(3080), 1, aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(5101), 2, sym_number, sym_word, - ACTIONS(5143), 2, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2496), 2, + STATE(2518), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3047), 7, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -145239,69 +145117,40 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [135195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(948), 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, - [135227] = 15, + [134992] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5151), 1, + ACTIONS(5125), 1, sym_test_operator, ACTIONS(6128), 1, sym__special_character, - ACTIONS(6191), 1, + ACTIONS(6182), 1, anon_sym_RPAREN, - STATE(3071), 1, + STATE(3080), 1, aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(5101), 2, sym_number, sym_word, - ACTIONS(5143), 2, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2496), 2, + STATE(2465), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3047), 7, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -145309,50 +145158,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [135283] = 5, - ACTIONS(3), 1, + [135048] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6024), 1, - sym__concat, - STATE(2529), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5718), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(5716), 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(6184), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, - [135319] = 4, + 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, + [135082] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6193), 1, + ACTIONS(6186), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -145370,93 +145218,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [135353] = 5, - ACTIONS(3), 1, + [135116] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6145), 1, - sym__special_character, - STATE(2442), 1, - aux_sym__literal_repeat1, - ACTIONS(6069), 2, + ACTIONS(5769), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5771), 18, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6071), 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, + [135148] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6188), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [135389] = 15, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [135182] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(6190), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5141), 1, + sym_number, + sym_word, + ACTIONS(1822), 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, - ACTIONS(5145), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(5151), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(6128), 1, + [135216] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6030), 1, sym__special_character, - ACTIONS(6195), 1, - anon_sym_RPAREN, - STATE(3071), 1, + STATE(2436), 1, aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(1857), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(5143), 2, + ACTIONS(1859), 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_LPAREN, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, 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, + sym_test_operator, + [135252] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6197), 1, + ACTIONS(6192), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, + [135286] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5988), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(5990), 18, sym_file_descriptor, sym_variable_name, + anon_sym_RPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145472,40 +145397,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [135479] = 15, + [135318] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5151), 1, + ACTIONS(5125), 1, sym_test_operator, ACTIONS(6128), 1, sym__special_character, - ACTIONS(6199), 1, + ACTIONS(6194), 1, anon_sym_RPAREN, - STATE(3071), 1, + STATE(3080), 1, aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(5101), 2, sym_number, sym_word, - ACTIONS(5143), 2, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2468), 2, + STATE(2503), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3047), 7, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -145513,40 +145438,40 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [135535] = 15, + [135374] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5151), 1, + ACTIONS(5125), 1, sym_test_operator, ACTIONS(6128), 1, sym__special_character, - ACTIONS(6201), 1, + ACTIONS(6196), 1, anon_sym_RPAREN, - STATE(3071), 1, + STATE(3080), 1, aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(5101), 2, sym_number, sym_word, - ACTIONS(5143), 2, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2496), 2, + STATE(2518), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3047), 7, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -145554,101 +145479,40 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [135591] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6118), 1, - sym__concat, - STATE(2463), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5718), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(5716), 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, - [135627] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6203), 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, - sym_test_operator, - [135661] = 15, + [135430] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5151), 1, + ACTIONS(5125), 1, sym_test_operator, ACTIONS(6128), 1, sym__special_character, - ACTIONS(6205), 1, + ACTIONS(6198), 1, anon_sym_RPAREN, - STATE(3071), 1, + STATE(3080), 1, aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(5101), 2, sym_number, sym_word, - ACTIONS(5143), 2, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2459), 2, + STATE(2473), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3047), 7, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -145656,20 +145520,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [135717] = 3, + [135486] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6020), 6, + ACTIONS(6200), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(6022), 18, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, - anon_sym_RPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145685,19 +145550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [135749] = 4, + [135520] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6207), 1, + ACTIONS(6202), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -145715,19 +145580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [135783] = 4, + [135554] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6209), 1, + ACTIONS(6204), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -145745,47 +145610,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [135817] = 4, + [135588] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(6211), 1, - anon_sym_RPAREN, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6206), 1, + anon_sym_RPAREN, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, 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, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [135851] = 5, + STATE(2518), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [135644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6213), 1, - sym__concat, - STATE(2495), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 2, + ACTIONS(6208), 1, + sym__special_character, + STATE(2464), 1, + aux_sym__literal_repeat1, + ACTIONS(5903), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(879), 20, + ACTIONS(5901), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -145806,40 +145682,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [135887] = 15, + [135680] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_RPAREN, - ACTIONS(6221), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6224), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(6227), 1, - sym__special_character, - ACTIONS(6230), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(6236), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6239), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(6245), 1, + ACTIONS(5125), 1, sym_test_operator, - STATE(3071), 1, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6210), 1, + anon_sym_RPAREN, + STATE(3080), 1, aux_sym__literal_repeat1, - ACTIONS(6216), 2, + ACTIONS(5101), 2, sym_number, sym_word, - ACTIONS(6233), 2, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6242), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2496), 2, + STATE(2484), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3047), 7, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -145847,64 +145723,24 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [135977] = 10, + [135736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, - anon_sym_LT_LT_LT, - ACTIONS(5766), 1, + ACTIONS(6055), 1, + sym__concat, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5903), 2, sym_file_descriptor, - ACTIONS(6250), 1, anon_sym_LF, - ACTIONS(2309), 2, + ACTIONS(5901), 20, + anon_sym_SEMI, 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(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(5764), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -145913,50 +145749,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [136023] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6252), 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_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_test_operator, - [136057] = 3, + [135772] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 3, - sym_file_descriptor, + ACTIONS(6055), 1, sym__concat, + STATE(2458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5990), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(937), 21, + ACTIONS(5988), 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, @@ -145972,56 +145784,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136089] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - anon_sym_LT_LT_LT, - ACTIONS(5766), 1, - sym_file_descriptor, - ACTIONS(6254), 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(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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [136135] = 3, + anon_sym_BQUOTE, + [135808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 3, + ACTIONS(6208), 1, + sym__special_character, + STATE(2464), 1, + aux_sym__literal_repeat1, + ACTIONS(5750), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(929), 21, + ACTIONS(5748), 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, @@ -146037,54 +145815,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136167] = 8, - ACTIONS(3), 1, - sym_comment, - 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, - 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, + [135844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 3, - sym_file_descriptor, + ACTIONS(6055), 1, sym__concat, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5750), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(879), 21, + ACTIONS(5748), 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, @@ -146100,20 +145846,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136241] = 3, + anon_sym_BQUOTE, + [135880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, - sym_file_descriptor, + ACTIONS(6055), 1, sym__concat, + STATE(2458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5771), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(894), 21, + ACTIONS(5769), 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, @@ -146129,21 +145877,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136273] = 5, + anon_sym_BQUOTE, + [135916] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6063), 1, - sym__special_character, - STATE(2376), 1, - aux_sym__literal_repeat1, - ACTIONS(1882), 6, + ACTIONS(6212), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1884), 16, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -146152,6 +145899,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -146160,33 +145908,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [136309] = 8, - ACTIONS(3), 1, + [135950] = 4, + ACTIONS(59), 1, sym_comment, - 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, + ACTIONS(6214), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, 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(844), 10, - anon_sym_RPAREN, + ACTIONS(1822), 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, @@ -146194,34 +145938,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [136351] = 10, + [135984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(907), 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, + [136016] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, + ACTIONS(1938), 1, anon_sym_LT_LT_LT, - ACTIONS(5766), 1, + ACTIONS(5722), 1, sym_file_descriptor, - ACTIONS(6262), 1, + ACTIONS(6216), 1, anon_sym_LF, - ACTIONS(2309), 2, + ACTIONS(1932), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2311), 2, + ACTIONS(1934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2313), 2, + ACTIONS(1936), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4095), 3, + ACTIONS(4966), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2333), 4, + STATE(2329), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5764), 8, + ACTIONS(5720), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -146230,14 +146003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [136397] = 3, + [136062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 3, + ACTIONS(898), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(898), 21, + ACTIONS(896), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -146259,14 +146032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136429] = 3, + [136094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 3, + ACTIONS(875), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(890), 21, + ACTIONS(873), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -146288,44 +146061,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136461] = 4, + [136126] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(6264), 1, - anon_sym_RPAREN, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6218), 1, + anon_sym_RPAREN, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, 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, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [136495] = 3, + STATE(2518), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [136182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 3, + ACTIONS(894), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(906), 21, + ACTIONS(892), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -146347,43 +146131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136527] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6266), 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, - sym_test_operator, - [136561] = 3, + [136214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 2, + ACTIONS(943), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(875), 22, + ACTIONS(941), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -146405,52 +146160,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [136593] = 4, + [136246] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(6268), 1, - anon_sym_RPAREN, - ACTIONS(1817), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6220), 1, + anon_sym_RPAREN, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, 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, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [136627] = 5, + STATE(2518), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [136302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, - sym__concat, - STATE(2463), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6069), 2, + ACTIONS(915), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6071), 20, + ACTIONS(913), 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, @@ -146466,44 +146230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [136663] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(875), 6, - anon_sym_LT, - anon_sym_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_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, - [136695] = 3, + [136334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 3, + ACTIONS(865), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(956), 21, + ACTIONS(863), 22, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -146525,21 +146258,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136727] = 5, + sym__special_character, + [136366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, - sym__special_character, - STATE(2442), 1, - aux_sym__literal_repeat1, - ACTIONS(5718), 2, + ACTIONS(980), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(5716), 20, + ACTIONS(978), 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, @@ -146555,75 +146288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [136763] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6270), 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, - sym_test_operator, - [136797] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6272), 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, - sym_test_operator, - [136831] = 3, + [136398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 3, + ACTIONS(1004), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(910), 21, + ACTIONS(1002), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -146645,14 +146317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136863] = 3, + [136430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 3, + ACTIONS(902), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(914), 21, + ACTIONS(900), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -146674,14 +146346,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136895] = 3, + [136462] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6222), 1, + anon_sym_RPAREN, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2489), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [136518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(947), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(933), 21, + ACTIONS(945), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -146703,21 +146416,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136927] = 5, + [136550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, - sym__concat, - STATE(2470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6022), 2, + ACTIONS(962), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6020), 20, + ACTIONS(960), 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, @@ -146733,101 +146445,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [136963] = 15, + [136582] = 4, 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(6274), 1, + ACTIONS(6224), 1, anon_sym_RPAREN, - STATE(3071), 1, - aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, 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, - [137019] = 15, - ACTIONS(59), 1, - sym_comment, - ACTIONS(5135), 1, + ACTIONS(1822), 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, - 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, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - 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, + sym_test_operator, + [136616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 1, - sym__concat, - STATE(2381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(865), 2, + ACTIONS(966), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(863), 20, + ACTIONS(964), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -146847,18 +146504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137111] = 5, + [136648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6280), 1, - sym__concat, - STATE(2381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 2, + ACTIONS(970), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(869), 20, + ACTIONS(968), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -146878,51 +146533,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137147] = 4, + [136680] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(6282), 1, + ACTIONS(6229), 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, + ACTIONS(6231), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6234), 1, + anon_sym_DOLLAR, + ACTIONS(6237), 1, sym__special_character, + ACTIONS(6240), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6246), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6249), 1, anon_sym_BQUOTE, + ACTIONS(6255), 1, + sym_test_operator, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(6226), 2, + sym_number, + sym_word, + ACTIONS(6243), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6252), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [137181] = 5, + STATE(2518), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [136736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, - sym__concat, - STATE(2463), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5968), 2, + ACTIONS(962), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(5966), 20, + ACTIONS(960), 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, @@ -146938,22 +146603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [137217] = 5, + [136768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, - sym__special_character, - STATE(2442), 1, - aux_sym__literal_repeat1, - ACTIONS(5968), 2, + ACTIONS(984), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(5966), 20, + ACTIONS(982), 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, @@ -146969,15 +146632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [137253] = 3, + [136800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 3, + ACTIONS(988), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(902), 21, + ACTIONS(986), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -146999,44 +146661,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137285] = 4, - ACTIONS(59), 1, + [136832] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6284), 1, - anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(992), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(990), 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_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, 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, - [137319] = 3, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [136864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 3, + ACTIONS(996), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1002), 21, + ACTIONS(994), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -147058,85 +146719,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137351] = 4, - ACTIONS(59), 1, + [136896] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1000), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + 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, 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, 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, - [137385] = 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(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, - 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, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [136928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 3, + ACTIONS(890), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(998), 21, + ACTIONS(888), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -147158,14 +146777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137473] = 3, + [136960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(951), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(994), 21, + ACTIONS(949), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -147187,14 +146806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137505] = 3, + [136992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 3, + ACTIONS(939), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(988), 21, + ACTIONS(937), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -147216,14 +146835,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137537] = 3, + [137024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(935), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(984), 21, + ACTIONS(933), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -147245,14 +146864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137569] = 3, + [137056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 3, + ACTIONS(931), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(980), 21, + ACTIONS(929), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -147274,21 +146893,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137601] = 5, + [137088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, - sym__concat, - STATE(2470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5938), 2, + ACTIONS(923), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(5936), 20, + ACTIONS(921), 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, @@ -147304,41 +146922,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [137637] = 15, + [137120] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(5151), 1, + ACTIONS(5125), 1, sym_test_operator, ACTIONS(6128), 1, sym__special_character, - ACTIONS(6290), 1, + ACTIONS(6258), 1, anon_sym_RPAREN, - STATE(3071), 1, + STATE(3080), 1, aux_sym__literal_repeat1, - ACTIONS(5127), 2, + ACTIONS(5101), 2, sym_number, sym_word, - ACTIONS(5143), 2, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5149), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2496), 2, + STATE(2518), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3047), 7, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -147346,14 +146963,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [137693] = 3, + [137176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 3, + ACTIONS(919), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(976), 21, + ACTIONS(917), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -147375,16 +146992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137725] = 3, + [137208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 3, - sym_file_descriptor, + ACTIONS(6260), 1, sym__concat, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(972), 21, + ACTIONS(867), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -147404,14 +147023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137757] = 3, + [137244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 3, + ACTIONS(976), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(968), 21, + ACTIONS(974), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -147433,16 +147052,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137789] = 3, + [137276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 3, - sym_file_descriptor, + ACTIONS(6262), 1, sym__concat, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(964), 21, + ACTIONS(880), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -147462,20 +147083,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137821] = 3, + [137312] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6264), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, + [137346] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6266), 1, + anon_sym_RPAREN, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [137402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 3, + ACTIONS(6208), 1, + sym__special_character, + STATE(2464), 1, + aux_sym__literal_repeat1, + ACTIONS(6032), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(960), 21, + ACTIONS(6034), 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, @@ -147491,20 +147184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137853] = 3, + anon_sym_BQUOTE, + [137438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 3, - sym_file_descriptor, + ACTIONS(6055), 1, sym__concat, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6032), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(886), 21, + ACTIONS(6034), 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, @@ -147520,20 +147215,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137885] = 5, + anon_sym_BQUOTE, + [137474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, + ACTIONS(6055), 1, sym__concat, - STATE(2678), 1, + STATE(2458), 1, aux_sym_concatenation_repeat1, - ACTIONS(877), 3, + ACTIONS(6049), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(875), 19, + ACTIONS(6051), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -147550,20 +147246,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_BQUOTE, + [137510] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6268), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, - [137921] = 4, + 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, + [137544] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LT_LT_LT, + ACTIONS(5722), 1, + sym_file_descriptor, + ACTIONS(6270), 1, + anon_sym_LF, + ACTIONS(1932), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1934), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1936), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4126), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5720), 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, + [137590] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6294), 1, + ACTIONS(6272), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -147581,19 +147343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [137955] = 4, + [137624] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(6296), 1, + ACTIONS(6274), 1, anon_sym_RPAREN, - ACTIONS(1817), 6, + ACTIONS(1816), 6, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1823), 17, + ACTIONS(1822), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -147611,20 +147373,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [137989] = 3, + [137658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 3, + ACTIONS(6208), 1, + sym__special_character, + STATE(2464), 1, + aux_sym__literal_repeat1, + ACTIONS(6045), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(918), 21, + ACTIONS(6047), 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, @@ -147640,20 +147403,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138021] = 3, + anon_sym_BQUOTE, + [137694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, - sym_file_descriptor, + ACTIONS(6055), 1, sym__concat, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6045), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(933), 21, + ACTIONS(6047), 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, @@ -147669,19 +147434,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138053] = 3, + anon_sym_BQUOTE, + [137730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6298), 2, + ACTIONS(6055), 1, + sym__concat, + STATE(2458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6038), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6300), 21, + ACTIONS(6040), 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, @@ -147697,39 +147465,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138084] = 15, + anon_sym_BQUOTE, + [137766] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3589), 1, - anon_sym_RBRACE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6306), 1, + ACTIONS(6276), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(6308), 1, + sym_number, + sym_word, + ACTIONS(1822), 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, - ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(6314), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6320), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [137800] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, sym_test_operator, - STATE(3666), 1, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6278), 1, + anon_sym_RPAREN, + STATE(3080), 1, aux_sym__literal_repeat1, - STATE(4225), 1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2518), 2, sym_concatenation, - ACTIONS(6302), 2, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [137856] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6280), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(6312), 2, + ACTIONS(1822), 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, - ACTIONS(6318), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [137890] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6282), 1, + anon_sym_RPAREN, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3663), 7, + STATE(2467), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -147737,39 +147608,182 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138139] = 15, + [137946] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3405), 1, - anon_sym_RBRACE, - ACTIONS(6304), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6306), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(6308), 1, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6128), 1, sym__special_character, - ACTIONS(6310), 1, + ACTIONS(6284), 1, + anon_sym_RPAREN, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2549), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138002] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(6314), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(6326), 1, + ACTIONS(5125), 1, sym_test_operator, - STATE(3640), 1, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6286), 1, + anon_sym_RPAREN, + STATE(3080), 1, aux_sym__literal_repeat1, - STATE(4282), 1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2531), 2, sym_concatenation, - ACTIONS(6318), 2, + aux_sym_for_statement_repeat1, + STATE(3060), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138058] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6288), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, - ACTIONS(6322), 2, + sym_test_operator, + [138092] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6290), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(6324), 2, + ACTIONS(1822), 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, + [138126] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5125), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6292), 1, + anon_sym_RPAREN, + STATE(3080), 1, + aux_sym__literal_repeat1, + ACTIONS(5101), 2, + sym_number, + sym_word, + ACTIONS(5117), 2, sym_raw_string, sym_ansi_c_string, - STATE(3633), 7, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2518), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3060), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -147777,19 +147791,138 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138194] = 3, + [138182] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6294), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, + [138216] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6296), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, + [138250] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, + [138284] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6300), 1, + anon_sym_RPAREN, + ACTIONS(1816), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1822), 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, + [138318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(1000), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6330), 21, + ACTIONS(998), 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, @@ -147805,19 +147938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138225] = 3, + anon_sym_BQUOTE, + [138349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6332), 2, + ACTIONS(947), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6334), 21, + ACTIONS(945), 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, @@ -147833,10 +147966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138256] = 15, + anon_sym_BQUOTE, + [138380] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(2270), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -147850,22 +147984,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6340), 1, + ACTIONS(6320), 1, sym_test_operator, - STATE(3699), 1, + STATE(3692), 1, aux_sym__literal_repeat1, - STATE(4278), 1, + STATE(4283), 1, sym_concatenation, + ACTIONS(6302), 2, + sym_number, + sym_word, + ACTIONS(6312), 2, + sym_raw_string, + sym_ansi_c_string, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6336), 2, + STATE(3689), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138435] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2162), 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(3742), 1, + aux_sym__literal_repeat1, + STATE(4279), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6322), 2, sym_number, sym_word, - ACTIONS(6338), 2, + ACTIONS(6324), 2, sym_raw_string, sym_ansi_c_string, - STATE(3670), 7, + STATE(3739), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -147873,10 +148047,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138311] = 15, + [138490] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(2298), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -147890,22 +148064,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6346), 1, + ACTIONS(6332), 1, sym_test_operator, - STATE(3710), 1, + STATE(3678), 1, aux_sym__literal_repeat1, - STATE(4277), 1, + STATE(4286), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6342), 2, + ACTIONS(6328), 2, sym_number, sym_word, - ACTIONS(6344), 2, + ACTIONS(6330), 2, sym_raw_string, sym_ansi_c_string, - STATE(3724), 7, + STATE(3676), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -147913,10 +148087,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138366] = 15, + [138545] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3473), 1, + ACTIONS(2214), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -147930,22 +148104,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6352), 1, + ACTIONS(6338), 1, sym_test_operator, - STATE(3854), 1, + STATE(3792), 1, aux_sym__literal_repeat1, - STATE(4270), 1, + STATE(4101), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6348), 2, + ACTIONS(6334), 2, sym_number, sym_word, - ACTIONS(6350), 2, + ACTIONS(6336), 2, sym_raw_string, sym_ansi_c_string, - STATE(3870), 7, + STATE(3811), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -147953,10 +148127,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138421] = 15, + [138600] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(1988), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -147970,22 +148144,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6358), 1, + ACTIONS(6344), 1, sym_test_operator, - STATE(3786), 1, + STATE(3835), 1, aux_sym__literal_repeat1, - STATE(4274), 1, + STATE(4103), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6354), 2, + ACTIONS(6340), 2, sym_number, sym_word, - ACTIONS(6356), 2, + ACTIONS(6342), 2, sym_raw_string, sym_ansi_c_string, - STATE(3840), 7, + STATE(3837), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -147993,10 +148167,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138476] = 15, + [138655] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(1980), 1, + ACTIONS(2372), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148010,22 +148184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6364), 1, + ACTIONS(6350), 1, sym_test_operator, - STATE(3692), 1, + STATE(3647), 1, aux_sym__literal_repeat1, - STATE(4063), 1, + STATE(4253), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6360), 2, + ACTIONS(6346), 2, sym_number, sym_word, - ACTIONS(6362), 2, + ACTIONS(6348), 2, sym_raw_string, sym_ansi_c_string, - STATE(3685), 7, + STATE(3642), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148033,10 +148207,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138531] = 15, + [138710] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(5672), 1, + anon_sym_DOLLAR, + ACTIONS(6352), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6354), 1, + sym__special_character, + ACTIONS(6356), 1, + anon_sym_DQUOTE, + ACTIONS(6360), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6362), 1, + anon_sym_BQUOTE, + ACTIONS(6366), 1, + sym_test_operator, + STATE(3030), 1, + aux_sym__literal_repeat1, + ACTIONS(5666), 2, + sym_number, + sym_word, + ACTIONS(6358), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6364), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2313), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2997), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138763] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2104), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148050,22 +148263,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6370), 1, + ACTIONS(6372), 1, sym_test_operator, - STATE(3788), 1, + STATE(3900), 1, aux_sym__literal_repeat1, - STATE(4264), 1, + STATE(4107), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6366), 2, + ACTIONS(6368), 2, sym_number, sym_word, - ACTIONS(6368), 2, + ACTIONS(6370), 2, sym_raw_string, sym_ansi_c_string, - STATE(3795), 7, + STATE(3873), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148073,10 +148286,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138586] = 15, + [138818] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(1996), 1, + ACTIONS(3354), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148090,22 +148303,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6376), 1, + ACTIONS(6378), 1, sym_test_operator, - STATE(3665), 1, + STATE(3886), 1, aux_sym__literal_repeat1, - STATE(4059), 1, + STATE(4089), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6372), 2, + ACTIONS(6374), 2, sym_number, sym_word, - ACTIONS(6374), 2, + ACTIONS(6376), 2, sym_raw_string, sym_ansi_c_string, - STATE(3653), 7, + STATE(3733), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148113,10 +148326,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138641] = 15, + [138873] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2521), 1, + ACTIONS(2170), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148130,22 +148343,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6382), 1, + ACTIONS(6384), 1, sym_test_operator, - STATE(3876), 1, + STATE(3808), 1, aux_sym__literal_repeat1, - STATE(4110), 1, + STATE(4081), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6378), 2, + ACTIONS(6380), 2, sym_number, sym_word, - ACTIONS(6380), 2, + ACTIONS(6382), 2, sym_raw_string, sym_ansi_c_string, - STATE(3880), 7, + STATE(3794), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148153,122 +148366,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138696] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6384), 2, - sym_file_descriptor, - anon_sym_LF, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138727] = 3, - ACTIONS(3), 1, + [138928] = 15, + ACTIONS(59), 1, sym_comment, + ACTIONS(3551), 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(6390), 1, + sym_test_operator, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(4145), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6386), 2, + sym_number, + sym_word, ACTIONS(6388), 2, - sym_file_descriptor, - anon_sym_LF, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138758] = 3, - ACTIONS(3), 1, + sym_raw_string, + sym_ansi_c_string, + STATE(3705), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138983] = 15, + ACTIONS(59), 1, sym_comment, + ACTIONS(2112), 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(6396), 1, + sym_test_operator, + STATE(3768), 1, + aux_sym__literal_repeat1, + STATE(4275), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, ACTIONS(6392), 2, - sym_file_descriptor, - anon_sym_LF, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6396), 2, - sym_file_descriptor, - anon_sym_LF, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138820] = 15, + sym_number, + sym_word, + ACTIONS(6394), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3760), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139038] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(2390), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148282,22 +148463,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6404), 1, + ACTIONS(6402), 1, sym_test_operator, - STATE(3748), 1, + STATE(3749), 1, aux_sym__literal_repeat1, - STATE(4151), 1, + STATE(4278), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6400), 2, + ACTIONS(6398), 2, sym_number, sym_word, - ACTIONS(6402), 2, + ACTIONS(6400), 2, sym_raw_string, sym_ansi_c_string, - STATE(3746), 7, + STATE(3754), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148305,94 +148486,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [138875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6406), 2, - sym_file_descriptor, - anon_sym_LF, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6410), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6412), 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, - [138937] = 3, - ACTIONS(3), 1, + [139093] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(6414), 2, - sym_file_descriptor, - anon_sym_LF, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138968] = 15, + ACTIONS(2714), 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(6408), 1, + sym_test_operator, + STATE(3729), 1, + aux_sym__literal_repeat1, + STATE(4212), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6404), 2, + sym_number, + sym_word, + ACTIONS(6406), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3831), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139148] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3885), 1, + ACTIONS(2136), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148406,22 +148543,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6422), 1, + ACTIONS(6414), 1, sym_test_operator, - STATE(3884), 1, + STATE(3694), 1, aux_sym__literal_repeat1, - STATE(4109), 1, + STATE(4090), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6418), 2, + ACTIONS(6410), 2, sym_number, sym_word, - ACTIONS(6420), 2, + ACTIONS(6412), 2, sym_raw_string, sym_ansi_c_string, - STATE(3881), 7, + STATE(3723), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148429,10 +148566,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [139023] = 15, + [139203] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(1972), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148446,22 +148583,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6428), 1, + ACTIONS(6420), 1, sym_test_operator, - STATE(3869), 1, + STATE(3838), 1, aux_sym__literal_repeat1, - STATE(4114), 1, + STATE(4263), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6424), 2, + ACTIONS(6416), 2, sym_number, sym_word, - ACTIONS(6426), 2, + ACTIONS(6418), 2, sym_raw_string, sym_ansi_c_string, - STATE(3874), 7, + STATE(3832), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148469,49 +148606,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [139078] = 5, + [139258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, - sym__concat, - STATE(2678), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5938), 3, + ACTIONS(6422), 1, + sym__special_character, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(958), 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, - [139113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6432), 21, + ACTIONS(953), 18, 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, @@ -148527,10 +148636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139144] = 15, + [139293] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(2464), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148544,22 +148653,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6438), 1, + ACTIONS(6429), 1, sym_test_operator, - STATE(3800), 1, + STATE(3813), 1, aux_sym__literal_repeat1, - STATE(4265), 1, + STATE(4264), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6434), 2, + ACTIONS(6425), 2, sym_number, sym_word, - ACTIONS(6436), 2, + ACTIONS(6427), 2, sym_raw_string, sym_ansi_c_string, - STATE(3779), 7, + STATE(3843), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148567,38 +148676,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [139348] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(2306), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148612,22 +148693,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6444), 1, + ACTIONS(6435), 1, sym_test_operator, - STATE(3853), 1, + STATE(3872), 1, aux_sym__literal_repeat1, - STATE(4124), 1, + STATE(4114), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6440), 2, + ACTIONS(6431), 2, sym_number, sym_word, - ACTIONS(6442), 2, + ACTIONS(6433), 2, sym_raw_string, sym_ansi_c_string, - STATE(3861), 7, + STATE(3657), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148635,10 +148716,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [139285] = 15, + [139403] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(2356), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148652,22 +148733,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6450), 1, + ACTIONS(6441), 1, sym_test_operator, - STATE(3848), 1, + STATE(3709), 1, aux_sym__literal_repeat1, - STATE(4126), 1, + STATE(4115), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6446), 2, + ACTIONS(6437), 2, sym_number, sym_word, - ACTIONS(6448), 2, + ACTIONS(6439), 2, sym_raw_string, sym_ansi_c_string, - STATE(3851), 7, + STATE(3756), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148675,10 +148756,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [139340] = 15, + [139458] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(2070), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148692,22 +148773,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6456), 1, + ACTIONS(6447), 1, sym_test_operator, - STATE(3860), 1, + STATE(3862), 1, aux_sym__literal_repeat1, - STATE(4122), 1, + STATE(4260), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6452), 2, + ACTIONS(6443), 2, sym_number, sym_word, - ACTIONS(6454), 2, + ACTIONS(6445), 2, sym_raw_string, sym_ansi_c_string, - STATE(3857), 7, + STATE(3859), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148715,20 +148796,45 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [139395] = 5, + [139513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, + ACTIONS(909), 3, + sym_file_descriptor, sym__concat, - STATE(2678), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6112), 3, + anon_sym_LF, + ACTIONS(907), 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, + [139544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(6114), 18, + ACTIONS(896), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -148745,10 +148851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139430] = 15, + anon_sym_BQUOTE, + [139575] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2637), 1, + ACTIONS(2498), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148762,22 +148869,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6462), 1, + ACTIONS(6453), 1, sym_test_operator, - STATE(3830), 1, + STATE(3684), 1, aux_sym__literal_repeat1, - STATE(4137), 1, + STATE(4122), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6458), 2, + ACTIONS(6449), 2, sym_number, sym_word, - ACTIONS(6460), 2, + ACTIONS(6451), 2, sym_raw_string, sym_ansi_c_string, - STATE(3835), 7, + STATE(3696), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148785,48 +148892,98 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [139485] = 5, - ACTIONS(3), 1, + [139630] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(6464), 1, + ACTIONS(2480), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, - STATE(2701), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6459), 1, + sym_test_operator, + STATE(3853), 1, aux_sym__literal_repeat1, - ACTIONS(5968), 3, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [139520] = 5, + STATE(4262), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6455), 2, + sym_number, + sym_word, + ACTIONS(6457), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3856), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139685] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2548), 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(6465), 1, + sym_test_operator, + STATE(3725), 1, + aux_sym__literal_repeat1, + STATE(4125), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6461), 2, + sym_number, + sym_word, + ACTIONS(6463), 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, + [139740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, + ACTIONS(6467), 1, sym__concat, - STATE(2678), 1, + STATE(2589), 1, aux_sym_concatenation_repeat1, - ACTIONS(6065), 3, + ACTIONS(875), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6067), 18, + ACTIONS(873), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -148845,10 +149002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139555] = 15, + [139775] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3318), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -148862,22 +149019,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6470), 1, + ACTIONS(6474), 1, sym_test_operator, - STATE(3777), 1, + STATE(3844), 1, aux_sym__literal_repeat1, - STATE(4263), 1, + STATE(4102), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6466), 2, + ACTIONS(6470), 2, sym_number, sym_word, - ACTIONS(6468), 2, + ACTIONS(6472), 2, sym_raw_string, sym_ansi_c_string, - STATE(3762), 7, + STATE(3767), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -148885,14 +149042,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [139610] = 3, + [139830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 3, + ACTIONS(875), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(937), 20, + ACTIONS(873), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -148913,19 +149070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [139641] = 3, + [139861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 2, + ACTIONS(894), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6474), 21, + ACTIONS(892), 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, @@ -148941,18 +149097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139672] = 5, + anon_sym_BQUOTE, + [139892] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, + ACTIONS(6476), 1, sym__concat, - STATE(2685), 1, + STATE(2589), 1, aux_sym_concatenation_repeat1, - ACTIONS(6069), 3, + ACTIONS(869), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6071), 18, + ACTIONS(867), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -148971,39 +149128,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139707] = 15, + [139927] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(3911), 1, - anon_sym_RBRACE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6306), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR, - ACTIONS(6308), 1, + ACTIONS(6352), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6354), 1, sym__special_character, - ACTIONS(6310), 1, + ACTIONS(6356), 1, anon_sym_DQUOTE, - ACTIONS(6314), 1, + ACTIONS(6360), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, + ACTIONS(6362), 1, anon_sym_BQUOTE, - ACTIONS(6480), 1, + ACTIONS(6366), 1, sym_test_operator, - STATE(3885), 1, + STATE(3030), 1, aux_sym__literal_repeat1, - STATE(4103), 1, - sym_concatenation, - ACTIONS(6318), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6476), 2, + ACTIONS(5666), 2, sym_number, sym_word, - ACTIONS(6478), 2, + ACTIONS(6358), 2, sym_raw_string, sym_ansi_c_string, - STATE(3761), 7, + ACTIONS(6364), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2317), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2997), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149011,20 +149167,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [139762] = 5, + [139980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, - sym__concat, - STATE(2685), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6075), 3, + ACTIONS(943), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(6077), 18, + ACTIONS(941), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -149041,19 +149194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139797] = 3, + anon_sym_BQUOTE, + [140011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 2, + ACTIONS(976), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6484), 21, + ACTIONS(974), 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, @@ -149069,17 +149222,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139828] = 3, + anon_sym_BQUOTE, + [140042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 3, + ACTIONS(6478), 1, + sym__concat, + STATE(2589), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 3, sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(880), 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, + [140077] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6148), 1, sym__concat, + STATE(2597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5771), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(929), 20, + ACTIONS(5769), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -149096,19 +149283,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [139859] = 5, + [140112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, + ACTIONS(6148), 1, sym__concat, - STATE(2685), 1, + STATE(2593), 1, aux_sym_concatenation_repeat1, - ACTIONS(5718), 3, + ACTIONS(5750), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5716), 18, + ACTIONS(5748), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -149127,10 +149313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139894] = 15, + [140147] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(2290), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -149144,22 +149330,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6490), 1, + ACTIONS(6484), 1, sym_test_operator, - STATE(3846), 1, + STATE(3895), 1, aux_sym__literal_repeat1, - STATE(4128), 1, + STATE(4249), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6486), 2, + ACTIONS(6480), 2, sym_number, sym_word, - ACTIONS(6488), 2, + ACTIONS(6482), 2, sym_raw_string, sym_ansi_c_string, - STATE(3843), 7, + STATE(3892), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149167,59 +149353,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [139949] = 15, - ACTIONS(59), 1, + [140202] = 3, + ACTIONS(3), 1, sym_comment, - 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, - ACTIONS(6314), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, + ACTIONS(915), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(913), 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(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, - 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, + [140233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6486), 1, + sym__special_character, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(5750), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6500), 21, + ACTIONS(5748), 18, 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, @@ -149235,10 +149411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140035] = 15, + [140268] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3531), 1, + ACTIONS(2802), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -149252,22 +149428,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, + ACTIONS(6492), 1, sym_test_operator, - STATE(3697), 1, + STATE(3809), 1, aux_sym__literal_repeat1, - STATE(4250), 1, + STATE(4132), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6502), 2, + ACTIONS(6488), 2, sym_number, sym_word, - ACTIONS(6504), 2, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - STATE(3715), 7, + STATE(3825), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149275,17 +149451,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [140090] = 3, + [140323] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 3, - sym_file_descriptor, + ACTIONS(6148), 1, sym__concat, + STATE(2597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5990), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(879), 20, + ACTIONS(5988), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -149302,21 +149481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [140121] = 5, + [140358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 1, - sym__special_character, - STATE(2701), 1, - aux_sym__literal_repeat1, - ACTIONS(5718), 3, + ACTIONS(1004), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(5716), 18, + ACTIONS(1002), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -149333,17 +149508,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140156] = 3, + anon_sym_BQUOTE, + [140389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 3, - sym_file_descriptor, + ACTIONS(6148), 1, sym__concat, + STATE(2593), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5903), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(894), 20, + ACTIONS(5901), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -149360,21 +149539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [140187] = 5, + [140424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 1, - sym__special_character, - STATE(2701), 1, - aux_sym__literal_repeat1, - ACTIONS(6069), 3, + ACTIONS(902), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(6071), 18, + ACTIONS(900), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -149391,10 +149566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140222] = 15, + anon_sym_BQUOTE, + [140455] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2489), 1, + ACTIONS(3765), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -149408,22 +149584,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6512), 1, + ACTIONS(6498), 1, sym_test_operator, - STATE(3889), 1, + STATE(3845), 1, aux_sym__literal_repeat1, - STATE(4104), 1, + STATE(4140), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6508), 2, + ACTIONS(6494), 2, sym_number, sym_word, - ACTIONS(6510), 2, + ACTIONS(6496), 2, sym_raw_string, sym_ansi_c_string, - STATE(3891), 7, + STATE(3869), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149431,18 +149607,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [140277] = 5, + [140510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 1, + ACTIONS(6486), 1, sym__special_character, - STATE(2701), 1, + STATE(2579), 1, aux_sym__literal_repeat1, - ACTIONS(6075), 3, + ACTIONS(5903), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6077), 18, + ACTIONS(5901), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -149461,10 +149637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140312] = 15, + [140545] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3245), 1, + ACTIONS(3626), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -149478,22 +149654,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6518), 1, + ACTIONS(6504), 1, sym_test_operator, - STATE(3743), 1, + STATE(3782), 1, aux_sym__literal_repeat1, - STATE(4252), 1, + STATE(4110), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6514), 2, + ACTIONS(6500), 2, sym_number, sym_word, - ACTIONS(6516), 2, + ACTIONS(6502), 2, sym_raw_string, sym_ansi_c_string, - STATE(3728), 7, + STATE(3772), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149501,47 +149677,57 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [140367] = 3, - ACTIONS(3), 1, + [140600] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(6520), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6522), 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, - [140398] = 3, + ACTIONS(2538), 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(6510), 1, + sym_test_operator, + STATE(3876), 1, + aux_sym__literal_repeat1, + STATE(4251), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6506), 2, + sym_number, + sym_word, + ACTIONS(6508), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3885), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 2, + ACTIONS(865), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6526), 21, + 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, @@ -149557,39 +149743,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140429] = 15, + sym__special_character, + anon_sym_BQUOTE, + [140686] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(390), 1, + ACTIONS(3050), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(392), 1, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(396), 1, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(402), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(404), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(5108), 1, - sym__special_character, - ACTIONS(6532), 1, + ACTIONS(6516), 1, sym_test_operator, - ACTIONS(6534), 1, - sym_regex, - STATE(1052), 1, + STATE(3661), 1, aux_sym__literal_repeat1, - STATE(1736), 1, + STATE(4088), 1, sym_concatenation, - ACTIONS(406), 2, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6528), 2, + ACTIONS(6512), 2, sym_number, sym_word, - ACTIONS(6530), 2, + ACTIONS(6514), 2, sym_raw_string, sym_ansi_c_string, - STATE(886), 7, + STATE(3643), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149597,14 +149785,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [140484] = 3, + [140741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 3, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(898), 20, + ACTIONS(960), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -149625,14 +149813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [140515] = 3, + [140772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 3, + ACTIONS(966), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(890), 20, + ACTIONS(964), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -149653,19 +149841,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [140546] = 3, + [140803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 2, + ACTIONS(970), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6538), 21, + ACTIONS(968), 20, anon_sym_SEMI, - anon_sym_esac, 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, + [140834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(960), 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, @@ -149681,10 +149896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140577] = 15, + anon_sym_BQUOTE, + [140865] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(2953), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -149698,22 +149914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6544), 1, + ACTIONS(6522), 1, sym_test_operator, - STATE(3823), 1, + STATE(3861), 1, aux_sym__literal_repeat1, - STATE(4138), 1, + STATE(4137), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6540), 2, + ACTIONS(6518), 2, sym_number, sym_word, - ACTIONS(6542), 2, + ACTIONS(6520), 2, sym_raw_string, sym_ansi_c_string, - STATE(3827), 7, + STATE(3867), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149721,10 +149937,38 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [140632] = 15, + [140920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(980), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(978), 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, + [140951] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2574), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -149738,22 +149982,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6550), 1, + ACTIONS(6528), 1, sym_test_operator, - STATE(3750), 1, + STATE(3890), 1, aux_sym__literal_repeat1, - STATE(4071), 1, + STATE(4250), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6546), 2, + ACTIONS(6524), 2, sym_number, sym_word, - ACTIONS(6548), 2, + ACTIONS(6526), 2, sym_raw_string, sym_ansi_c_string, - STATE(3737), 7, + STATE(3898), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149761,39 +150005,39 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [140687] = 15, + [141006] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(286), 1, + ACTIONS(194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(288), 1, + ACTIONS(196), 1, anon_sym_DOLLAR, - ACTIONS(292), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(298), 1, + ACTIONS(206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(300), 1, + ACTIONS(208), 1, anon_sym_BQUOTE, - ACTIONS(5163), 1, + ACTIONS(5093), 1, sym__special_character, - ACTIONS(6556), 1, + ACTIONS(6534), 1, sym_test_operator, - ACTIONS(6558), 1, + ACTIONS(6536), 1, sym_regex, - STATE(894), 1, + STATE(1643), 1, aux_sym__literal_repeat1, - STATE(1032), 1, + STATE(1957), 1, sym_concatenation, - ACTIONS(302), 2, + ACTIONS(210), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6552), 2, + ACTIONS(6530), 2, sym_number, sym_word, - ACTIONS(6554), 2, + ACTIONS(6532), 2, sym_raw_string, sym_ansi_c_string, - STATE(495), 7, + STATE(1289), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149801,14 +150045,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [140742] = 3, + [141061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 3, + ACTIONS(984), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(968), 20, + ACTIONS(982), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -149829,66 +150073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [140773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6112), 2, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [140804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6560), 2, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, + [141092] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(2868), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -149902,22 +150090,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6568), 1, + ACTIONS(6542), 1, sym_test_operator, - STATE(3637), 1, + STATE(3894), 1, aux_sym__literal_repeat1, - STATE(4247), 1, + STATE(4246), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6564), 2, + ACTIONS(6538), 2, sym_number, sym_word, - ACTIONS(6566), 2, + ACTIONS(6540), 2, sym_raw_string, sym_ansi_c_string, - STATE(3634), 7, + STATE(3897), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149925,10 +150113,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [140890] = 15, + [141147] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(3214), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -149942,22 +150130,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6574), 1, + ACTIONS(6548), 1, sym_test_operator, - STATE(3720), 1, + STATE(3718), 1, aux_sym__literal_repeat1, - STATE(4251), 1, + STATE(4082), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6570), 2, + ACTIONS(6544), 2, sym_number, sym_word, - ACTIONS(6572), 2, + ACTIONS(6546), 2, sym_raw_string, sym_ansi_c_string, - STATE(3683), 7, + STATE(3638), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -149965,122 +150153,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [140945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6576), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6578), 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, - [140976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6580), 2, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - 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(6584), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6586), 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, - [141038] = 3, - ACTIONS(3), 1, - sym_comment, - 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_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, + [141202] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2695), 1, + ACTIONS(3883), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -150094,22 +150170,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6592), 1, + ACTIONS(6554), 1, sym_test_operator, - STATE(3808), 1, + STATE(3874), 1, aux_sym__literal_repeat1, - STATE(4149), 1, + STATE(4148), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6588), 2, + ACTIONS(6550), 2, sym_number, sym_word, - ACTIONS(6590), 2, + ACTIONS(6552), 2, sym_raw_string, sym_ansi_c_string, - STATE(3816), 7, + STATE(3884), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150117,47 +150193,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [141124] = 3, - ACTIONS(3), 1, - sym_comment, - 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141155] = 3, + [141257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 2, + ACTIONS(988), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6600), 21, + ACTIONS(986), 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, @@ -150173,10 +150220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141186] = 15, + anon_sym_BQUOTE, + [141288] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(2937), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -150190,22 +150238,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6606), 1, + ACTIONS(6560), 1, sym_test_operator, - STATE(3641), 1, + STATE(3863), 1, aux_sym__literal_repeat1, - STATE(4244), 1, + STATE(4238), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6602), 2, + ACTIONS(6556), 2, sym_number, sym_word, - ACTIONS(6604), 2, + ACTIONS(6558), 2, sym_raw_string, sym_ansi_c_string, - STATE(3644), 7, + STATE(3866), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150213,10 +150261,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [141241] = 15, + [141343] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2458), 1, + ACTIONS(3457), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -150230,22 +150278,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6612), 1, + ACTIONS(6566), 1, sym_test_operator, - STATE(3892), 1, + STATE(3751), 1, aux_sym__literal_repeat1, - STATE(4127), 1, + STATE(4060), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6608), 2, + ACTIONS(6562), 2, sym_number, sym_word, - ACTIONS(6610), 2, + ACTIONS(6564), 2, sym_raw_string, sym_ansi_c_string, - STATE(3878), 7, + STATE(3743), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150253,19 +150301,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [141296] = 3, + [141398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 2, + ACTIONS(996), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6616), 21, + ACTIONS(994), 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, @@ -150281,19 +150328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141327] = 3, + anon_sym_BQUOTE, + [141429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 2, + ACTIONS(890), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6620), 21, + ACTIONS(888), 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, @@ -150309,50 +150356,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141358] = 15, - ACTIONS(59), 1, + anon_sym_BQUOTE, + [141460] = 3, + ACTIONS(3), 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, - ACTIONS(6314), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, + ACTIONS(951), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(949), 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(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, - ACTIONS(6622), 2, - sym_number, - sym_word, - 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, + [141491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(937), 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, + [141522] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2721), 1, + ACTIONS(2997), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -150366,22 +150430,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6632), 1, + ACTIONS(6572), 1, sym_test_operator, - STATE(3803), 1, + STATE(3849), 1, aux_sym__literal_repeat1, - STATE(4152), 1, + STATE(4237), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6628), 2, + ACTIONS(6568), 2, sym_number, sym_word, - ACTIONS(6630), 2, + ACTIONS(6570), 2, sym_raw_string, sym_ansi_c_string, - STATE(3806), 7, + STATE(3852), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150389,10 +150453,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [141468] = 15, + [141577] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3789), 1, + ACTIONS(3058), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -150406,22 +150470,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6638), 1, + ACTIONS(6578), 1, sym_test_operator, - STATE(3815), 1, + STATE(3818), 1, aux_sym__literal_repeat1, - STATE(4146), 1, + STATE(4230), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6634), 2, + ACTIONS(6574), 2, sym_number, sym_word, - ACTIONS(6636), 2, + ACTIONS(6576), 2, sym_raw_string, sym_ansi_c_string, - STATE(3812), 7, + STATE(3821), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150429,105 +150493,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [141523] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6292), 1, - sym__concat, - STATE(2685), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5968), 3, - sym_file_descriptor, - 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - 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(6640), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6642), 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, - [141589] = 3, - ACTIONS(3), 1, - sym_comment, - 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_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, - [141620] = 3, + [141632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 2, + ACTIONS(935), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6650), 21, + ACTIONS(933), 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, @@ -150543,19 +150520,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141651] = 3, + anon_sym_BQUOTE, + [141663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 2, + ACTIONS(931), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6654), 21, + ACTIONS(929), 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, @@ -150571,59 +150548,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(6314), 1, - anon_sym_DOLLAR_LBRACE, - 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, - 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, + [141694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 2, + ACTIONS(927), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6664), 21, + ACTIONS(925), 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, @@ -150639,58 +150576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [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, + [141725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6022), 2, + ACTIONS(923), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6020), 21, + ACTIONS(921), 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, @@ -150706,38 +150604,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141852] = 14, + anon_sym_BQUOTE, + [141756] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5601), 1, - anon_sym_DOLLAR, - ACTIONS(6666), 1, + ACTIONS(3246), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6668), 1, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(6670), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(6674), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6676), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6680), 1, + ACTIONS(6584), 1, sym_test_operator, - STATE(2995), 1, + STATE(3882), 1, aux_sym__literal_repeat1, - ACTIONS(5595), 2, + STATE(4147), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6580), 2, sym_number, sym_word, - ACTIONS(6672), 2, + ACTIONS(6582), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6678), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2315), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2990), 7, + STATE(3878), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150745,19 +150645,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [141905] = 3, + [141811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 2, + ACTIONS(919), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(6684), 21, + ACTIONS(917), 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, @@ -150773,10 +150672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141936] = 15, + anon_sym_BQUOTE, + [141842] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(2640), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -150790,22 +150690,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6690), 1, + ACTIONS(6590), 1, sym_test_operator, - STATE(3661), 1, + STATE(3839), 1, aux_sym__literal_repeat1, - STATE(4226), 1, + STATE(4233), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6686), 2, + ACTIONS(6586), 2, sym_number, sym_word, - ACTIONS(6688), 2, + ACTIONS(6588), 2, sym_raw_string, sym_ansi_c_string, - STATE(3668), 7, + STATE(3854), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150813,10 +150713,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [141991] = 15, + [141897] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3084), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -150830,22 +150730,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6696), 1, + ACTIONS(6596), 1, sym_test_operator, - STATE(3680), 1, + STATE(3804), 1, aux_sym__literal_repeat1, - STATE(4215), 1, + STATE(4229), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6692), 2, + ACTIONS(6592), 2, sym_number, sym_word, - ACTIONS(6694), 2, + ACTIONS(6594), 2, sym_raw_string, sym_ansi_c_string, - STATE(3677), 7, + STATE(3807), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150853,10 +150753,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142046] = 15, + [141952] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(3148), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -150870,22 +150770,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6702), 1, + ACTIONS(6602), 1, sym_test_operator, - STATE(3776), 1, + STATE(3773), 1, aux_sym__literal_repeat1, - STATE(4075), 1, + STATE(4224), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6698), 2, + ACTIONS(6598), 2, sym_number, sym_word, - ACTIONS(6700), 2, + ACTIONS(6600), 2, sym_raw_string, sym_ansi_c_string, - STATE(3872), 7, + STATE(3776), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150893,66 +150793,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6704), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6706), 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, - [142132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6708), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6710), 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, - [142163] = 15, + [142007] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(3543), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -150966,22 +150810,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6716), 1, + ACTIONS(6608), 1, sym_test_operator, - STATE(3675), 1, + STATE(3759), 1, aux_sym__literal_repeat1, - STATE(4216), 1, + STATE(4220), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6712), 2, + ACTIONS(6604), 2, sym_number, sym_word, - ACTIONS(6714), 2, + ACTIONS(6606), 2, sym_raw_string, sym_ansi_c_string, - STATE(3682), 7, + STATE(3762), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -150989,10 +150833,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142218] = 15, + [142062] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2666), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151006,22 +150850,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6722), 1, + ACTIONS(6614), 1, sym_test_operator, STATE(3790), 1, aux_sym__literal_repeat1, - STATE(4160), 1, + STATE(4225), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6718), 2, + ACTIONS(6610), 2, sym_number, sym_word, - ACTIONS(6720), 2, + ACTIONS(6612), 2, sym_raw_string, sym_ansi_c_string, - STATE(3793), 7, + STATE(3777), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151029,10 +150873,38 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142273] = 15, + [142117] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4568), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(4570), 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, + [142148] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(2971), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151046,22 +150918,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6728), 1, + ACTIONS(6620), 1, sym_test_operator, - STATE(3801), 1, + STATE(3871), 1, aux_sym__literal_repeat1, - STATE(4098), 1, + STATE(4139), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6724), 2, + ACTIONS(6616), 2, sym_number, sym_word, - ACTIONS(6726), 2, + ACTIONS(6618), 2, sym_raw_string, sym_ansi_c_string, - STATE(3798), 7, + STATE(3848), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151069,38 +150941,38 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142328] = 3, - ACTIONS(3), 1, + [142203] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(912), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(910), 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(4552), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(4554), 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, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [142359] = 15, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [142234] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3045), 1, + ACTIONS(3650), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151114,22 +150986,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6734), 1, + ACTIONS(6626), 1, sym_test_operator, - STATE(3684), 1, + STATE(3728), 1, aux_sym__literal_repeat1, - STATE(4214), 1, + STATE(4213), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6730), 2, + ACTIONS(6622), 2, sym_number, sym_word, - ACTIONS(6732), 2, + ACTIONS(6624), 2, sym_raw_string, sym_ansi_c_string, - STATE(3687), 7, + STATE(3731), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151137,122 +151009,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(916), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(914), 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, - [142445] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6736), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6738), 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, - [142476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(920), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(918), 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, - [142507] = 3, - ACTIONS(3), 1, - sym_comment, - 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, - [142538] = 15, + [142289] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3963), 1, + ACTIONS(3723), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151266,22 +151026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(6632), 1, sym_test_operator, - STATE(3845), 1, + STATE(3714), 1, aux_sym__literal_repeat1, - STATE(4096), 1, + STATE(4210), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6740), 2, + ACTIONS(6628), 2, sym_number, sym_word, - ACTIONS(6742), 2, + ACTIONS(6630), 2, sym_raw_string, sym_ansi_c_string, - STATE(3849), 7, + STATE(3717), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151289,38 +151049,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142593] = 3, - ACTIONS(3), 1, - sym_comment, - 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_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, - [142624] = 15, + [142344] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(3831), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151334,22 +151066,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(6638), 1, sym_test_operator, - STATE(3783), 1, + STATE(3683), 1, aux_sym__literal_repeat1, - STATE(4155), 1, + STATE(4205), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6746), 2, + ACTIONS(6634), 2, sym_number, sym_word, - ACTIONS(6748), 2, + ACTIONS(6636), 2, sym_raw_string, sym_ansi_c_string, - STATE(3771), 7, + STATE(3686), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151357,10 +151089,38 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142679] = 15, + [142399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5988), 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, + [142430] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3647), 1, + ACTIONS(3279), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151374,22 +151134,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6756), 1, + ACTIONS(6644), 1, sym_test_operator, - STATE(3711), 1, + STATE(3850), 1, aux_sym__literal_repeat1, - STATE(4200), 1, + STATE(4152), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6752), 2, + ACTIONS(6640), 2, sym_number, sym_word, - ACTIONS(6754), 2, + ACTIONS(6642), 2, sym_raw_string, sym_ansi_c_string, - STATE(3708), 7, + STATE(3846), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151397,39 +151157,39 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142734] = 15, - ACTIONS(59), 1, - sym_comment, - ACTIONS(194), 1, + [142485] = 15, + ACTIONS(41), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(196), 1, + ACTIONS(43), 1, anon_sym_DOLLAR, - ACTIONS(200), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(206), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, + ACTIONS(55), 1, anon_sym_BQUOTE, - ACTIONS(5186), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5138), 1, sym__special_character, - ACTIONS(6762), 1, + ACTIONS(6650), 1, sym_test_operator, - ACTIONS(6764), 1, + ACTIONS(6652), 1, sym_regex, - STATE(1801), 1, + STATE(1707), 1, aux_sym__literal_repeat1, - STATE(2001), 1, + STATE(2059), 1, sym_concatenation, - ACTIONS(210), 2, + ACTIONS(57), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6758), 2, + ACTIONS(6646), 2, sym_number, sym_word, - ACTIONS(6760), 2, + ACTIONS(6648), 2, sym_raw_string, sym_ansi_c_string, - STATE(1384), 7, + STATE(1551), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151437,50 +151197,66 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142789] = 15, + [142540] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(2293), 1, - anon_sym_RBRACE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6306), 1, + ACTIONS(1899), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(6308), 1, + sym_number, + sym_word, + ACTIONS(1901), 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, - ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(6314), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6770), 1, - sym_test_operator, - 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(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, + sym_test_operator, + [142571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6654), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6656), 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, + [142602] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3013), 1, + ACTIONS(3901), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151494,22 +151270,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6776), 1, + ACTIONS(6662), 1, sym_test_operator, - STATE(3696), 1, + STATE(3670), 1, aux_sym__literal_repeat1, - STATE(4202), 1, + STATE(4204), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6772), 2, + ACTIONS(6658), 2, sym_number, sym_word, - ACTIONS(6774), 2, + ACTIONS(6660), 2, sym_raw_string, sym_ansi_c_string, - STATE(3701), 7, + STATE(3672), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151517,13 +151293,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142899] = 3, + [142657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6778), 2, + ACTIONS(5771), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6780), 21, + ACTIONS(5769), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -151545,10 +151321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [142930] = 15, + [142688] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2426), 1, + ACTIONS(3841), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151562,22 +151338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6786), 1, + ACTIONS(6668), 1, sym_test_operator, - STATE(3867), 1, + STATE(3824), 1, aux_sym__literal_repeat1, - STATE(4055), 1, + STATE(4136), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6782), 2, + ACTIONS(6664), 2, sym_number, sym_word, - ACTIONS(6784), 2, + ACTIONS(6666), 2, sym_raw_string, sym_ansi_c_string, - STATE(3855), 7, + STATE(3827), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151585,41 +151361,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [142985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(948), 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, - [143016] = 3, + [142743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 2, + ACTIONS(6670), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6790), 21, + ACTIONS(6672), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -151641,38 +151389,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143047] = 14, + [142774] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(5601), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR, - ACTIONS(6666), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6668), 1, + ACTIONS(6354), 1, sym__special_character, - ACTIONS(6670), 1, + ACTIONS(6356), 1, anon_sym_DQUOTE, - ACTIONS(6674), 1, + ACTIONS(6360), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6676), 1, + ACTIONS(6362), 1, anon_sym_BQUOTE, - ACTIONS(6680), 1, + ACTIONS(6366), 1, sym_test_operator, - STATE(2995), 1, + STATE(3030), 1, aux_sym__literal_repeat1, - ACTIONS(5595), 2, + ACTIONS(5666), 2, sym_number, sym_word, - ACTIONS(6672), 2, + ACTIONS(6358), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6678), 2, + ACTIONS(6364), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2296), 2, + STATE(2328), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2990), 7, + STATE(2997), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151680,13 +151428,41 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [143100] = 3, + [142827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6674), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6676), 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, + [142858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6792), 2, + ACTIONS(6678), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6794), 21, + ACTIONS(6680), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -151708,13 +151484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143131] = 3, + [142889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 2, + ACTIONS(6682), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6798), 21, + ACTIONS(6684), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -151736,10 +151512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143162] = 15, + [142920] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(2794), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151753,22 +151529,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6804), 1, + ACTIONS(6690), 1, sym_test_operator, - STATE(3704), 1, + STATE(3669), 1, aux_sym__literal_repeat1, - STATE(4201), 1, + STATE(4177), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6800), 2, + ACTIONS(6686), 2, sym_number, sym_word, - ACTIONS(6802), 2, + ACTIONS(6688), 2, sym_raw_string, sym_ansi_c_string, - STATE(3707), 7, + STATE(3665), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151776,69 +151552,39 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [143217] = 5, - ACTIONS(3), 1, - sym_comment, - 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(863), 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, - [143252] = 15, + [142975] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2038), 1, - anon_sym_RBRACE, - ACTIONS(6304), 1, + ACTIONS(390), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6306), 1, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(6308), 1, - sym__special_character, - ACTIONS(6310), 1, + ACTIONS(396), 1, anon_sym_DQUOTE, - ACTIONS(6314), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, + ACTIONS(404), 1, anon_sym_BQUOTE, - ACTIONS(6812), 1, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(6696), 1, sym_test_operator, - STATE(3769), 1, + ACTIONS(6698), 1, + sym_regex, + STATE(1059), 1, aux_sym__literal_repeat1, - STATE(4078), 1, + STATE(1793), 1, sym_concatenation, - ACTIONS(6318), 2, + ACTIONS(406), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6808), 2, + ACTIONS(6692), 2, sym_number, sym_word, - ACTIONS(6810), 2, + ACTIONS(6694), 2, sym_raw_string, sym_ansi_c_string, - STATE(3820), 7, + STATE(877), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151846,10 +151592,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [143307] = 15, + [143030] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2813), 1, + ACTIONS(3939), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -151863,22 +151609,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6818), 1, + ACTIONS(6704), 1, sym_test_operator, - STATE(3766), 1, + STATE(3651), 1, aux_sym__literal_repeat1, - STATE(4194), 1, + STATE(4197), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6814), 2, + ACTIONS(6700), 2, sym_number, sym_word, - ACTIONS(6816), 2, + ACTIONS(6702), 2, sym_raw_string, sym_ansi_c_string, - STATE(3773), 7, + STATE(3654), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -151886,18 +151632,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [143362] = 3, + [143085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 3, + ACTIONS(6706), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(902), 20, + ACTIONS(6708), 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, @@ -151913,19 +151660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [143393] = 3, + [143116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 3, + ACTIONS(6710), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1002), 20, + ACTIONS(6712), 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, @@ -151941,59 +151688,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [143424] = 15, - ACTIONS(59), 1, + [143147] = 3, + ACTIONS(3), 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(6714), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6716), 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, + [143178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 3, + ACTIONS(6718), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(952), 20, + ACTIONS(6720), 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, @@ -152009,22 +151744,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [143510] = 5, + [143209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6826), 1, - sym__concat, - STATE(2693), 1, - aux_sym_concatenation_repeat1, - ACTIONS(871), 3, + ACTIONS(6722), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(869), 18, + ACTIONS(6724), 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, + [143240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6726), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6728), 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, @@ -152040,39 +151800,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143545] = 15, + [143271] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2112), 1, - anon_sym_RBRACE, - ACTIONS(6304), 1, + ACTIONS(284), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6306), 1, + ACTIONS(286), 1, anon_sym_DOLLAR, - ACTIONS(6308), 1, - sym__special_character, - ACTIONS(6310), 1, + ACTIONS(290), 1, anon_sym_DQUOTE, - ACTIONS(6314), 1, + ACTIONS(296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, + ACTIONS(298), 1, anon_sym_BQUOTE, - ACTIONS(6832), 1, + ACTIONS(5131), 1, + sym__special_character, + ACTIONS(6734), 1, sym_test_operator, - STATE(3671), 1, + ACTIONS(6736), 1, + sym_regex, + STATE(900), 1, aux_sym__literal_repeat1, - STATE(4222), 1, + STATE(1013), 1, sym_concatenation, - ACTIONS(6318), 2, + ACTIONS(300), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6828), 2, + ACTIONS(6730), 2, sym_number, sym_word, - ACTIONS(6830), 2, + ACTIONS(6732), 2, sym_raw_string, sym_ansi_c_string, - STATE(3657), 7, + STATE(451), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -152080,10 +151840,38 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [143600] = 15, + [143326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6738), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6740), 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, + [143357] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -152097,22 +151885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6838), 1, + ACTIONS(6746), 1, sym_test_operator, - STATE(3758), 1, + STATE(3814), 1, aux_sym__literal_repeat1, - STATE(4276), 1, + STATE(4165), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6834), 2, + ACTIONS(6742), 2, sym_number, sym_word, - ACTIONS(6836), 2, + ACTIONS(6744), 2, sym_raw_string, sym_ansi_c_string, - STATE(3841), 7, + STATE(3816), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -152120,13 +151908,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [143655] = 3, + [143412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 2, + ACTIONS(6748), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6067), 21, + ACTIONS(6750), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -152148,13 +151936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143686] = 3, + [143443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 2, + ACTIONS(6752), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6842), 21, + ACTIONS(6754), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -152176,66 +151964,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143717] = 3, - ACTIONS(59), 1, + [143474] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_number, - sym_word, - ACTIONS(1871), 17, + ACTIONS(6756), 2, 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, - [143748] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4513), 6, + anon_sym_LF, + ACTIONS(6758), 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_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, 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, - [143779] = 15, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [143505] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2955), 1, + ACTIONS(3911), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -152249,22 +152009,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6848), 1, + ACTIONS(6764), 1, sym_test_operator, - STATE(3719), 1, + STATE(3675), 1, aux_sym__literal_repeat1, - STATE(4196), 1, + STATE(4195), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6844), 2, + ACTIONS(6760), 2, sym_number, sym_word, - ACTIONS(6846), 2, + ACTIONS(6762), 2, sym_raw_string, sym_ansi_c_string, - STATE(3669), 7, + STATE(3640), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -152272,21 +152032,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [143834] = 5, + [143560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 1, - sym__concat, - STATE(2693), 1, - aux_sym_concatenation_repeat1, - ACTIONS(881), 3, + ACTIONS(6766), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(879), 18, + ACTIONS(6768), 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, @@ -152302,10 +152060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143869] = 15, + [143591] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2400), 1, + ACTIONS(2846), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -152319,22 +152077,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6857), 1, + ACTIONS(6774), 1, sym_test_operator, - STATE(3852), 1, + STATE(3656), 1, aux_sym__literal_repeat1, - STATE(4097), 1, + STATE(4198), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6853), 2, + ACTIONS(6770), 2, sym_number, sym_word, - ACTIONS(6855), 2, + ACTIONS(6772), 2, sym_raw_string, sym_ansi_c_string, - STATE(3842), 7, + STATE(3650), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -152342,13 +152100,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [143924] = 3, + [143646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 2, + ACTIONS(6776), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6861), 21, + ACTIONS(6778), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -152370,21 +152128,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143955] = 5, + [143677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, - sym__concat, - STATE(2678), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6022), 3, + ACTIONS(6780), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6020), 18, + ACTIONS(6782), 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, @@ -152400,10 +152156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143990] = 15, + [143708] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(3370), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -152417,22 +152173,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6867), 1, + ACTIONS(6788), 1, sym_test_operator, - STATE(3825), 1, + STATE(3823), 1, aux_sym__literal_repeat1, - STATE(4088), 1, + STATE(4164), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6863), 2, + ACTIONS(6784), 2, sym_number, sym_word, - ACTIONS(6865), 2, + ACTIONS(6786), 2, sym_raw_string, sym_ansi_c_string, - STATE(3832), 7, + STATE(3817), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -152440,18 +152196,161 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [144045] = 3, + [143763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 3, + ACTIONS(6790), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(998), 20, + ACTIONS(6792), 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, + [143794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6794), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6796), 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, + [143825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6798), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6800), 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, + [143856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6804), 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, + [143887] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6486), 1, + sym__special_character, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(6032), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6034), 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, + [143922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6806), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6808), 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, @@ -152467,102 +152366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144076] = 15, - ACTIONS(59), 1, - sym_comment, - ACTIONS(2839), 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(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, - ACTIONS(6871), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3765), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [144131] = 15, - ACTIONS(59), 1, - sym_comment, - ACTIONS(2335), 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(6879), 1, - sym_test_operator, - STATE(3819), 1, - aux_sym__literal_repeat1, - STATE(4086), 1, - sym_concatenation, - ACTIONS(6318), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - [144186] = 5, + [143953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6881), 1, - sym__special_character, - STATE(2701), 1, - aux_sym__literal_repeat1, - ACTIONS(927), 3, + ACTIONS(6810), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(922), 18, + ACTIONS(6812), 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, @@ -152578,18 +152394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144221] = 3, + [143984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(6814), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(994), 20, + ACTIONS(6816), 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, @@ -152605,59 +152422,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144252] = 15, - ACTIONS(59), 1, - sym_comment, - ACTIONS(2929), 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(6888), 1, - sym_test_operator, - STATE(3727), 1, - aux_sym__literal_repeat1, - STATE(4193), 1, - sym_concatenation, - ACTIONS(6318), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - [144307] = 3, + [144015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 3, + ACTIONS(6818), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(988), 20, + ACTIONS(6820), 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, @@ -152673,54 +152450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144338] = 15, - ACTIONS(59), 1, - sym_comment, - ACTIONS(3731), 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(6894), 1, - sym_test_operator, - STATE(3770), 1, - aux_sym__literal_repeat1, - STATE(4169), 1, - sym_concatenation, - ACTIONS(6318), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - [144393] = 3, + [144046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6896), 2, + ACTIONS(6822), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6898), 21, + ACTIONS(6824), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -152742,39 +152478,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144424] = 15, - ACTIONS(41), 1, + [144077] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3955), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(43), 1, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(47), 1, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, - sym_comment, - ACTIONS(5098), 1, - sym__special_character, - ACTIONS(6904), 1, + ACTIONS(6830), 1, sym_test_operator, - ACTIONS(6906), 1, - sym_regex, - STATE(1785), 1, + STATE(3704), 1, aux_sym__literal_repeat1, - STATE(2034), 1, + STATE(4187), 1, sym_concatenation, - ACTIONS(57), 2, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6900), 2, + ACTIONS(6826), 2, sym_number, sym_word, - ACTIONS(6902), 2, + ACTIONS(6828), 2, sym_raw_string, sym_ansi_c_string, - STATE(1118), 7, + STATE(3701), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -152782,13 +152518,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [144479] = 3, + [144132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 2, + ACTIONS(6832), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6910), 21, + ACTIONS(6834), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -152810,13 +152546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144510] = 3, + [144163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5938), 2, + ACTIONS(6836), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(5936), 21, + ACTIONS(6838), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -152838,18 +152574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144541] = 3, + [144194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(6840), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(984), 20, + ACTIONS(6842), 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, @@ -152865,18 +152602,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144572] = 3, + [144225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 3, - sym_file_descriptor, + ACTIONS(6148), 1, sym__concat, + STATE(2593), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6032), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(980), 20, + ACTIONS(6034), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -152893,18 +152632,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144603] = 3, + [144260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 3, - sym_file_descriptor, + ACTIONS(6148), 1, sym__concat, + STATE(2597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6049), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(976), 20, + ACTIONS(6051), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -152921,19 +152662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144634] = 3, + [144295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 3, + ACTIONS(6844), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(972), 20, + ACTIONS(6846), 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, @@ -152949,54 +152690,13 @@ static const uint16_t ts_small_parse_table[] = { 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(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(6916), 1, - sym_test_operator, - STATE(3833), 1, - aux_sym__literal_repeat1, - STATE(4089), 1, - sym_concatenation, - ACTIONS(6318), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - [144720] = 3, + [144326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6918), 2, + ACTIONS(6049), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6920), 21, + ACTIONS(6051), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -153018,18 +152718,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144751] = 3, + [144357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 3, + ACTIONS(6848), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(933), 20, + ACTIONS(6850), 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, @@ -153045,14 +152746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144782] = 3, + [144388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6922), 2, + ACTIONS(6852), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6924), 21, + ACTIONS(6854), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -153074,18 +152774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144813] = 3, + [144419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 3, + ACTIONS(6856), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(964), 20, + ACTIONS(6858), 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, @@ -153101,51 +152802,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [144450] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2096), 1, + ACTIONS(3929), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -153159,22 +152819,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6936), 1, + ACTIONS(6864), 1, sym_test_operator, - STATE(3698), 1, + STATE(3720), 1, aux_sym__literal_repeat1, - STATE(4203), 1, + STATE(4185), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6932), 2, + ACTIONS(6860), 2, sym_number, sym_word, - ACTIONS(6934), 2, + ACTIONS(6862), 2, sym_raw_string, sym_ansi_c_string, - STATE(3689), 7, + STATE(3713), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -153182,10 +152842,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [144954] = 15, + [144505] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(3713), 1, + ACTIONS(3517), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -153199,22 +152859,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6942), 1, + ACTIONS(6870), 1, sym_test_operator, - STATE(3756), 1, + STATE(3769), 1, aux_sym__literal_repeat1, - STATE(4175), 1, + STATE(4171), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6938), 2, + ACTIONS(6866), 2, sym_number, sym_word, - ACTIONS(6940), 2, + ACTIONS(6868), 2, sym_raw_string, sym_ansi_c_string, - STATE(3753), 7, + STATE(3791), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -153222,10 +152882,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [145009] = 15, + [144560] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -153239,22 +152899,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6948), 1, + ACTIONS(6876), 1, sym_test_operator, - STATE(3871), 1, + STATE(3674), 1, aux_sym__literal_repeat1, - STATE(4113), 1, + STATE(4058), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6944), 2, + ACTIONS(6872), 2, sym_number, sym_word, - ACTIONS(6946), 2, + ACTIONS(6874), 2, sym_raw_string, sym_ansi_c_string, - STATE(3864), 7, + STATE(3667), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -153262,18 +152922,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [145064] = 3, + [144615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 3, + ACTIONS(6878), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(960), 20, + ACTIONS(6880), 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, @@ -153289,15 +152950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [145095] = 3, + [144646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 3, + ACTIONS(992), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(886), 20, + ACTIONS(990), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -153318,13 +152978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [145126] = 3, + [144677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6950), 2, + ACTIONS(6882), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6952), 21, + ACTIONS(6884), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -153346,18 +153006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145157] = 3, + [144708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 3, + ACTIONS(6886), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(956), 20, + ACTIONS(6888), 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, @@ -153373,11 +153034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [145188] = 15, + [144739] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(2871), 1, + ACTIONS(2989), 1, anon_sym_RBRACE, ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, @@ -153391,22 +153051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6958), 1, + ACTIONS(6894), 1, sym_test_operator, - STATE(3740), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - STATE(4181), 1, + STATE(4186), 1, sym_concatenation, ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6954), 2, + ACTIONS(6890), 2, sym_number, sym_word, - ACTIONS(6956), 2, + ACTIONS(6892), 2, sym_raw_string, sym_ansi_c_string, - STATE(3745), 7, + STATE(3712), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -153414,75 +153074,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [145243] = 14, + [144794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6896), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6898), 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, + [144825] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(6962), 1, + ACTIONS(3388), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6964), 1, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(6966), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(6968), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(6972), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6974), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(6978), 1, + ACTIONS(6904), 1, sym_test_operator, - STATE(2483), 1, + STATE(3805), 1, aux_sym__literal_repeat1, - STATE(2788), 1, + STATE(4167), 1, sym_concatenation, - ACTIONS(6960), 2, - sym_number, - sym_word, - ACTIONS(6970), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6976), 2, + ACTIONS(6318), 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, + ACTIONS(6900), 2, sym_number, sym_word, - ACTIONS(6990), 2, + ACTIONS(6902), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2586), 7, + STATE(3797), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -153490,17 +153142,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [145347] = 3, + [144880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 2, + ACTIONS(6038), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6710), 20, + ACTIONS(6040), 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, @@ -153516,57 +153170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [145377] = 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(7018), 1, - sym_test_operator, - STATE(2416), 1, - aux_sym__literal_repeat1, - STATE(2688), 1, - sym_concatenation, - ACTIONS(7000), 2, - sym_number, - sym_word, - ACTIONS(7010), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7016), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2406), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [145429] = 3, + [144911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 4, + ACTIONS(6906), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(910), 18, + ACTIONS(6908), 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, @@ -153582,17 +153198,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145459] = 3, + [144942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 2, + ACTIONS(6910), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6538), 20, + ACTIONS(6912), 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, @@ -153608,57 +153226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [145489] = 14, - ACTIONS(59), 1, - sym_comment, - 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, - 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, + [144973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 4, + ACTIONS(6914), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(914), 18, + ACTIONS(6916), 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, @@ -153674,37 +153254,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145571] = 14, + [145004] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(7028), 1, + ACTIONS(3535), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7030), 1, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(7032), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(7034), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(7038), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(7044), 1, + ACTIONS(6922), 1, sym_test_operator, - STATE(3614), 1, + STATE(3738), 1, aux_sym__literal_repeat1, - STATE(3905), 1, + STATE(4180), 1, sym_concatenation, - ACTIONS(7026), 2, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6918), 2, sym_number, sym_word, - ACTIONS(7036), 2, + ACTIONS(6920), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7042), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3888), 7, + STATE(3735), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -153712,18 +153294,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [145623] = 3, + [145059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 4, + ACTIONS(6924), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(918), 18, + ACTIONS(6926), 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, @@ -153739,17 +153322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145653] = 3, + [145090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 3, + ACTIONS(6928), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(875), 19, + ACTIONS(6930), 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, @@ -153765,36 +153350,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [145121] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3483), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, - [145683] = 12, - ACTIONS(3), 1, + 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(3755), 1, + aux_sym__literal_repeat1, + STATE(4176), 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(3765), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145176] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(7028), 1, + ACTIONS(3164), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7030), 1, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(7034), 1, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(7038), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(7048), 1, - anon_sym_RBRACK, - ACTIONS(7052), 1, + ACTIONS(6942), 1, sym_test_operator, - ACTIONS(7042), 2, + STATE(3721), 1, + aux_sym__literal_repeat1, + STATE(4201), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7050), 2, + ACTIONS(6938), 2, + sym_number, + sym_word, + ACTIONS(6940), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7046), 4, + STATE(3732), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145231] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2128), 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, + STATE(3800), 1, + aux_sym__literal_repeat1, + STATE(4108), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6944), 2, sym_number, - sym__comment_word, sym_word, - STATE(3893), 7, + ACTIONS(6946), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3641), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -153802,42 +153470,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [145731] = 3, + [145286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 4, - sym_file_descriptor, + ACTIONS(6148), 1, sym__concat, - 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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(935), 4, + STATE(2597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6038), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(933), 18, + ACTIONS(6040), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -153856,15 +153500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145791] = 3, + [145321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 4, - sym_file_descriptor, + ACTIONS(6148), 1, sym__concat, + STATE(2593), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6045), 3, + sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(890), 18, + ACTIONS(6047), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -153883,37 +153530,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145821] = 14, + [145356] = 15, ACTIONS(59), 1, sym_comment, - ACTIONS(5407), 1, - anon_sym_DQUOTE, - ACTIONS(5800), 1, + ACTIONS(3439), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5802), 1, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(5804), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(5808), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5810), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(7058), 1, + ACTIONS(6954), 1, sym_test_operator, - STATE(2394), 1, + STATE(3753), 1, aux_sym__literal_repeat1, - STATE(2491), 1, + STATE(4163), 1, sym_concatenation, - ACTIONS(5812), 2, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7054), 2, + ACTIONS(6950), 2, sym_number, sym_word, - ACTIONS(7056), 2, + ACTIONS(6952), 2, sym_raw_string, sym_ansi_c_string, - STATE(2365), 7, + STATE(3745), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -153921,15 +153570,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [145873] = 3, + [145411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 4, + ACTIONS(6486), 1, + sym__special_character, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(6045), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(948), 18, + ACTIONS(6047), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -153948,54 +153600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145903] = 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(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, - STATE(3893), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [145951] = 3, + [145446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 4, + ACTIONS(5167), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(952), 18, + ACTIONS(5165), 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, @@ -154011,17 +153628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145981] = 3, + [145477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6022), 2, + ACTIONS(5167), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6020), 20, + ACTIONS(5165), 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, @@ -154037,57 +153656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [146011] = 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(7066), 1, - sym_test_operator, - STATE(2606), 1, - aux_sym__literal_repeat1, - STATE(2889), 1, - sym_concatenation, - ACTIONS(6996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - [146063] = 3, + [145508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 4, + ACTIONS(6956), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(898), 18, + ACTIONS(6958), 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, @@ -154103,17 +153684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146093] = 3, + [145539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 4, + ACTIONS(6856), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(894), 18, + ACTIONS(6858), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154130,15 +153710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146123] = 3, + anon_sym_BQUOTE, + [145569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 4, + ACTIONS(935), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(879), 18, + ACTIONS(933), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -154157,37 +153738,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146153] = 14, + [145599] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(5974), 1, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5909), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5976), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR, - ACTIONS(5980), 1, - anon_sym_DQUOTE, - ACTIONS(5984), 1, + ACTIONS(5913), 1, + sym__special_character, + ACTIONS(5917), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5986), 1, + ACTIONS(5919), 1, anon_sym_BQUOTE, - ACTIONS(7070), 1, - sym__special_character, - ACTIONS(7074), 1, + ACTIONS(6964), 1, sym_test_operator, - STATE(3430), 1, + STATE(2375), 1, aux_sym__literal_repeat1, - STATE(3548), 1, + STATE(2477), 1, sym_concatenation, - ACTIONS(5988), 2, + ACTIONS(5921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7068), 2, + ACTIONS(6960), 2, sym_number, sym_word, - ACTIONS(7072), 2, + ACTIONS(6962), 2, sym_raw_string, sym_ansi_c_string, - STATE(3432), 7, + STATE(2338), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -154195,17 +153776,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [146205] = 3, + [145651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 4, + ACTIONS(6682), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(933), 18, + ACTIONS(6684), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154222,17 +153802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146235] = 3, + anon_sym_BQUOTE, + [145681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 4, + ACTIONS(6678), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(929), 18, + ACTIONS(6680), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154249,55 +153829,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(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, - 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, + [145711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 4, + ACTIONS(6674), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(937), 18, + ACTIONS(6676), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154314,17 +153856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146347] = 3, + anon_sym_BQUOTE, + [145741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 4, + ACTIONS(6670), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(956), 18, + ACTIONS(6672), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154341,17 +153883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146377] = 3, + anon_sym_BQUOTE, + [145771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 4, + ACTIONS(6706), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(886), 18, + ACTIONS(6708), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154368,17 +153910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146407] = 3, + anon_sym_BQUOTE, + [145801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 4, + ACTIONS(6710), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(960), 18, + ACTIONS(6712), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154395,51 +153937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146437] = 14, - ACTIONS(59), 1, - sym_comment, - 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(7086), 1, - sym_test_operator, - STATE(3610), 1, - aux_sym__literal_repeat1, - 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, + [145831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6112), 2, + ACTIONS(6714), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6114), 20, + ACTIONS(6716), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -154460,111 +153965,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [146519] = 14, + [145861] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(6968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7004), 1, + ACTIONS(6970), 1, anon_sym_DOLLAR, - ACTIONS(7006), 1, + ACTIONS(6972), 1, sym__special_character, - ACTIONS(7008), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(6978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(6980), 1, anon_sym_BQUOTE, - ACTIONS(7092), 1, + ACTIONS(6984), 1, sym_test_operator, - STATE(2427), 1, + STATE(2388), 1, aux_sym__literal_repeat1, - STATE(2620), 1, + STATE(2717), 1, sym_concatenation, - ACTIONS(7016), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7088), 2, + ACTIONS(6966), 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, + ACTIONS(6976), 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, - STATE(3577), 1, - aux_sym__literal_repeat1, - STATE(3929), 1, - sym_concatenation, - ACTIONS(5149), 2, + ACTIONS(6982), 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, + STATE(2379), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -154572,15 +154003,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [146671] = 3, + [145913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 4, + ACTIONS(931), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(964), 18, + ACTIONS(929), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -154599,15 +154030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146701] = 3, + [145943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 4, + ACTIONS(927), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(968), 18, + ACTIONS(925), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -154626,37 +154057,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146731] = 14, - ACTIONS(59), 1, + [145973] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(6962), 1, + ACTIONS(6988), 1, + anon_sym_RBRACK, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6964), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR, - ACTIONS(6966), 1, - sym__special_character, - ACTIONS(6968), 1, + ACTIONS(6994), 1, anon_sym_DQUOTE, - ACTIONS(6972), 1, + ACTIONS(6998), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6974), 1, + ACTIONS(7000), 1, anon_sym_BQUOTE, - ACTIONS(7106), 1, + ACTIONS(7004), 1, sym_test_operator, - STATE(2444), 1, - aux_sym__literal_repeat1, - STATE(2761), 1, - sym_concatenation, - ACTIONS(6976), 2, + ACTIONS(6996), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7102), 2, + ACTIONS(6986), 4, + sym__special_character, sym_number, + sym__comment_word, sym_word, - ACTIONS(7104), 2, + STATE(3968), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [146021] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR, + ACTIONS(6994), 1, + anon_sym_DQUOTE, + ACTIONS(6998), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7000), 1, + anon_sym_BQUOTE, + ACTIONS(7004), 1, + sym_test_operator, + ACTIONS(7006), 1, + anon_sym_RBRACK, + ACTIONS(6996), 2, sym_raw_string, sym_ansi_c_string, - STATE(2453), 7, + ACTIONS(7002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6986), 4, + sym__special_character, + sym_number, + sym__comment_word, + sym_word, + STATE(3968), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -154664,13 +154129,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [146783] = 3, + [146069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 2, + ACTIONS(5771), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6582), 20, + ACTIONS(5769), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -154691,15 +154156,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [146813] = 3, + [146099] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7010), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7012), 1, + anon_sym_DOLLAR, + ACTIONS(7014), 1, + sym__special_character, + ACTIONS(7016), 1, + anon_sym_DQUOTE, + ACTIONS(7020), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7022), 1, + anon_sym_BQUOTE, + ACTIONS(7026), 1, + sym_test_operator, + STATE(2690), 1, + aux_sym__literal_repeat1, + STATE(2942), 1, + sym_concatenation, + ACTIONS(7008), 2, + sym_number, + sym_word, + ACTIONS(7018), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7024), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2701), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [146151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 4, + ACTIONS(923), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(972), 18, + ACTIONS(921), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -154718,15 +154221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146843] = 3, + [146181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 4, + ACTIONS(919), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(976), 18, + ACTIONS(917), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -154745,13 +154248,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146873] = 3, + [146211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 2, + ACTIONS(939), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6586), 20, + ACTIONS(937), 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, + [146241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5988), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -154772,15 +154302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [146903] = 3, + [146271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 4, + ACTIONS(951), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(980), 18, + ACTIONS(949), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -154799,15 +154329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146933] = 3, + [146301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 4, + ACTIONS(890), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(984), 18, + ACTIONS(888), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -154826,16 +154356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146963] = 3, + [146331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 2, + ACTIONS(1000), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6522), 20, + ACTIONS(998), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154852,17 +154383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [146993] = 3, + [146361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(996), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6408), 20, + ACTIONS(994), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154879,17 +154410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147023] = 3, + [146391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6388), 2, + ACTIONS(992), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6390), 20, + ACTIONS(990), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -154906,14 +154437,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147053] = 3, + [146421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(988), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(986), 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, + [146451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6384), 2, + ACTIONS(6810), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6386), 20, + ACTIONS(6812), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -154934,13 +154491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147083] = 3, + [146481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 2, + ACTIONS(6718), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6600), 20, + ACTIONS(6720), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -154961,37 +154518,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147113] = 14, + [146511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(984), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(982), 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, + [146541] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(6982), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6984), 1, + ACTIONS(5881), 1, anon_sym_DOLLAR, - ACTIONS(6986), 1, - sym__special_character, - ACTIONS(6988), 1, + ACTIONS(5885), 1, anon_sym_DQUOTE, - ACTIONS(6992), 1, + ACTIONS(5889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6994), 1, + ACTIONS(5891), 1, anon_sym_BQUOTE, - ACTIONS(7112), 1, + ACTIONS(7030), 1, + sym__special_character, + ACTIONS(7034), 1, sym_test_operator, - STATE(2604), 1, + STATE(3449), 1, aux_sym__literal_repeat1, - STATE(2891), 1, + STATE(3570), 1, sym_concatenation, - ACTIONS(6996), 2, + ACTIONS(5893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7108), 2, + ACTIONS(7028), 2, sym_number, sym_word, - ACTIONS(7110), 2, + ACTIONS(7032), 2, sym_raw_string, sym_ansi_c_string, - STATE(2579), 7, + STATE(3447), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -154999,15 +154583,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [147165] = 3, + [146593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 4, + ACTIONS(980), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(988), 18, + ACTIONS(978), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -155026,15 +154610,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147195] = 3, + [146623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 4, + ACTIONS(962), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(994), 18, + 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_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [146653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(968), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -155053,13 +154664,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147225] = 3, + [146683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 2, + ACTIONS(6722), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6416), 20, + ACTIONS(6724), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155080,15 +154691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147255] = 3, + [146713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 4, + ACTIONS(966), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(998), 18, + ACTIONS(964), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -155107,17 +154718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147285] = 3, + [146743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 4, + ACTIONS(6726), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1002), 18, + ACTIONS(6728), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155134,37 +154744,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147315] = 14, + anon_sym_BQUOTE, + [146773] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(6982), 1, + ACTIONS(7038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6984), 1, + ACTIONS(7040), 1, anon_sym_DOLLAR, - ACTIONS(6986), 1, + ACTIONS(7042), 1, sym__special_character, - ACTIONS(6988), 1, + ACTIONS(7044), 1, anon_sym_DQUOTE, - ACTIONS(6992), 1, + ACTIONS(7048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6994), 1, + ACTIONS(7050), 1, anon_sym_BQUOTE, - ACTIONS(7118), 1, + ACTIONS(7054), 1, sym_test_operator, - STATE(2588), 1, + STATE(2490), 1, aux_sym__literal_repeat1, - STATE(2982), 1, + STATE(2754), 1, sym_concatenation, - ACTIONS(6996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7114), 2, + ACTIONS(7036), 2, sym_number, sym_word, - ACTIONS(7116), 2, + ACTIONS(7046), 2, sym_raw_string, sym_ansi_c_string, - STATE(2696), 7, + ACTIONS(7052), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2493), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -155172,15 +154783,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [147367] = 3, + [146825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 4, + ACTIONS(962), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(902), 18, + ACTIONS(960), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -155199,16 +154810,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147397] = 3, + [146855] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(7060), 1, + sym_test_operator, + STATE(3538), 1, + aux_sym__literal_repeat1, + STATE(3648), 1, + sym_concatenation, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7056), 2, + sym_number, + sym_word, + ACTIONS(7058), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3557), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [146907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6298), 2, + ACTIONS(865), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6300), 20, + ACTIONS(863), 19, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155225,17 +154874,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147427] = 3, + sym__special_character, + [146937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 2, + ACTIONS(947), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6067), 20, + ACTIONS(945), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155252,55 +154902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - 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, + [146967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 2, + ACTIONS(902), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6790), 20, + ACTIONS(900), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155317,17 +154929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147539] = 3, + [146997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 2, + ACTIONS(1004), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6526), 20, + ACTIONS(1002), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155344,14 +154956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147569] = 3, + [147027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6738), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6500), 20, + ACTIONS(6740), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155372,16 +154983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147599] = 3, + [147057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5938), 2, + ACTIONS(915), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5936), 20, + ACTIONS(913), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155398,36 +155010,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147629] = 12, - ACTIONS(3), 1, + [147087] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(7028), 1, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5909), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7030), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR, - ACTIONS(7034), 1, - anon_sym_DQUOTE, - ACTIONS(7038), 1, + ACTIONS(5913), 1, + sym__special_character, + ACTIONS(5917), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, + ACTIONS(5919), 1, anon_sym_BQUOTE, - ACTIONS(7052), 1, + ACTIONS(7066), 1, sym_test_operator, - ACTIONS(7126), 1, - anon_sym_RBRACK, - ACTIONS(7042), 2, + STATE(2382), 1, + aux_sym__literal_repeat1, + STATE(2482), 1, + sym_concatenation, + ACTIONS(5921), 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, + ACTIONS(7062), 2, sym_number, - sym__comment_word, sym_word, - STATE(3893), 7, + ACTIONS(7064), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2367), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -155435,13 +155048,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [147677] = 3, + [147139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 2, + ACTIONS(6748), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6562), 20, + ACTIONS(6750), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155462,13 +155075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147707] = 3, + [147169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6752), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6330), 20, + ACTIONS(6754), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155489,13 +155102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147737] = 3, + [147199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6332), 2, + ACTIONS(6756), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6334), 20, + ACTIONS(6758), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155516,13 +155129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147767] = 3, + [147229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6392), 2, + ACTIONS(6766), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6394), 20, + ACTIONS(6768), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155543,13 +155156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147797] = 3, + [147259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 2, + ACTIONS(6776), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6616), 20, + ACTIONS(6778), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155570,16 +155183,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147827] = 3, + [147289] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR, + ACTIONS(6994), 1, + anon_sym_DQUOTE, + ACTIONS(6998), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7000), 1, + anon_sym_BQUOTE, + ACTIONS(7070), 1, + sym__special_character, + ACTIONS(7074), 1, + sym_test_operator, + STATE(3600), 1, + aux_sym__literal_repeat1, + STATE(4017), 1, + sym_concatenation, + ACTIONS(7002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7068), 2, + sym_number, + sym_word, + ACTIONS(7072), 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, + [147341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 2, + ACTIONS(976), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6706), 20, + ACTIONS(974), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155596,14 +155248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147857] = 3, + [147371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 2, + ACTIONS(6780), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6474), 20, + ACTIONS(6782), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155624,16 +155275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147887] = 3, + [147401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 2, + ACTIONS(943), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6664), 20, + ACTIONS(941), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155650,14 +155302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147917] = 3, + [147431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6778), 2, + ACTIONS(6956), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6780), 20, + ACTIONS(6958), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155678,13 +155329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147947] = 3, + [147461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(5167), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6646), 20, + ACTIONS(5165), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155705,16 +155356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147977] = 3, + [147491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 2, + ACTIONS(894), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6910), 20, + ACTIONS(892), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155731,38 +155383,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [148007] = 14, + [147521] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(7038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(7040), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(7042), 1, + sym__special_character, + ACTIONS(7044), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(7048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(7050), 1, anon_sym_BQUOTE, - ACTIONS(5625), 1, - sym__special_character, - ACTIONS(7132), 1, + ACTIONS(7080), 1, sym_test_operator, - STATE(3536), 1, + STATE(2494), 1, aux_sym__literal_repeat1, - STATE(3702), 1, + STATE(2749), 1, sym_concatenation, - ACTIONS(5149), 2, + ACTIONS(7052), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7128), 2, + ACTIONS(7076), 2, sym_number, sym_word, - ACTIONS(7130), 2, + ACTIONS(7078), 2, sym_raw_string, sym_ansi_c_string, - STATE(3532), 7, + STATE(2496), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -155770,13 +155421,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [148059] = 3, + [147573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6918), 2, + ACTIONS(6790), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6920), 20, + ACTIONS(6792), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155797,13 +155448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148089] = 3, + [147603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6922), 2, + ACTIONS(6794), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6924), 20, + ACTIONS(6796), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155824,13 +155475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148119] = 3, + [147633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 2, + ACTIONS(6798), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6738), 20, + ACTIONS(6800), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155851,16 +155502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148149] = 3, + [147663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6950), 2, + ACTIONS(875), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6952), 20, + ACTIONS(873), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -155877,65 +155529,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [147693] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR, + ACTIONS(6994), 1, + anon_sym_DQUOTE, + ACTIONS(6998), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7000), 1, anon_sym_BQUOTE, - [148179] = 3, + ACTIONS(7004), 1, + sym_test_operator, + ACTIONS(7082), 1, + anon_sym_RBRACK, + ACTIONS(6996), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6986), 4, + sym__special_character, + sym_number, + sym__comment_word, + sym_word, + STATE(3968), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [147741] = 12, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR, + ACTIONS(6994), 1, + anon_sym_DQUOTE, + ACTIONS(6998), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7000), 1, anon_sym_BQUOTE, - [148209] = 14, + ACTIONS(7004), 1, + sym_test_operator, + ACTIONS(7084), 1, + anon_sym_RBRACK, + ACTIONS(6996), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6986), 4, + sym__special_character, + sym_number, + sym__comment_word, + sym_word, + STATE(3968), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [147789] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7004), 1, + ACTIONS(5881), 1, anon_sym_DOLLAR, - ACTIONS(7006), 1, - sym__special_character, - ACTIONS(7008), 1, + ACTIONS(5885), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(5889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(5891), 1, anon_sym_BQUOTE, - ACTIONS(7138), 1, + ACTIONS(7030), 1, + sym__special_character, + ACTIONS(7090), 1, sym_test_operator, - STATE(2386), 1, + STATE(3446), 1, aux_sym__literal_repeat1, - STATE(2646), 1, + STATE(3552), 1, sym_concatenation, - ACTIONS(7016), 2, + ACTIONS(5893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7134), 2, + ACTIONS(7086), 2, sym_number, sym_word, - ACTIONS(7136), 2, + ACTIONS(7088), 2, sym_raw_string, sym_ansi_c_string, - STATE(2390), 7, + STATE(3455), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -155943,13 +155639,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [148261] = 3, + [147841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 2, + ACTIONS(5167), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6861), 20, + ACTIONS(5165), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155970,13 +155666,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148291] = 3, + [147871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 2, + ACTIONS(6802), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6842), 20, + ACTIONS(6804), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -155997,13 +155693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148321] = 3, + [147901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 2, + ACTIONS(6806), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6798), 20, + ACTIONS(6808), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -156024,13 +155720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148351] = 3, + [147931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6792), 2, + ACTIONS(6814), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6794), 20, + ACTIONS(6816), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -156051,16 +155747,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148381] = 3, + [147961] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5111), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(7096), 1, + sym_test_operator, + STATE(3588), 1, + aux_sym__literal_repeat1, + STATE(3944), 1, + sym_concatenation, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7092), 2, + sym_number, + sym_word, + ACTIONS(7094), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3597), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [148013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 2, + ACTIONS(898), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6684), 20, + ACTIONS(896), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -156077,17 +155812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [148411] = 3, + [148043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 2, + ACTIONS(909), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6654), 20, + ACTIONS(907), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -156104,14 +155839,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [148073] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7040), 1, + anon_sym_DOLLAR, + ACTIONS(7042), 1, + sym__special_character, + ACTIONS(7044), 1, + anon_sym_DQUOTE, + ACTIONS(7048), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7050), 1, anon_sym_BQUOTE, - [148441] = 3, + ACTIONS(7102), 1, + sym_test_operator, + STATE(2538), 1, + aux_sym__literal_repeat1, + STATE(2835), 1, + sym_concatenation, + ACTIONS(7052), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7098), 2, + sym_number, + sym_word, + ACTIONS(7100), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2540), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [148125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6396), 2, + ACTIONS(6928), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6398), 20, + ACTIONS(6930), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -156132,13 +155904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148471] = 3, + [148155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6896), 2, + ACTIONS(6924), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6898), 20, + ACTIONS(6926), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -156159,37 +155931,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148501] = 14, + [148185] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(6968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7004), 1, + ACTIONS(6970), 1, anon_sym_DOLLAR, - ACTIONS(7006), 1, - sym__special_character, - ACTIONS(7008), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(6978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(6980), 1, anon_sym_BQUOTE, - ACTIONS(7144), 1, + ACTIONS(7106), 1, + sym__special_character, + ACTIONS(7110), 1, sym_test_operator, - STATE(2370), 1, + STATE(2432), 1, aux_sym__literal_repeat1, - STATE(2709), 1, + STATE(2652), 1, sym_concatenation, - ACTIONS(7016), 2, + ACTIONS(6982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7140), 2, + ACTIONS(7104), 2, sym_number, sym_word, - ACTIONS(7142), 2, + ACTIONS(7108), 2, sym_raw_string, sym_ansi_c_string, - STATE(2433), 7, + STATE(2449), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156197,37 +155969,37 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [148553] = 14, + [148237] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(6962), 1, + ACTIONS(6968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6964), 1, + ACTIONS(6970), 1, anon_sym_DOLLAR, - ACTIONS(6966), 1, - sym__special_character, - ACTIONS(6968), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(6972), 1, + ACTIONS(6978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6974), 1, + ACTIONS(6980), 1, anon_sym_BQUOTE, - ACTIONS(7150), 1, + ACTIONS(7106), 1, + sym__special_character, + ACTIONS(7116), 1, sym_test_operator, - STATE(2519), 1, + STATE(2416), 1, aux_sym__literal_repeat1, - STATE(2793), 1, + STATE(2658), 1, sym_concatenation, - ACTIONS(6976), 2, + ACTIONS(6982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7146), 2, + ACTIONS(7112), 2, sym_number, sym_word, - ACTIONS(7148), 2, + ACTIONS(7114), 2, sym_raw_string, sym_ansi_c_string, - STATE(2543), 7, + STATE(2452), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156235,91 +156007,37 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [148605] = 3, - ACTIONS(3), 1, - sym_comment, - 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_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, + [148289] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(6968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7004), 1, + ACTIONS(6970), 1, anon_sym_DOLLAR, - ACTIONS(7008), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(6978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(6980), 1, anon_sym_BQUOTE, - ACTIONS(7154), 1, + ACTIONS(7106), 1, sym__special_character, - ACTIONS(7158), 1, + ACTIONS(7122), 1, sym_test_operator, - STATE(2427), 1, + STATE(2377), 1, aux_sym__literal_repeat1, - STATE(2620), 1, + STATE(2703), 1, sym_concatenation, - ACTIONS(7016), 2, + ACTIONS(6982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7152), 2, + ACTIONS(7118), 2, sym_number, sym_word, - ACTIONS(7156), 2, + ACTIONS(7120), 2, sym_raw_string, sym_ansi_c_string, - STATE(2450), 7, + STATE(2454), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156327,13 +156045,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [148717] = 3, + [148341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 2, + ACTIONS(6818), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6620), 20, + ACTIONS(6820), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -156354,13 +156072,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148747] = 3, + [148371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 2, + ACTIONS(6822), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6596), 20, + ACTIONS(6824), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -156381,13 +156099,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148777] = 3, + [148401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 2, + ACTIONS(6832), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6578), 20, + ACTIONS(6834), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -156408,13 +156126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148807] = 3, + [148431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 2, + ACTIONS(6836), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6412), 20, + ACTIONS(6838), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -156435,37 +156153,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148837] = 14, + [148461] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(6968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, + ACTIONS(6970), 1, anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(6972), 1, + sym__special_character, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(6978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(6980), 1, + anon_sym_BQUOTE, + ACTIONS(7128), 1, + sym_test_operator, + STATE(2377), 1, + aux_sym__literal_repeat1, + STATE(2703), 1, + sym_concatenation, + ACTIONS(6982), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7124), 2, + sym_number, + sym_word, + ACTIONS(7126), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2391), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [148513] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6970), 1, + anon_sym_DOLLAR, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6980), 1, anon_sym_BQUOTE, - ACTIONS(5625), 1, + ACTIONS(7106), 1, sym__special_character, - ACTIONS(7164), 1, + ACTIONS(7134), 1, sym_test_operator, - STATE(3556), 1, + STATE(2388), 1, aux_sym__literal_repeat1, - STATE(3672), 1, + STATE(2717), 1, sym_concatenation, - ACTIONS(5149), 2, + ACTIONS(6982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7160), 2, + ACTIONS(7130), 2, sym_number, sym_word, - ACTIONS(7162), 2, + ACTIONS(7132), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2457), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [148565] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6970), 1, + anon_sym_DOLLAR, + ACTIONS(6972), 1, + sym__special_character, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6980), 1, + anon_sym_BQUOTE, + ACTIONS(7140), 1, + sym_test_operator, + STATE(2416), 1, + aux_sym__literal_repeat1, + STATE(2658), 1, + sym_concatenation, + ACTIONS(6982), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7136), 2, + sym_number, + sym_word, + ACTIONS(7138), 2, sym_raw_string, sym_ansi_c_string, - STATE(3545), 7, + STATE(2414), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156473,13 +156267,13 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [148889] = 3, + [148617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 2, + ACTIONS(6914), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(6484), 20, + ACTIONS(6916), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -156500,37 +156294,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148919] = 14, + [148647] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7004), 1, + ACTIONS(5881), 1, anon_sym_DOLLAR, - ACTIONS(7008), 1, + ACTIONS(5885), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(5889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(5891), 1, anon_sym_BQUOTE, - ACTIONS(7154), 1, + ACTIONS(7030), 1, sym__special_character, - ACTIONS(7170), 1, + ACTIONS(7146), 1, sym_test_operator, - STATE(2416), 1, + STATE(3430), 1, aux_sym__literal_repeat1, - STATE(2688), 1, + STATE(3574), 1, sym_concatenation, - ACTIONS(7016), 2, + ACTIONS(5893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7166), 2, + ACTIONS(7142), 2, sym_number, sym_word, - ACTIONS(7168), 2, + ACTIONS(7144), 2, sym_raw_string, sym_ansi_c_string, - STATE(2455), 7, + STATE(3431), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156538,37 +156332,64 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [148971] = 14, + [148699] = 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_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_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, + [148729] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7004), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(7008), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(7154), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(7176), 1, + ACTIONS(7152), 1, sym_test_operator, - STATE(2386), 1, + STATE(3542), 1, aux_sym__literal_repeat1, - STATE(2646), 1, + STATE(3842), 1, sym_concatenation, - ACTIONS(7016), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7172), 2, + ACTIONS(7148), 2, sym_number, sym_word, - ACTIONS(7174), 2, + ACTIONS(7150), 2, sym_raw_string, sym_ansi_c_string, - STATE(2469), 7, + STATE(3534), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156576,37 +156397,64 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149023] = 14, + [148781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6910), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6912), 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, + [148811] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(7038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7004), 1, + ACTIONS(7040), 1, anon_sym_DOLLAR, - ACTIONS(7008), 1, + ACTIONS(7042), 1, + sym__special_character, + ACTIONS(7044), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(7048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(7050), 1, anon_sym_BQUOTE, - ACTIONS(7154), 1, - sym__special_character, - ACTIONS(7182), 1, + ACTIONS(7158), 1, sym_test_operator, - STATE(2370), 1, + STATE(2545), 1, aux_sym__literal_repeat1, - STATE(2709), 1, + STATE(2831), 1, sym_concatenation, - ACTIONS(7016), 2, + ACTIONS(7052), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7178), 2, + ACTIONS(7154), 2, sym_number, sym_word, - ACTIONS(7180), 2, + ACTIONS(7156), 2, sym_raw_string, sym_ansi_c_string, - STATE(2476), 7, + STATE(2547), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156614,37 +156462,37 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149075] = 14, + [148863] = 14, ACTIONS(59), 1, sym_comment, - ACTIONS(6962), 1, + ACTIONS(7010), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6964), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR, - ACTIONS(6966), 1, + ACTIONS(7014), 1, sym__special_character, - ACTIONS(6968), 1, + ACTIONS(7016), 1, anon_sym_DQUOTE, - ACTIONS(6972), 1, + ACTIONS(7020), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6974), 1, + ACTIONS(7022), 1, anon_sym_BQUOTE, - ACTIONS(7188), 1, + ACTIONS(7164), 1, sym_test_operator, - STATE(2532), 1, + STATE(2602), 1, aux_sym__literal_repeat1, - STATE(2747), 1, + STATE(2920), 1, sym_concatenation, - ACTIONS(6976), 2, + ACTIONS(7024), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7184), 2, + ACTIONS(7160), 2, sym_number, sym_word, - ACTIONS(7186), 2, + ACTIONS(7162), 2, sym_raw_string, sym_ansi_c_string, - STATE(2525), 7, + STATE(2598), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156652,16 +156500,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149127] = 3, + [148915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6896), 3, + ACTIONS(6840), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6898), 18, + ACTIONS(6842), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -156678,16 +156526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [149156] = 3, + anon_sym_BQUOTE, + [148945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 3, + ACTIONS(6906), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6408), 18, + ACTIONS(6908), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -156704,33 +156553,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [149185] = 11, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [148975] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(5944), 1, + ACTIONS(6968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5946), 1, + ACTIONS(6970), 1, anon_sym_DOLLAR, - ACTIONS(5950), 1, + ACTIONS(6972), 1, + sym__special_character, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(5954), 1, + ACTIONS(6978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5956), 1, + ACTIONS(6980), 1, anon_sym_BQUOTE, - ACTIONS(7194), 1, + ACTIONS(7170), 1, sym_test_operator, - ACTIONS(5958), 2, + STATE(2432), 1, + aux_sym__literal_repeat1, + STATE(2652), 1, + sym_concatenation, + ACTIONS(6982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7190), 3, + ACTIONS(7166), 2, sym_number, - sym__comment_word, sym_word, - ACTIONS(7192), 3, - sym__special_character, + ACTIONS(7168), 2, sym_raw_string, sym_ansi_c_string, - STATE(1988), 7, + STATE(2424), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156738,101 +156592,199 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149230] = 11, + [149027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7034), 1, - anon_sym_DQUOTE, - ACTIONS(7038), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, + ACTIONS(6038), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6040), 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(7052), 1, - sym_test_operator, - ACTIONS(7196), 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, - ACTIONS(7050), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(3893), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [149275] = 11, + [149057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5831), 1, - anon_sym_DQUOTE, - ACTIONS(5835), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5837), 1, + ACTIONS(6844), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6846), 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(7202), 1, - sym_test_operator, - 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, - sym_raw_string, - sym_ansi_c_string, - STATE(617), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [149320] = 11, + [149087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6654), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6656), 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, + [149117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6888), 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, + [149147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6049), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6051), 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, + [149177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, + ACTIONS(6882), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6884), 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, + [149207] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7010), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5855), 1, + ACTIONS(7012), 1, + anon_sym_DOLLAR, + ACTIONS(7014), 1, + sym__special_character, + ACTIONS(7016), 1, anon_sym_DQUOTE, - ACTIONS(5859), 1, + ACTIONS(7020), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5861), 1, + ACTIONS(7022), 1, anon_sym_BQUOTE, - ACTIONS(7206), 1, - anon_sym_DOLLAR, - ACTIONS(7210), 1, + ACTIONS(7176), 1, sym_test_operator, - ACTIONS(5863), 2, + STATE(2730), 1, + aux_sym__literal_repeat1, + STATE(2948), 1, + sym_concatenation, + ACTIONS(7024), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7204), 3, + ACTIONS(7172), 2, sym_number, - sym__comment_word, sym_word, - ACTIONS(7208), 3, - sym__special_character, + ACTIONS(7174), 2, sym_raw_string, sym_ansi_c_string, - STATE(1875), 7, + STATE(2727), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156840,33 +156792,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149365] = 11, + [149259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1611), 1, - anon_sym_DOLLAR, - ACTIONS(7214), 1, + ACTIONS(6878), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6880), 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, + [149289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6848), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6850), 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, + [149319] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7010), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7012), 1, + anon_sym_DOLLAR, + ACTIONS(7014), 1, + sym__special_character, + ACTIONS(7016), 1, anon_sym_DQUOTE, - ACTIONS(7220), 1, + ACTIONS(7020), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7222), 1, + ACTIONS(7022), 1, anon_sym_BQUOTE, - ACTIONS(7226), 1, + ACTIONS(7182), 1, sym_test_operator, - ACTIONS(7224), 2, + STATE(2609), 1, + aux_sym__literal_repeat1, + STATE(2915), 1, + sym_concatenation, + ACTIONS(7024), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7212), 3, + ACTIONS(7178), 2, sym_number, - sym__comment_word, sym_word, - ACTIONS(7216), 3, - sym__special_character, + ACTIONS(7180), 2, sym_raw_string, sym_ansi_c_string, - STATE(1642), 7, + STATE(2604), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156874,33 +156884,64 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149410] = 11, + [149371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(286), 1, + ACTIONS(6852), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6854), 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, + [149401] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(292), 1, + ACTIONS(6992), 1, + anon_sym_DOLLAR, + ACTIONS(6994), 1, anon_sym_DQUOTE, - ACTIONS(298), 1, + ACTIONS(6998), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(300), 1, + ACTIONS(7000), 1, anon_sym_BQUOTE, - ACTIONS(7230), 1, - anon_sym_DOLLAR, - ACTIONS(7234), 1, + ACTIONS(7070), 1, + sym__special_character, + ACTIONS(7188), 1, sym_test_operator, - ACTIONS(302), 2, + STATE(3609), 1, + aux_sym__literal_repeat1, + STATE(3934), 1, + sym_concatenation, + ACTIONS(7002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7228), 3, + ACTIONS(7184), 2, sym_number, - sym__comment_word, sym_word, - ACTIONS(7232), 3, - sym__special_character, + ACTIONS(7186), 2, sym_raw_string, sym_ansi_c_string, - STATE(642), 7, + STATE(3899), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156908,33 +156949,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149455] = 11, + [149453] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5944), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5950), 1, + ACTIONS(5809), 1, anon_sym_DQUOTE, - ACTIONS(5954), 1, + ACTIONS(5813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5956), 1, + ACTIONS(5815), 1, anon_sym_BQUOTE, - ACTIONS(7194), 1, - sym_test_operator, - ACTIONS(7236), 1, + ACTIONS(7192), 1, anon_sym_DOLLAR, - ACTIONS(5958), 2, + ACTIONS(7196), 1, + sym_test_operator, + ACTIONS(5817), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(7190), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7192), 3, + ACTIONS(7194), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1988), 7, + STATE(1923), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156942,33 +156983,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149500] = 11, + [149498] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5944), 1, + ACTIONS(7010), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5950), 1, + ACTIONS(7016), 1, anon_sym_DQUOTE, - ACTIONS(5954), 1, + ACTIONS(7020), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5956), 1, + ACTIONS(7022), 1, anon_sym_BQUOTE, - ACTIONS(7194), 1, - sym_test_operator, - ACTIONS(7238), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR, - ACTIONS(5958), 2, + ACTIONS(7204), 1, + sym_test_operator, + ACTIONS(7024), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7190), 3, + ACTIONS(7198), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7192), 3, + ACTIONS(7202), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1988), 7, + STATE(2797), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -156976,33 +157017,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149545] = 11, + [149543] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(41), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5730), 1, + ACTIONS(43), 1, + anon_sym_DOLLAR, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(5734), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5736), 1, + ACTIONS(55), 1, anon_sym_BQUOTE, - ACTIONS(7242), 1, - anon_sym_DOLLAR, - ACTIONS(7246), 1, + ACTIONS(7210), 1, sym_test_operator, - ACTIONS(5738), 2, + ACTIONS(57), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7240), 3, + ACTIONS(7206), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7244), 3, + ACTIONS(7208), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(971), 7, + STATE(1634), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157010,59 +157051,33 @@ static const uint16_t ts_small_parse_table[] = { 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, + [149588] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 1, - anon_sym_DOLLAR, - ACTIONS(7250), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7254), 1, + ACTIONS(5805), 1, + anon_sym_DOLLAR, + ACTIONS(5809), 1, anon_sym_DQUOTE, - ACTIONS(7256), 1, + ACTIONS(5813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7258), 1, + ACTIONS(5815), 1, anon_sym_BQUOTE, - ACTIONS(7262), 1, + ACTIONS(7196), 1, sym_test_operator, - ACTIONS(7260), 2, + ACTIONS(5817), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7248), 3, + ACTIONS(7190), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7252), 3, + ACTIONS(7194), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1156), 7, + STATE(1923), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157070,197 +157085,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149664] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + [149633] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, + ACTIONS(7038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7040), 1, + anon_sym_DOLLAR, + ACTIONS(7044), 1, anon_sym_DQUOTE, - ACTIONS(7220), 1, + ACTIONS(7048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7222), 1, + ACTIONS(7050), 1, anon_sym_BQUOTE, - ACTIONS(7226), 1, + ACTIONS(7216), 1, sym_test_operator, - ACTIONS(7264), 1, - anon_sym_DOLLAR, - ACTIONS(7224), 2, + ACTIONS(7052), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(7212), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7216), 3, + ACTIONS(7214), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1642), 7, + STATE(2591), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, - sym_command_substitution, - sym_process_substitution, - [149738] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + sym_command_substitution, + sym_process_substitution, + [149678] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(47), 1, + ACTIONS(5885), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(5889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(5891), 1, anon_sym_BQUOTE, - ACTIONS(7268), 1, + ACTIONS(7220), 1, anon_sym_DOLLAR, - ACTIONS(7272), 1, + ACTIONS(7224), 1, sym_test_operator, - ACTIONS(57), 2, + ACTIONS(5893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7266), 3, + ACTIONS(7218), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7270), 3, + ACTIONS(7222), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1686), 7, + STATE(3474), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157268,33 +157153,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149899] = 11, + [149723] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7218), 1, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(7220), 1, + ACTIONS(802), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7222), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(7226), 1, - sym_test_operator, - ACTIONS(7274), 1, + ACTIONS(7228), 1, anon_sym_DOLLAR, - ACTIONS(7224), 2, + ACTIONS(7232), 1, + sym_test_operator, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7212), 3, + ACTIONS(7226), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7216), 3, + ACTIONS(7230), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1642), 7, + STATE(1803), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157302,33 +157187,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [149944] = 11, + [149768] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7008), 1, + ACTIONS(798), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(802), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(7278), 1, - anon_sym_DOLLAR, - ACTIONS(7282), 1, + ACTIONS(7232), 1, sym_test_operator, - ACTIONS(7016), 2, + ACTIONS(7234), 1, + anon_sym_DOLLAR, + ACTIONS(806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7276), 3, + ACTIONS(7226), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7280), 3, + ACTIONS(7230), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2504), 7, + STATE(1803), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157336,66 +157221,48 @@ static const uint16_t ts_small_parse_table[] = { 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, + [149813] = 11, 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(1241), 1, + anon_sym_DOLLAR, + ACTIONS(6008), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6012), 1, + anon_sym_DQUOTE, + ACTIONS(6016), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6018), 1, + anon_sym_BQUOTE, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(6020), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7236), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7238), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1865), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 3, + ACTIONS(5167), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6642), 18, + ACTIONS(5165), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -157414,33 +157281,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [150076] = 11, + [149887] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5980), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(5984), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5986), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(7286), 1, + ACTIONS(7244), 1, anon_sym_DOLLAR, - ACTIONS(7290), 1, + ACTIONS(7248), 1, sym_test_operator, - ACTIONS(5988), 2, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7284), 3, + ACTIONS(7242), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7288), 3, + ACTIONS(7246), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3490), 7, + STATE(3982), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157448,33 +157315,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150121] = 11, + [149932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, + ACTIONS(6008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5980), 1, + ACTIONS(6012), 1, anon_sym_DQUOTE, - ACTIONS(5984), 1, + ACTIONS(6016), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5986), 1, + ACTIONS(6018), 1, anon_sym_BQUOTE, - ACTIONS(7290), 1, + ACTIONS(7240), 1, sym_test_operator, - ACTIONS(7292), 1, + ACTIONS(7250), 1, anon_sym_DOLLAR, - ACTIONS(5988), 2, + ACTIONS(6020), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7284), 3, + ACTIONS(7236), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7288), 3, + ACTIONS(7238), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3490), 7, + STATE(1865), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157482,59 +157349,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150166] = 3, + [149977] = 11, ACTIONS(3), 1, sym_comment, - 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(7254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7256), 1, + anon_sym_DOLLAR, + ACTIONS(7260), 1, + anon_sym_DQUOTE, + ACTIONS(7262), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7264), 1, + anon_sym_BQUOTE, + ACTIONS(7268), 1, + sym_test_operator, + ACTIONS(7266), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7252), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7258), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2008), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150022] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(7254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7260), 1, + anon_sym_DQUOTE, + ACTIONS(7262), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7264), 1, + anon_sym_BQUOTE, + ACTIONS(7268), 1, + sym_test_operator, + ACTIONS(7270), 1, anon_sym_DOLLAR, - ACTIONS(7296), 1, + ACTIONS(7266), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7252), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7258), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2008), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150067] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7300), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(7302), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7304), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(7308), 1, + ACTIONS(7248), 1, sym_test_operator, - ACTIONS(7306), 2, + ACTIONS(7272), 1, + anon_sym_DOLLAR, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7294), 3, + ACTIONS(7242), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7298), 3, + ACTIONS(7246), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2084), 7, + STATE(3982), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157542,33 +157451,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150240] = 11, + [150112] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(286), 1, + ACTIONS(5411), 1, + anon_sym_DQUOTE, + ACTIONS(5909), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(288), 1, + ACTIONS(5917), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5919), 1, + anon_sym_BQUOTE, + ACTIONS(7276), 1, anon_sym_DOLLAR, - ACTIONS(292), 1, + ACTIONS(7280), 1, + sym_test_operator, + ACTIONS(5921), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7274), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7278), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2404), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150157] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5411), 1, anon_sym_DQUOTE, - ACTIONS(298), 1, + ACTIONS(5909), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5917), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(300), 1, + ACTIONS(5919), 1, anon_sym_BQUOTE, - ACTIONS(7234), 1, + ACTIONS(7280), 1, sym_test_operator, - ACTIONS(302), 2, + ACTIONS(7282), 1, + anon_sym_DOLLAR, + ACTIONS(5921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7228), 3, + ACTIONS(7274), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7232), 3, + ACTIONS(7278), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(642), 7, + STATE(2404), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157576,33 +157519,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150285] = 11, + [150202] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7008), 1, + ACTIONS(5885), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(5889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(5891), 1, anon_sym_BQUOTE, - ACTIONS(7282), 1, + ACTIONS(7224), 1, sym_test_operator, - ACTIONS(7310), 1, + ACTIONS(7284), 1, anon_sym_DOLLAR, - ACTIONS(7016), 2, + ACTIONS(5893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7276), 3, + ACTIONS(7218), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7280), 3, + ACTIONS(7222), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2504), 7, + STATE(3474), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157610,33 +157553,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150330] = 11, + [150247] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 1, + ACTIONS(6008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5439), 1, + ACTIONS(6012), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(6016), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(6018), 1, anon_sym_BQUOTE, - ACTIONS(7314), 1, - anon_sym_DOLLAR, - ACTIONS(7318), 1, + ACTIONS(7240), 1, sym_test_operator, - ACTIONS(5447), 2, + ACTIONS(7286), 1, + anon_sym_DOLLAR, + ACTIONS(6020), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7312), 3, + ACTIONS(7236), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7316), 3, + ACTIONS(7238), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(466), 7, + STATE(1865), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157644,33 +157587,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150375] = 11, + [150292] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(390), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(396), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(402), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(404), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(7322), 1, + ACTIONS(7290), 1, anon_sym_DOLLAR, - ACTIONS(7326), 1, + ACTIONS(7294), 1, sym_test_operator, - ACTIONS(406), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7320), 3, + ACTIONS(7288), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7324), 3, + ACTIONS(7292), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1015), 7, + STATE(3045), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157678,33 +157621,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150420] = 11, + [150337] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 1, + ACTIONS(5829), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5831), 1, + anon_sym_DOLLAR, + ACTIONS(5835), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(5839), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(5841), 1, anon_sym_BQUOTE, - ACTIONS(7318), 1, + ACTIONS(7300), 1, sym_test_operator, - ACTIONS(7328), 1, - anon_sym_DOLLAR, - ACTIONS(5447), 2, + ACTIONS(5843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7312), 3, + ACTIONS(7296), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7316), 3, + ACTIONS(7298), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(466), 7, + STATE(2078), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157712,14 +157655,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150465] = 3, + [150382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 3, + ACTIONS(5167), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6842), 18, + ACTIONS(5165), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -157738,33 +157681,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [150494] = 11, + [150411] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5884), 1, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5890), 1, + ACTIONS(6994), 1, anon_sym_DQUOTE, - ACTIONS(5894), 1, + ACTIONS(6998), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5896), 1, + ACTIONS(7000), 1, anon_sym_BQUOTE, - ACTIONS(7332), 1, - anon_sym_DOLLAR, - ACTIONS(7336), 1, + ACTIONS(7004), 1, sym_test_operator, - ACTIONS(5898), 2, + ACTIONS(7302), 1, + anon_sym_DOLLAR, + ACTIONS(7002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7330), 3, + ACTIONS(6986), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7334), 3, + ACTIONS(6996), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2067), 7, + STATE(3968), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157772,33 +157715,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150539] = 11, + [150456] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(810), 1, + ACTIONS(284), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(816), 1, + ACTIONS(290), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(298), 1, anon_sym_BQUOTE, - ACTIONS(7340), 1, + ACTIONS(7306), 1, anon_sym_DOLLAR, - ACTIONS(7344), 1, + ACTIONS(7310), 1, sym_test_operator, - ACTIONS(824), 2, + ACTIONS(300), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7338), 3, + ACTIONS(7304), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7342), 3, + ACTIONS(7308), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1777), 7, + STATE(627), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157806,33 +157749,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150584] = 11, + [150501] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5141), 1, + ACTIONS(6994), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(6998), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(7000), 1, anon_sym_BQUOTE, - ACTIONS(7348), 1, - anon_sym_DOLLAR, - ACTIONS(7352), 1, + ACTIONS(7004), 1, sym_test_operator, - ACTIONS(5149), 2, + ACTIONS(7312), 1, + anon_sym_DOLLAR, + ACTIONS(7002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7346), 3, + ACTIONS(6986), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7350), 3, + ACTIONS(6996), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3049), 7, + STATE(3968), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157840,33 +157783,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150629] = 11, + [150546] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5884), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5890), 1, + ACTIONS(5885), 1, anon_sym_DQUOTE, - ACTIONS(5894), 1, + ACTIONS(5889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5896), 1, + ACTIONS(5891), 1, anon_sym_BQUOTE, - ACTIONS(7336), 1, + ACTIONS(7224), 1, sym_test_operator, - ACTIONS(7354), 1, + ACTIONS(7314), 1, anon_sym_DOLLAR, - ACTIONS(5898), 2, + ACTIONS(5893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7330), 3, + ACTIONS(7218), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7334), 3, + ACTIONS(7222), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2067), 7, + STATE(3474), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157874,33 +157817,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150674] = 11, + [150591] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(47), 1, + ACTIONS(131), 1, + anon_sym_DOLLAR, + ACTIONS(135), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(143), 1, anon_sym_BQUOTE, - ACTIONS(7272), 1, + ACTIONS(7320), 1, sym_test_operator, - ACTIONS(7356), 1, + ACTIONS(145), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7316), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7318), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(285), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150636] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5879), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5881), 1, anon_sym_DOLLAR, - ACTIONS(57), 2, + ACTIONS(5885), 1, + anon_sym_DQUOTE, + ACTIONS(5889), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5891), 1, + anon_sym_BQUOTE, + ACTIONS(7224), 1, + sym_test_operator, + ACTIONS(5893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7266), 3, + ACTIONS(7218), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7270), 3, + ACTIONS(7222), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1686), 7, + STATE(3474), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157908,14 +157885,40 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150719] = 3, + [150681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6798), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6800), 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, + [150710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 3, + ACTIONS(6780), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6586), 18, + ACTIONS(6782), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -157934,33 +157937,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [150748] = 11, + [150739] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(776), 1, + ACTIONS(164), 1, + anon_sym_DOLLAR, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(780), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(7360), 1, - anon_sym_DOLLAR, - ACTIONS(7364), 1, + ACTIONS(7326), 1, sym_test_operator, - ACTIONS(788), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7358), 3, + ACTIONS(7322), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7362), 3, + ACTIONS(7324), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1748), 7, + STATE(686), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -157968,33 +157971,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150793] = 11, + [150784] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5976), 1, + ACTIONS(7332), 1, anon_sym_DOLLAR, - ACTIONS(5980), 1, + ACTIONS(7336), 1, anon_sym_DQUOTE, - ACTIONS(5984), 1, + ACTIONS(7338), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5986), 1, + ACTIONS(7340), 1, anon_sym_BQUOTE, - ACTIONS(7290), 1, + ACTIONS(7344), 1, sym_test_operator, - ACTIONS(5988), 2, + ACTIONS(7342), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7284), 3, + ACTIONS(7328), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7288), 3, + ACTIONS(7334), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3490), 7, + STATE(1264), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158002,33 +158005,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150838] = 11, + [150829] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7028), 1, + ACTIONS(5672), 1, + anon_sym_DOLLAR, + ACTIONS(6352), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6356), 1, anon_sym_DQUOTE, - ACTIONS(7038), 1, + ACTIONS(6360), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, + ACTIONS(6362), 1, anon_sym_BQUOTE, - ACTIONS(7052), 1, + ACTIONS(7350), 1, sym_test_operator, - ACTIONS(7366), 1, - anon_sym_DOLLAR, - ACTIONS(7042), 2, + ACTIONS(6364), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7046), 3, + ACTIONS(7346), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7050), 3, + ACTIONS(7348), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3893), 7, + STATE(3025), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158036,33 +158039,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150883] = 11, + [150874] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, - anon_sym_DOLLAR, - ACTIONS(5435), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(5443), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(7318), 1, + ACTIONS(7294), 1, sym_test_operator, - ACTIONS(5447), 2, + ACTIONS(7352), 1, + anon_sym_DOLLAR, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7312), 3, + ACTIONS(7288), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7316), 3, + ACTIONS(7292), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(466), 7, + STATE(3045), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158070,14 +158073,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [150928] = 3, + [150919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 3, + ACTIONS(6722), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6710), 18, + ACTIONS(6724), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -158096,33 +158099,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [150957] = 11, + [150948] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(810), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(812), 1, - anon_sym_DOLLAR, - ACTIONS(816), 1, + ACTIONS(6356), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(6360), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(6362), 1, anon_sym_BQUOTE, - ACTIONS(7344), 1, + ACTIONS(7350), 1, sym_test_operator, - ACTIONS(824), 2, + ACTIONS(7354), 1, + anon_sym_DOLLAR, + ACTIONS(6364), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7338), 3, + ACTIONS(7346), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7342), 3, + ACTIONS(7348), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1777), 7, + STATE(3025), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158130,14 +158133,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151002] = 3, + [150993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6298), 3, + ACTIONS(6776), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6300), 18, + ACTIONS(6778), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -158156,33 +158159,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [151031] = 11, + [151022] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(5885), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(5889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(5891), 1, anon_sym_BQUOTE, - ACTIONS(7370), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, + ACTIONS(7224), 1, sym_test_operator, - ACTIONS(768), 2, + ACTIONS(7356), 1, + anon_sym_DOLLAR, + ACTIONS(5893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7368), 3, + ACTIONS(7218), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7372), 3, + ACTIONS(7222), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(682), 7, + STATE(3474), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158190,33 +158193,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151076] = 11, + [151067] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(776), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(780), 1, + ACTIONS(101), 1, + anon_sym_DOLLAR, + ACTIONS(105), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(7364), 1, + ACTIONS(7362), 1, sym_test_operator, - ACTIONS(7376), 1, - anon_sym_DOLLAR, - ACTIONS(788), 2, + ACTIONS(115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(7358), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7362), 3, + ACTIONS(7360), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1748), 7, + STATE(236), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158224,14 +158227,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151121] = 3, + [151112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 3, + ACTIONS(6766), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6600), 18, + ACTIONS(6768), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -158250,33 +158253,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [151150] = 11, + [151141] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5914), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5916), 1, - anon_sym_DOLLAR, - ACTIONS(5920), 1, + ACTIONS(5783), 1, anon_sym_DQUOTE, - ACTIONS(5924), 1, + ACTIONS(5787), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5926), 1, + ACTIONS(5789), 1, anon_sym_BQUOTE, - ACTIONS(7382), 1, + ACTIONS(7366), 1, + anon_sym_DOLLAR, + ACTIONS(7370), 1, sym_test_operator, - ACTIONS(5928), 2, + ACTIONS(5791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7378), 3, + ACTIONS(7364), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7380), 3, + ACTIONS(7368), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1146), 7, + STATE(1225), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158284,85 +158287,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151195] = 3, + [151186] = 11, ACTIONS(3), 1, sym_comment, - 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(5803), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5809), 1, + anon_sym_DQUOTE, + ACTIONS(5813), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5815), 1, + anon_sym_BQUOTE, + ACTIONS(7196), 1, + sym_test_operator, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(5817), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7190), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7194), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1923), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [151231] = 11, 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(5942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5948), 1, + anon_sym_DQUOTE, + ACTIONS(5952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5954), 1, + anon_sym_BQUOTE, + ACTIONS(7376), 1, + anon_sym_DOLLAR, + ACTIONS(7380), 1, + sym_test_operator, + ACTIONS(5956), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7374), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7378), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1751), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [151276] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6304), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6306), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR, - ACTIONS(6310), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(6314), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(7388), 1, + ACTIONS(7294), 1, sym_test_operator, - ACTIONS(6318), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7384), 3, + ACTIONS(7288), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7386), 3, + ACTIONS(7292), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3971), 7, + STATE(3045), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158370,111 +158389,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151298] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + [151321] = 11, 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(6968), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6980), 1, + anon_sym_BQUOTE, + ACTIONS(7384), 1, + anon_sym_DOLLAR, + ACTIONS(7388), 1, + sym_test_operator, + ACTIONS(6982), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7382), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7386), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2502), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [151366] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(732), 1, + anon_sym_DOLLAR, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(135), 1, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(141), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(143), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(7392), 1, - anon_sym_DOLLAR, - ACTIONS(7396), 1, + ACTIONS(7394), 1, sym_test_operator, - ACTIONS(145), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(7390), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7394), 3, + ACTIONS(7392), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(279), 7, + STATE(472), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158482,59 +158457,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151430] = 3, + [151411] = 11, ACTIONS(3), 1, sym_comment, - 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_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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(6968), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6980), 1, + anon_sym_BQUOTE, + ACTIONS(7388), 1, + sym_test_operator, + ACTIONS(7396), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7382), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7386), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2502), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [151456] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5730), 1, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(5734), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5736), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(7246), 1, + ACTIONS(7394), 1, sym_test_operator, ACTIONS(7398), 1, anon_sym_DOLLAR, - ACTIONS(5738), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7240), 3, + ACTIONS(7390), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7244), 3, + ACTIONS(7392), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(971), 7, + STATE(472), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158542,33 +158525,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151504] = 11, + [151501] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5437), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5441), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5445), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5447), 1, anon_sym_BQUOTE, - ACTIONS(7352), 1, + ACTIONS(7394), 1, sym_test_operator, ACTIONS(7400), 1, anon_sym_DOLLAR, - ACTIONS(5149), 2, + ACTIONS(5449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7346), 3, + ACTIONS(7390), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7350), 3, + ACTIONS(7392), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3049), 7, + STATE(472), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158576,33 +158559,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151549] = 11, + [151546] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6304), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6310), 1, + ACTIONS(5779), 1, + anon_sym_DOLLAR, + ACTIONS(5783), 1, anon_sym_DQUOTE, - ACTIONS(6314), 1, + ACTIONS(5787), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, + ACTIONS(5789), 1, anon_sym_BQUOTE, - ACTIONS(7388), 1, + ACTIONS(7370), 1, sym_test_operator, - ACTIONS(7402), 1, - anon_sym_DOLLAR, - ACTIONS(6318), 2, + ACTIONS(5791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7384), 3, + ACTIONS(7364), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7386), 3, + ACTIONS(7368), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3971), 7, + STATE(1225), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158610,14 +158593,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151594] = 3, + [151591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 3, + ACTIONS(6802), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6616), 18, + ACTIONS(6804), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -158636,33 +158619,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [151623] = 11, + [151620] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5141), 1, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(7352), 1, - sym_test_operator, ACTIONS(7404), 1, anon_sym_DOLLAR, - ACTIONS(5149), 2, + ACTIONS(7408), 1, + sym_test_operator, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7346), 3, + ACTIONS(7402), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7350), 3, + ACTIONS(7406), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3049), 7, + STATE(1850), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158670,33 +158653,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151668] = 11, + [151665] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(5855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(131), 1, + ACTIONS(5859), 1, + anon_sym_DQUOTE, + ACTIONS(5863), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5865), 1, + anon_sym_BQUOTE, + ACTIONS(7412), 1, anon_sym_DOLLAR, - ACTIONS(135), 1, + ACTIONS(7416), 1, + sym_test_operator, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7410), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7414), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1818), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [151710] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6970), 1, + anon_sym_DOLLAR, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(141), 1, + ACTIONS(6978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(143), 1, + ACTIONS(6980), 1, anon_sym_BQUOTE, - ACTIONS(7396), 1, + ACTIONS(7388), 1, sym_test_operator, - ACTIONS(145), 2, + ACTIONS(6982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7390), 3, + ACTIONS(7382), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7386), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2502), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [151755] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5855), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5859), 1, + anon_sym_DQUOTE, + ACTIONS(5863), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5865), 1, + anon_sym_BQUOTE, + ACTIONS(7416), 1, + sym_test_operator, + ACTIONS(7418), 1, + anon_sym_DOLLAR, + ACTIONS(5867), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7410), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7394), 3, + ACTIONS(7414), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(279), 7, + STATE(1818), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158704,33 +158755,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151713] = 11, + [151800] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(810), 1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(816), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(820), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(822), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(7344), 1, + ACTIONS(7326), 1, sym_test_operator, - ACTIONS(7406), 1, + ACTIONS(7420), 1, anon_sym_DOLLAR, - ACTIONS(824), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7338), 3, + ACTIONS(7322), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7342), 3, + ACTIONS(7324), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1777), 7, + STATE(686), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158738,33 +158789,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151758] = 11, + [151845] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5855), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(5859), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5861), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(7210), 1, + ACTIONS(7326), 1, sym_test_operator, - ACTIONS(7408), 1, + ACTIONS(7422), 1, anon_sym_DOLLAR, - ACTIONS(5863), 2, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7204), 3, + ACTIONS(7322), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7208), 3, + ACTIONS(7324), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1875), 7, + STATE(686), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158772,7 +158823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151803] = 11, + [151890] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, @@ -158783,22 +158834,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(143), 1, anon_sym_BQUOTE, - ACTIONS(7396), 1, + ACTIONS(7320), 1, sym_test_operator, - ACTIONS(7410), 1, + ACTIONS(7424), 1, anon_sym_DOLLAR, ACTIONS(145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7390), 3, + ACTIONS(7316), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7394), 3, + ACTIONS(7318), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(279), 7, + STATE(285), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158806,33 +158857,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151848] = 11, + [151935] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5948), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5954), 1, anon_sym_BQUOTE, - ACTIONS(7352), 1, + ACTIONS(7380), 1, sym_test_operator, - ACTIONS(7412), 1, + ACTIONS(7426), 1, anon_sym_DOLLAR, - ACTIONS(5149), 2, + ACTIONS(5956), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7346), 3, + ACTIONS(7374), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7350), 3, + ACTIONS(7378), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3049), 7, + STATE(1751), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158840,33 +158891,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151893] = 11, + [151980] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 1, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5778), 1, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(5782), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5784), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(7416), 1, - anon_sym_DOLLAR, - ACTIONS(7420), 1, + ACTIONS(7248), 1, sym_test_operator, - ACTIONS(5786), 2, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7414), 3, + ACTIONS(7242), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7418), 3, + ACTIONS(7246), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1744), 7, + STATE(3982), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158874,33 +158925,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151938] = 11, + [152025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6812), 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, + [152054] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7008), 1, + ACTIONS(135), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(143), 1, anon_sym_BQUOTE, - ACTIONS(7282), 1, + ACTIONS(7320), 1, sym_test_operator, - ACTIONS(7422), 1, + ACTIONS(7428), 1, anon_sym_DOLLAR, - ACTIONS(7016), 2, + ACTIONS(145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7276), 3, + ACTIONS(7316), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7280), 3, + ACTIONS(7318), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2504), 7, + STATE(285), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158908,33 +158985,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [151983] = 11, + [152099] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(101), 1, - anon_sym_DOLLAR, - ACTIONS(105), 1, + ACTIONS(7336), 1, anon_sym_DQUOTE, - ACTIONS(111), 1, + ACTIONS(7338), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(113), 1, + ACTIONS(7340), 1, anon_sym_BQUOTE, - ACTIONS(7428), 1, + ACTIONS(7344), 1, sym_test_operator, - ACTIONS(115), 2, + ACTIONS(7430), 1, + anon_sym_DOLLAR, + ACTIONS(7342), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7424), 3, + ACTIONS(7328), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7426), 3, + ACTIONS(7334), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(238), 7, + STATE(1264), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158942,33 +159019,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152028] = 11, + [152144] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 1, + ACTIONS(7434), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6004), 1, + ACTIONS(7436), 1, + anon_sym_DOLLAR, + ACTIONS(7440), 1, anon_sym_DQUOTE, - ACTIONS(6008), 1, + ACTIONS(7442), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, + ACTIONS(7444), 1, anon_sym_BQUOTE, - ACTIONS(7432), 1, - anon_sym_DOLLAR, - ACTIONS(7436), 1, + ACTIONS(7448), 1, sym_test_operator, - ACTIONS(6012), 2, + ACTIONS(7446), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7430), 3, + ACTIONS(7432), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7434), 3, + ACTIONS(7438), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1723), 7, + STATE(2091), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -158976,33 +159053,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152073] = 11, + [152189] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 1, + ACTIONS(7434), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6004), 1, + ACTIONS(7440), 1, anon_sym_DQUOTE, - ACTIONS(6008), 1, + ACTIONS(7442), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, + ACTIONS(7444), 1, anon_sym_BQUOTE, - ACTIONS(7436), 1, + ACTIONS(7448), 1, sym_test_operator, - ACTIONS(7438), 1, + ACTIONS(7450), 1, anon_sym_DOLLAR, - ACTIONS(6012), 2, + ACTIONS(7446), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7430), 3, + ACTIONS(7432), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7434), 3, + ACTIONS(7438), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1723), 7, + STATE(2091), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159010,33 +159087,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152118] = 11, + [152234] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7296), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7300), 1, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(7302), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7304), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(7308), 1, + ACTIONS(7408), 1, sym_test_operator, - ACTIONS(7440), 1, + ACTIONS(7452), 1, anon_sym_DOLLAR, - ACTIONS(7306), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7294), 3, + ACTIONS(7402), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7298), 3, + ACTIONS(7406), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2084), 7, + STATE(1850), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159044,33 +159121,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152163] = 11, + [152279] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5778), 1, + ACTIONS(105), 1, anon_sym_DQUOTE, - ACTIONS(5782), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5784), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(7420), 1, + ACTIONS(7362), 1, sym_test_operator, - ACTIONS(7442), 1, + ACTIONS(7454), 1, anon_sym_DOLLAR, - ACTIONS(5786), 2, + ACTIONS(115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7414), 3, + ACTIONS(7358), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7418), 3, + ACTIONS(7360), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1744), 7, + STATE(236), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159078,33 +159155,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152208] = 11, + [152324] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(7458), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7008), 1, + ACTIONS(7460), 1, + anon_sym_DOLLAR, + ACTIONS(7464), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(7466), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(7468), 1, anon_sym_BQUOTE, - ACTIONS(7282), 1, + ACTIONS(7472), 1, sym_test_operator, - ACTIONS(7444), 1, - anon_sym_DOLLAR, - ACTIONS(7016), 2, + ACTIONS(7470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7276), 3, + ACTIONS(7456), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7280), 3, + ACTIONS(7462), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2504), 7, + STATE(1784), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159112,33 +159189,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152253] = 11, + [152369] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7296), 1, + ACTIONS(7458), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7300), 1, + ACTIONS(7464), 1, anon_sym_DQUOTE, - ACTIONS(7302), 1, + ACTIONS(7466), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7304), 1, + ACTIONS(7468), 1, anon_sym_BQUOTE, - ACTIONS(7308), 1, + ACTIONS(7472), 1, sym_test_operator, - ACTIONS(7446), 1, + ACTIONS(7474), 1, anon_sym_DOLLAR, - ACTIONS(7306), 2, + ACTIONS(7470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7294), 3, + ACTIONS(7456), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7298), 3, + ACTIONS(7462), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2084), 7, + STATE(1784), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159146,33 +159223,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152298] = 11, + [152414] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(286), 1, + ACTIONS(284), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(292), 1, + ACTIONS(290), 1, anon_sym_DQUOTE, - ACTIONS(298), 1, + ACTIONS(296), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(300), 1, + ACTIONS(298), 1, anon_sym_BQUOTE, - ACTIONS(7234), 1, + ACTIONS(7310), 1, sym_test_operator, - ACTIONS(7448), 1, + ACTIONS(7476), 1, anon_sym_DOLLAR, - ACTIONS(302), 2, + ACTIONS(300), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7228), 3, + ACTIONS(7304), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7232), 3, + ACTIONS(7308), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(642), 7, + STATE(627), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159180,14 +159257,92 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152343] = 3, + [152459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6726), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6728), 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] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6806), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6808), 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, + [152517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5988), 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, + [152546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6704), 3, + ACTIONS(6756), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6706), 18, + ACTIONS(6758), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159206,14 +159361,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [152372] = 3, + [152575] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 3, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(7480), 1, + anon_sym_DOLLAR, + ACTIONS(7484), 1, + sym_test_operator, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7478), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7482), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2299), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [152620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6814), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6432), 18, + ACTIONS(6816), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159232,14 +159421,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [152401] = 3, + [152649] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1960), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1964), 1, + anon_sym_BQUOTE, + ACTIONS(7484), 1, + sym_test_operator, + ACTIONS(7486), 1, + anon_sym_DOLLAR, + ACTIONS(1966), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7478), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7482), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2299), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [152694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 3, + ACTIONS(5771), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6620), 18, + ACTIONS(5769), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159258,14 +159481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [152430] = 3, + [152723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 3, + ACTIONS(6818), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6596), 18, + ACTIONS(6820), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159284,14 +159507,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [152459] = 3, + [152752] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(794), 1, + anon_sym_DOLLAR, + ACTIONS(798), 1, + anon_sym_DQUOTE, + ACTIONS(802), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(804), 1, + anon_sym_BQUOTE, + ACTIONS(7232), 1, + sym_test_operator, + ACTIONS(806), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7226), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7230), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1803), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [152797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 3, + ACTIONS(6822), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6578), 18, + ACTIONS(6824), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159310,33 +159567,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [152488] = 11, + [152826] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(7038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7004), 1, - anon_sym_DOLLAR, - ACTIONS(7008), 1, + ACTIONS(7044), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, + ACTIONS(7048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7014), 1, + ACTIONS(7050), 1, anon_sym_BQUOTE, - ACTIONS(7282), 1, + ACTIONS(7216), 1, sym_test_operator, - ACTIONS(7016), 2, + ACTIONS(7488), 1, + anon_sym_DOLLAR, + ACTIONS(7052), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7276), 3, + ACTIONS(7212), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7280), 3, + ACTIONS(7214), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2504), 7, + STATE(2591), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159344,14 +159601,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152533] = 3, + [152871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 3, + ACTIONS(6752), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6412), 18, + ACTIONS(6754), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159370,14 +159627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [152562] = 3, + [152900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 3, + ACTIONS(6832), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6738), 18, + ACTIONS(6834), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159396,67 +159653,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [152591] = 11, + [152929] = 3, 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(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, - 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(6928), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6930), 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, + [152958] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, + ACTIONS(7038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5980), 1, + ACTIONS(7044), 1, anon_sym_DQUOTE, - ACTIONS(5984), 1, + ACTIONS(7048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5986), 1, + ACTIONS(7050), 1, anon_sym_BQUOTE, - ACTIONS(7290), 1, + ACTIONS(7216), 1, sym_test_operator, - ACTIONS(7452), 1, + ACTIONS(7490), 1, anon_sym_DOLLAR, - ACTIONS(5988), 2, + ACTIONS(7052), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7284), 3, + ACTIONS(7212), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7288), 3, + ACTIONS(7214), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3490), 7, + STATE(2591), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159464,33 +159713,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152681] = 11, + [153003] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, + ACTIONS(7010), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(780), 1, + ACTIONS(7012), 1, + anon_sym_DOLLAR, + ACTIONS(7016), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + ACTIONS(7020), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(786), 1, + ACTIONS(7022), 1, anon_sym_BQUOTE, - ACTIONS(7364), 1, + ACTIONS(7204), 1, sym_test_operator, - ACTIONS(788), 2, + ACTIONS(7024), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7358), 3, + ACTIONS(7198), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7362), 3, + ACTIONS(7202), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1748), 7, + STATE(2797), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159498,33 +159747,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152726] = 11, + [153048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6962), 1, + ACTIONS(6836), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6838), 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, + [153077] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6964), 1, - anon_sym_DOLLAR, - ACTIONS(6968), 1, + ACTIONS(5732), 1, anon_sym_DQUOTE, - ACTIONS(6972), 1, + ACTIONS(5736), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6974), 1, + ACTIONS(5738), 1, anon_sym_BQUOTE, - ACTIONS(7458), 1, + ACTIONS(7494), 1, + anon_sym_DOLLAR, + ACTIONS(7498), 1, sym_test_operator, - ACTIONS(6976), 2, + ACTIONS(5740), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7454), 3, + ACTIONS(7492), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7456), 3, + ACTIONS(7496), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2603), 7, + STATE(1088), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159532,33 +159807,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152771] = 11, + [153122] = 3, + ACTIONS(3), 1, + sym_comment, + 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_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [153151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6844), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6846), 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, + [153180] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(222), 1, anon_sym_DOLLAR, - ACTIONS(5851), 1, + ACTIONS(822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5855), 1, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(5859), 1, + ACTIONS(830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5861), 1, + ACTIONS(832), 1, anon_sym_BQUOTE, - ACTIONS(7210), 1, + ACTIONS(7408), 1, sym_test_operator, - ACTIONS(5863), 2, + ACTIONS(834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7204), 3, + ACTIONS(7402), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7208), 3, + ACTIONS(7406), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1875), 7, + STATE(1850), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159566,33 +159893,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152816] = 11, + [153225] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(105), 1, + ACTIONS(6992), 1, + anon_sym_DOLLAR, + ACTIONS(6994), 1, anon_sym_DQUOTE, - ACTIONS(111), 1, + ACTIONS(6998), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(113), 1, + ACTIONS(7000), 1, anon_sym_BQUOTE, - ACTIONS(7428), 1, + ACTIONS(7004), 1, sym_test_operator, - ACTIONS(7460), 1, - anon_sym_DOLLAR, - ACTIONS(115), 2, + ACTIONS(7002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7424), 3, + ACTIONS(6986), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7426), 3, + ACTIONS(6996), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(238), 7, + STATE(3968), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159600,14 +159927,66 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152861] = 3, + [153270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6794), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6796), 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, + [153299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6924), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6926), 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, + [153328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 3, + ACTIONS(6956), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6538), 18, + ACTIONS(6958), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159626,33 +160005,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [152890] = 11, + [153357] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7028), 1, + ACTIONS(390), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7030), 1, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(7034), 1, + ACTIONS(396), 1, anon_sym_DQUOTE, - ACTIONS(7038), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, + ACTIONS(404), 1, + anon_sym_BQUOTE, + ACTIONS(7504), 1, + sym_test_operator, + ACTIONS(406), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7500), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7502), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1141), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [153402] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(284), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(286), 1, + anon_sym_DOLLAR, + ACTIONS(290), 1, + anon_sym_DQUOTE, + ACTIONS(296), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(298), 1, anon_sym_BQUOTE, - ACTIONS(7052), 1, + ACTIONS(7310), 1, sym_test_operator, - ACTIONS(7042), 2, + ACTIONS(300), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7046), 3, + ACTIONS(7304), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7050), 3, + ACTIONS(7308), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3893), 7, + STATE(627), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159660,33 +160073,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152935] = 11, + [153447] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5914), 1, + ACTIONS(5728), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5920), 1, + ACTIONS(5732), 1, anon_sym_DQUOTE, - ACTIONS(5924), 1, + ACTIONS(5736), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5926), 1, + ACTIONS(5738), 1, anon_sym_BQUOTE, - ACTIONS(7382), 1, + ACTIONS(7498), 1, sym_test_operator, - ACTIONS(7462), 1, + ACTIONS(7506), 1, anon_sym_DOLLAR, - ACTIONS(5928), 2, + ACTIONS(5740), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7378), 3, + ACTIONS(7492), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7380), 3, + ACTIONS(7496), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1146), 7, + STATE(1088), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159694,14 +160107,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [152980] = 3, + [153492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6049), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6474), 18, + ACTIONS(6051), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159720,33 +160133,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [153009] = 11, + [153521] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5914), 1, + ACTIONS(7010), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5920), 1, + ACTIONS(7016), 1, anon_sym_DQUOTE, - ACTIONS(5924), 1, + ACTIONS(7020), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5926), 1, + ACTIONS(7022), 1, anon_sym_BQUOTE, - ACTIONS(7382), 1, + ACTIONS(7204), 1, sym_test_operator, - ACTIONS(7464), 1, + ACTIONS(7508), 1, anon_sym_DOLLAR, - ACTIONS(5928), 2, + ACTIONS(7024), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7378), 3, + ACTIONS(7198), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7380), 3, + ACTIONS(7202), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1146), 7, + STATE(2797), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159754,40 +160167,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153054] = 3, - ACTIONS(3), 1, - sym_comment, - 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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, + [153566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 3, + ACTIONS(6748), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6654), 18, + ACTIONS(6750), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159806,14 +160193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [153112] = 3, + [153595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6524), 3, + ACTIONS(6670), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6526), 18, + ACTIONS(6672), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159832,67 +160219,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [153141] = 11, + [153624] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6310), 1, - anon_sym_DQUOTE, - ACTIONS(6314), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6316), 1, - anon_sym_BQUOTE, - ACTIONS(7388), 1, - sym_test_operator, - ACTIONS(7466), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR, - ACTIONS(6318), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7384), 3, - sym_number, - sym__comment_word, - sym_word, - ACTIONS(7386), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(3971), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [153186] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(194), 1, + ACTIONS(7254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(196), 1, - anon_sym_DOLLAR, - ACTIONS(200), 1, + ACTIONS(7260), 1, anon_sym_DQUOTE, - ACTIONS(206), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, + ACTIONS(7264), 1, anon_sym_BQUOTE, - ACTIONS(7472), 1, + ACTIONS(7268), 1, sym_test_operator, - ACTIONS(210), 2, + ACTIONS(7266), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7468), 3, + ACTIONS(7252), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7470), 3, + ACTIONS(7258), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1767), 7, + STATE(2008), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -159900,14 +160253,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153231] = 3, + [153669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 3, + ACTIONS(6738), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6500), 18, + ACTIONS(6740), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159926,14 +160279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [153260] = 3, + [153698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 3, + ACTIONS(6038), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6484), 18, + ACTIONS(6040), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -159952,67 +160305,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [153289] = 11, + [153727] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5884), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5886), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - ACTIONS(5890), 1, - anon_sym_DQUOTE, - ACTIONS(5894), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5896), 1, - anon_sym_BQUOTE, - 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, - ACTIONS(7334), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2067), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [153334] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1942), 1, + ACTIONS(7434), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1948), 1, + ACTIONS(7440), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(7442), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(7444), 1, anon_sym_BQUOTE, - ACTIONS(7476), 1, - anon_sym_DOLLAR, - ACTIONS(7480), 1, + ACTIONS(7448), 1, sym_test_operator, - ACTIONS(1958), 2, + ACTIONS(7446), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7474), 3, + ACTIONS(7432), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7478), 3, + ACTIONS(7438), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2264), 7, + STATE(2091), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160020,33 +160339,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153379] = 11, + [153772] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7254), 1, + ACTIONS(5411), 1, anon_sym_DQUOTE, - ACTIONS(7256), 1, + ACTIONS(5909), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5911), 1, + anon_sym_DOLLAR, + ACTIONS(5917), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7258), 1, + ACTIONS(5919), 1, anon_sym_BQUOTE, - ACTIONS(7262), 1, + ACTIONS(7280), 1, sym_test_operator, - ACTIONS(7482), 1, - anon_sym_DOLLAR, - ACTIONS(7260), 2, + ACTIONS(5921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7248), 3, + ACTIONS(7274), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7252), 3, + ACTIONS(7278), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1156), 7, + STATE(2404), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160054,14 +160373,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153424] = 3, + [153817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6112), 3, + ACTIONS(6848), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6114), 18, + ACTIONS(6850), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -160080,33 +160399,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [153453] = 11, + [153846] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, - anon_sym_DQUOTE, - ACTIONS(5800), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5808), 1, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(111), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5810), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(7486), 1, - anon_sym_DOLLAR, - ACTIONS(7490), 1, + ACTIONS(7362), 1, sym_test_operator, - ACTIONS(5812), 2, + ACTIONS(7510), 1, + anon_sym_DOLLAR, + ACTIONS(115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7484), 3, + ACTIONS(7358), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7488), 3, + ACTIONS(7360), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2420), 7, + STATE(236), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160114,33 +160433,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153498] = 11, + [153891] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, + ACTIONS(1104), 1, + anon_sym_DOLLAR, + ACTIONS(5728), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5980), 1, + ACTIONS(5732), 1, anon_sym_DQUOTE, - ACTIONS(5984), 1, + ACTIONS(5736), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5986), 1, + ACTIONS(5738), 1, anon_sym_BQUOTE, - ACTIONS(7290), 1, + ACTIONS(7498), 1, sym_test_operator, - ACTIONS(7492), 1, - anon_sym_DOLLAR, - ACTIONS(5988), 2, + ACTIONS(5740), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7284), 3, + ACTIONS(7492), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7288), 3, + ACTIONS(7496), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3490), 7, + STATE(1088), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160148,33 +160467,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153543] = 11, + [153936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(6852), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6854), 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, + [153965] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5777), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7254), 1, + ACTIONS(5783), 1, anon_sym_DQUOTE, - ACTIONS(7256), 1, + ACTIONS(5787), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7258), 1, + ACTIONS(5789), 1, anon_sym_BQUOTE, - ACTIONS(7262), 1, + ACTIONS(7370), 1, sym_test_operator, - ACTIONS(7494), 1, + ACTIONS(7512), 1, anon_sym_DOLLAR, - ACTIONS(7260), 2, + ACTIONS(5791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7248), 3, + ACTIONS(7364), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7252), 3, + ACTIONS(7368), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1156), 7, + STATE(1225), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160182,33 +160527,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153588] = 11, + [154010] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, + ACTIONS(41), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1948), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1952), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, + ACTIONS(55), 1, anon_sym_BQUOTE, - ACTIONS(7480), 1, + ACTIONS(7210), 1, sym_test_operator, - ACTIONS(7496), 1, + ACTIONS(7514), 1, anon_sym_DOLLAR, - ACTIONS(1958), 2, + ACTIONS(57), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7474), 3, + ACTIONS(7206), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7478), 3, + ACTIONS(7208), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2264), 7, + STATE(1634), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160216,33 +160561,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153633] = 11, + [154055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(390), 1, + ACTIONS(6654), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6656), 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, + [154084] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6352), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(396), 1, + ACTIONS(6356), 1, anon_sym_DQUOTE, - ACTIONS(402), 1, + ACTIONS(6360), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(404), 1, + ACTIONS(6362), 1, anon_sym_BQUOTE, - ACTIONS(7326), 1, + ACTIONS(7350), 1, sym_test_operator, - ACTIONS(7498), 1, + ACTIONS(7516), 1, anon_sym_DOLLAR, - ACTIONS(406), 2, + ACTIONS(6364), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7320), 3, + ACTIONS(7346), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7324), 3, + ACTIONS(7348), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1015), 7, + STATE(3025), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160250,33 +160621,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153678] = 11, + [154129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6674), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6676), 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, + [154158] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6962), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6968), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(6972), 1, + ACTIONS(5119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6974), 1, + ACTIONS(5121), 1, anon_sym_BQUOTE, - ACTIONS(7458), 1, + ACTIONS(7294), 1, sym_test_operator, - ACTIONS(7500), 1, + ACTIONS(7518), 1, anon_sym_DOLLAR, - ACTIONS(6976), 2, + ACTIONS(5123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7454), 3, + ACTIONS(7288), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7456), 3, + ACTIONS(7292), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2603), 7, + STATE(3045), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160284,14 +160681,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153723] = 3, + [154203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 3, + ACTIONS(6718), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6562), 18, + ACTIONS(6720), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -160310,33 +160707,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [153752] = 11, + [154232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, - anon_sym_DQUOTE, - ACTIONS(5800), 1, + ACTIONS(6714), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6716), 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, + [154261] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5802), 1, - anon_sym_DOLLAR, - ACTIONS(5808), 1, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5810), 1, + ACTIONS(55), 1, anon_sym_BQUOTE, - ACTIONS(7490), 1, + ACTIONS(7210), 1, sym_test_operator, - ACTIONS(5812), 2, + ACTIONS(7520), 1, + anon_sym_DOLLAR, + ACTIONS(57), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7484), 3, + ACTIONS(7206), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7488), 3, + ACTIONS(7208), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2420), 7, + STATE(1634), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160344,33 +160767,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153797] = 11, + [154306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6910), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6912), 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, + [154335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6856), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6858), 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, + [154364] = 11, ACTIONS(3), 1, sym_comment, 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(7326), 1, + ACTIONS(7504), 1, sym_test_operator, + ACTIONS(7522), 1, + anon_sym_DOLLAR, ACTIONS(406), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7320), 3, + ACTIONS(7500), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7324), 3, + ACTIONS(7502), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1015), 7, + STATE(1141), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160378,33 +160853,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153842] = 11, + [154409] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, - anon_sym_DOLLAR, - ACTIONS(6666), 1, + ACTIONS(390), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6670), 1, + ACTIONS(396), 1, anon_sym_DQUOTE, - ACTIONS(6674), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6676), 1, + ACTIONS(404), 1, anon_sym_BQUOTE, - ACTIONS(7506), 1, + ACTIONS(7504), 1, sym_test_operator, - ACTIONS(6678), 2, + ACTIONS(7524), 1, + anon_sym_DOLLAR, + ACTIONS(406), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7502), 3, + ACTIONS(7500), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7504), 3, + ACTIONS(7502), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2994), 7, + STATE(1141), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160412,33 +160887,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153887] = 11, + [154454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(6678), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6680), 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, + [154483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6888), 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, + [154512] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(5944), 1, + anon_sym_DOLLAR, + ACTIONS(5948), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(5952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(5954), 1, anon_sym_BQUOTE, - ACTIONS(7374), 1, + ACTIONS(7380), 1, sym_test_operator, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - ACTIONS(768), 2, + ACTIONS(5956), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7368), 3, + ACTIONS(7374), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7372), 3, + ACTIONS(7378), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(682), 7, + STATE(1751), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160446,33 +160973,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153932] = 11, + [154557] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 1, + ACTIONS(5829), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5774), 1, - anon_sym_DOLLAR, - ACTIONS(5778), 1, + ACTIONS(5835), 1, anon_sym_DQUOTE, - ACTIONS(5782), 1, + ACTIONS(5839), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5784), 1, + ACTIONS(5841), 1, anon_sym_BQUOTE, - ACTIONS(7420), 1, + ACTIONS(7300), 1, sym_test_operator, - ACTIONS(5786), 2, + ACTIONS(7526), 1, + anon_sym_DOLLAR, + ACTIONS(5843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7414), 3, + ACTIONS(7296), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7418), 3, + ACTIONS(7298), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1744), 7, + STATE(2078), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160480,33 +161007,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [153977] = 11, + [154602] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5831), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(5835), 1, + ACTIONS(6978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5837), 1, + ACTIONS(6980), 1, anon_sym_BQUOTE, - ACTIONS(7202), 1, + ACTIONS(7388), 1, sym_test_operator, - ACTIONS(7510), 1, + ACTIONS(7528), 1, anon_sym_DOLLAR, - ACTIONS(5839), 2, + ACTIONS(6982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7198), 3, + ACTIONS(7382), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7200), 3, + ACTIONS(7386), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(617), 7, + STATE(2502), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160514,14 +161041,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154022] = 3, + [154647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 3, + ACTIONS(6882), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6582), 18, + ACTIONS(6884), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -160540,67 +161067,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [154051] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1942), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1944), 1, - anon_sym_DOLLAR, - ACTIONS(1948), 1, - anon_sym_DQUOTE, - ACTIONS(1952), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1956), 1, - anon_sym_BQUOTE, - ACTIONS(7480), 1, - sym_test_operator, - ACTIONS(1958), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, - [154096] = 11, + [154676] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 1, + ACTIONS(5968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6670), 1, + ACTIONS(5972), 1, anon_sym_DQUOTE, - ACTIONS(6674), 1, + ACTIONS(5976), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6676), 1, + ACTIONS(5978), 1, anon_sym_BQUOTE, - ACTIONS(7506), 1, - sym_test_operator, - ACTIONS(7512), 1, + ACTIONS(7532), 1, anon_sym_DOLLAR, - ACTIONS(6678), 2, + ACTIONS(7536), 1, + sym_test_operator, + ACTIONS(5980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7502), 3, + ACTIONS(7530), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7504), 3, + ACTIONS(7534), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2994), 7, + STATE(683), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160608,14 +161101,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154141] = 3, + [154721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6792), 3, + ACTIONS(6682), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6794), 18, + ACTIONS(6684), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -160634,48 +161127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [154170] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7516), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7518), 1, - anon_sym_DOLLAR, - ACTIONS(7522), 1, - anon_sym_DQUOTE, - ACTIONS(7524), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7526), 1, - anon_sym_BQUOTE, - ACTIONS(7530), 1, - sym_test_operator, - ACTIONS(7528), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7514), 3, - sym_number, - sym__comment_word, - sym_word, - ACTIONS(7520), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1934), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [154215] = 3, + [154750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 3, + ACTIONS(6878), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6798), 18, + ACTIONS(6880), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -160694,33 +161153,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [154244] = 11, + [154779] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(1950), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5831), 1, + ACTIONS(1952), 1, + anon_sym_DOLLAR, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(5835), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5837), 1, + ACTIONS(1964), 1, anon_sym_BQUOTE, - ACTIONS(7202), 1, + ACTIONS(7484), 1, sym_test_operator, - ACTIONS(7532), 1, - anon_sym_DOLLAR, - ACTIONS(5839), 2, + ACTIONS(1966), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7198), 3, + ACTIONS(7478), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7200), 3, + ACTIONS(7482), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(617), 7, + STATE(2299), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160728,33 +161187,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154289] = 11, + [154824] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(164), 1, + ACTIONS(1605), 1, anon_sym_DOLLAR, - ACTIONS(756), 1, + ACTIONS(7458), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(760), 1, + ACTIONS(7464), 1, anon_sym_DQUOTE, - ACTIONS(764), 1, + ACTIONS(7466), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(766), 1, + ACTIONS(7468), 1, anon_sym_BQUOTE, - ACTIONS(7374), 1, + ACTIONS(7472), 1, sym_test_operator, - ACTIONS(768), 2, + ACTIONS(7470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7368), 3, + ACTIONS(7456), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7372), 3, + ACTIONS(7462), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(682), 7, + STATE(1784), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160762,67 +161221,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154334] = 11, + [154869] = 11, ACTIONS(3), 1, sym_comment, - 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, - ACTIONS(7534), 1, + ACTIONS(1219), 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(5135), 1, + ACTIONS(5855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5137), 1, - anon_sym_DOLLAR, - ACTIONS(5141), 1, + ACTIONS(5859), 1, anon_sym_DQUOTE, - ACTIONS(5145), 1, + ACTIONS(5863), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5865), 1, anon_sym_BQUOTE, - ACTIONS(7352), 1, + ACTIONS(7416), 1, sym_test_operator, - ACTIONS(5149), 2, + ACTIONS(5867), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7346), 3, + ACTIONS(7410), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7350), 3, + ACTIONS(7414), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3049), 7, + STATE(1818), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160830,33 +161255,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154424] = 11, + [154914] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1683), 1, - anon_sym_DOLLAR, - ACTIONS(7516), 1, + ACTIONS(194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7522), 1, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(7524), 1, + ACTIONS(206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7526), 1, + ACTIONS(208), 1, anon_sym_BQUOTE, - ACTIONS(7530), 1, + ACTIONS(7542), 1, sym_test_operator, - ACTIONS(7528), 2, + ACTIONS(210), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7514), 3, + ACTIONS(7538), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7520), 3, + ACTIONS(7540), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1934), 7, + STATE(1657), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160864,14 +161289,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154469] = 3, + [154959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6328), 3, + ACTIONS(6906), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6330), 18, + ACTIONS(6908), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -160890,33 +161315,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [154498] = 11, + [154988] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 1, + ACTIONS(1447), 1, anon_sym_DOLLAR, - ACTIONS(6000), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6004), 1, + ACTIONS(7336), 1, anon_sym_DQUOTE, - ACTIONS(6008), 1, + ACTIONS(7338), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6010), 1, + ACTIONS(7340), 1, anon_sym_BQUOTE, - ACTIONS(7436), 1, + ACTIONS(7344), 1, sym_test_operator, - ACTIONS(6012), 2, + ACTIONS(7342), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7430), 3, + ACTIONS(7328), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7434), 3, + ACTIONS(7334), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1723), 7, + STATE(1264), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160924,25 +161349,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154543] = 11, + [155033] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6982), 1, + ACTIONS(5829), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6988), 1, + ACTIONS(5835), 1, anon_sym_DQUOTE, - ACTIONS(6992), 1, + ACTIONS(5839), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6994), 1, + ACTIONS(5841), 1, + anon_sym_BQUOTE, + ACTIONS(7300), 1, + sym_test_operator, + ACTIONS(7544), 1, + anon_sym_DOLLAR, + ACTIONS(5843), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7296), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7298), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2078), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [155078] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5968), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5972), 1, + anon_sym_DQUOTE, + ACTIONS(5976), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5978), 1, anon_sym_BQUOTE, - ACTIONS(7538), 1, + ACTIONS(7536), 1, + sym_test_operator, + ACTIONS(7546), 1, anon_sym_DOLLAR, + ACTIONS(5980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7530), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7534), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(683), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [155123] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(200), 1, + anon_sym_DQUOTE, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(208), 1, + anon_sym_BQUOTE, ACTIONS(7542), 1, sym_test_operator, - ACTIONS(6996), 2, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(210), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7536), 3, + ACTIONS(7538), 3, sym_number, sym__comment_word, sym_word, @@ -160950,7 +161443,41 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2751), 7, + STATE(1657), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [155168] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5115), 1, + anon_sym_DQUOTE, + ACTIONS(5119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5121), 1, + anon_sym_BQUOTE, + ACTIONS(7294), 1, + sym_test_operator, + ACTIONS(7550), 1, + anon_sym_DOLLAR, + ACTIONS(5123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7288), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7292), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3045), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -160958,14 +161485,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154588] = 3, + [155213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 3, + ACTIONS(6790), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6861), 18, + ACTIONS(6792), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -160984,7 +161511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [154617] = 11, + [155242] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(194), 1, @@ -160995,56 +161522,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(208), 1, anon_sym_BQUOTE, - ACTIONS(7472), 1, + ACTIONS(7542), 1, sym_test_operator, - ACTIONS(7544), 1, + ACTIONS(7552), 1, anon_sym_DOLLAR, ACTIONS(210), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7468), 3, + ACTIONS(7538), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7470), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1767), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [154662] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7516), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7522), 1, - anon_sym_DQUOTE, - ACTIONS(7524), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7526), 1, - anon_sym_BQUOTE, - ACTIONS(7530), 1, - sym_test_operator, - ACTIONS(7546), 1, - anon_sym_DOLLAR, - ACTIONS(7528), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7514), 3, - sym_number, - sym__comment_word, - sym_word, - ACTIONS(7520), 3, + ACTIONS(7540), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1934), 7, + STATE(1657), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -161052,14 +161545,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154707] = 3, + [155287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6332), 3, + ACTIONS(6706), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6334), 18, + ACTIONS(6708), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -161078,67 +161571,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [154736] = 11, + [155316] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(194), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, - anon_sym_BQUOTE, - ACTIONS(7472), 1, - sym_test_operator, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(210), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7468), 3, - sym_number, - sym__comment_word, - sym_word, - ACTIONS(7470), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1767), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [154781] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6962), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(6968), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(6972), 1, + ACTIONS(6978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6974), 1, + ACTIONS(6980), 1, anon_sym_BQUOTE, - ACTIONS(7458), 1, + ACTIONS(7388), 1, sym_test_operator, - ACTIONS(7550), 1, + ACTIONS(7554), 1, anon_sym_DOLLAR, - ACTIONS(6976), 2, + ACTIONS(6982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7454), 3, + ACTIONS(7382), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7456), 3, + ACTIONS(7386), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2603), 7, + STATE(2502), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -161146,14 +161605,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [154826] = 3, + [155361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 3, + ACTIONS(6914), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6650), 18, + ACTIONS(6916), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -161172,82 +161631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [154855] = 11, + [155390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6982), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6988), 1, - anon_sym_DQUOTE, - ACTIONS(6992), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6994), 1, - anon_sym_BQUOTE, - ACTIONS(7542), 1, - sym_test_operator, - ACTIONS(7552), 1, - anon_sym_DOLLAR, - ACTIONS(6996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7536), 3, - sym_number, - sym__comment_word, - sym_word, - ACTIONS(7540), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2751), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [154900] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6982), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6984), 1, - anon_sym_DOLLAR, - ACTIONS(6988), 1, - anon_sym_DQUOTE, - ACTIONS(6992), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6994), 1, - anon_sym_BQUOTE, - ACTIONS(7542), 1, - sym_test_operator, - ACTIONS(6996), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7536), 3, - sym_number, - sym__comment_word, - sym_word, - ACTIONS(7540), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2751), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [154945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6022), 3, + ACTIONS(6896), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6020), 18, + ACTIONS(6898), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -161266,33 +161657,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [154974] = 11, + [155419] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(43), 1, + ACTIONS(1070), 1, anon_sym_DOLLAR, - ACTIONS(47), 1, + ACTIONS(5968), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5972), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(5976), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(5978), 1, anon_sym_BQUOTE, - ACTIONS(7272), 1, + ACTIONS(7536), 1, sym_test_operator, - ACTIONS(57), 2, + ACTIONS(5980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7266), 3, + ACTIONS(7530), 3, sym_number, sym__comment_word, sym_word, - ACTIONS(7270), 3, + ACTIONS(7534), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1686), 7, + STATE(683), 7, sym_arithmetic_expansion, sym_string, sym_translated_string, @@ -161300,14 +161691,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [155019] = 3, + [155464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6778), 3, + ACTIONS(6710), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6780), 18, + ACTIONS(6712), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -161326,82 +161717,14 @@ static const uint16_t ts_small_parse_table[] = { 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(6674), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6676), 1, - anon_sym_BQUOTE, - 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(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(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(7240), 3, - sym_number, - sym__comment_word, - sym_word, - ACTIONS(7244), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(971), 7, - sym_arithmetic_expansion, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [155138] = 4, + [155493] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7556), 1, sym__concat, - STATE(2989), 1, + STATE(2999), 1, aux_sym_concatenation_repeat1, - ACTIONS(869), 17, + ACTIONS(880), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161419,14 +161742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155167] = 4, + [155522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7558), 1, + ACTIONS(7560), 1, sym__concat, - STATE(2989), 1, + STATE(2998), 1, aux_sym_concatenation_repeat1, - ACTIONS(863), 17, + ACTIONS(7558), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161444,14 +161767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155196] = 4, + [155551] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7560), 1, sym__concat, - STATE(2989), 1, + STATE(2995), 1, aux_sym_concatenation_repeat1, - ACTIONS(879), 17, + ACTIONS(7562), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161469,14 +161792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155225] = 4, + [155580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 1, + ACTIONS(7564), 1, sym__concat, - STATE(2988), 1, + STATE(2999), 1, aux_sym_concatenation_repeat1, - ACTIONS(7563), 17, + ACTIONS(867), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161494,14 +161817,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155254] = 4, + [155609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 1, + ACTIONS(7566), 1, sym__concat, - STATE(2987), 1, + STATE(2999), 1, aux_sym_concatenation_repeat1, - ACTIONS(7567), 17, + ACTIONS(873), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161519,14 +161842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155283] = 4, + [155638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 1, + ACTIONS(7560), 1, sym__concat, - STATE(2988), 1, + STATE(2995), 1, aux_sym_concatenation_repeat1, - ACTIONS(875), 17, + ACTIONS(863), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161544,12 +161867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155312] = 3, + [155667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 1, + ACTIONS(943), 1, sym__concat, - ACTIONS(937), 17, + ACTIONS(941), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161567,12 +161890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155338] = 3, + [155693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(951), 1, sym__concat, - ACTIONS(879), 17, + ACTIONS(949), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161590,20 +161913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155364] = 4, + [155719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 1, - sym__special_character, - STATE(3006), 1, - aux_sym__literal_repeat1, - ACTIONS(7567), 16, + 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, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -161614,12 +161936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155392] = 3, + [155745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, + ACTIONS(962), 1, sym__concat, - ACTIONS(906), 17, + ACTIONS(960), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161637,12 +161959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155418] = 3, + [155771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 1, + ACTIONS(980), 1, sym__concat, - ACTIONS(902), 17, + ACTIONS(978), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161660,12 +161982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155444] = 3, + [155797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 1, + ACTIONS(984), 1, sym__concat, - ACTIONS(1002), 17, + ACTIONS(982), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161683,12 +162005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155470] = 3, + [155823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 1, + ACTIONS(988), 1, sym__concat, - ACTIONS(998), 17, + ACTIONS(986), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161706,12 +162028,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155496] = 3, + [155849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 1, + ACTIONS(976), 1, sym__concat, - ACTIONS(898), 17, + ACTIONS(974), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161729,12 +162051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155522] = 3, + [155875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 1, + ACTIONS(992), 1, sym__concat, - ACTIONS(929), 17, + ACTIONS(990), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161752,12 +162074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155548] = 3, + [155901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 1, + ACTIONS(996), 1, sym__concat, - ACTIONS(910), 17, + ACTIONS(994), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161775,12 +162097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155574] = 3, + [155927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 1, + ACTIONS(898), 1, sym__concat, - ACTIONS(914), 17, + ACTIONS(896), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161798,12 +162120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155600] = 3, + [155953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 1, + ACTIONS(1000), 1, sym__concat, - ACTIONS(918), 17, + ACTIONS(998), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161821,12 +162143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155626] = 3, + [155979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1004), 1, sym__concat, - ACTIONS(994), 17, + ACTIONS(1002), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161844,20 +162166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155652] = 4, + [156005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 1, - sym__special_character, - STATE(3006), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 16, + ACTIONS(890), 1, + sym__concat, + ACTIONS(888), 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, @@ -161868,12 +162189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155680] = 3, + [156031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 1, + ACTIONS(962), 1, sym__concat, - ACTIONS(894), 17, + ACTIONS(960), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161891,12 +162212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155706] = 3, + [156057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 1, + ACTIONS(966), 1, sym__concat, - ACTIONS(988), 17, + ACTIONS(964), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161914,12 +162235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155732] = 3, + [156083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(939), 1, sym__concat, - ACTIONS(933), 17, + ACTIONS(937), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161937,12 +162258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155758] = 3, + [156109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 1, + ACTIONS(915), 1, sym__concat, - ACTIONS(890), 17, + ACTIONS(913), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161960,12 +162281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155784] = 3, + [156135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 1, + ACTIONS(935), 1, sym__concat, - ACTIONS(984), 17, + ACTIONS(933), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -161983,12 +162304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155810] = 3, + [156161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, + ACTIONS(931), 1, sym__concat, - ACTIONS(948), 17, + ACTIONS(929), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162006,12 +162327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155836] = 3, + [156187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, + ACTIONS(909), 1, sym__concat, - ACTIONS(952), 17, + ACTIONS(907), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162029,12 +162350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155862] = 3, + [156213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(894), 1, sym__concat, - ACTIONS(933), 17, + ACTIONS(892), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162052,12 +162373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155888] = 3, + [156239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, + ACTIONS(927), 1, sym__concat, - ACTIONS(956), 17, + ACTIONS(925), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162075,12 +162396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155914] = 3, + [156265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 1, + ACTIONS(923), 1, sym__concat, - ACTIONS(886), 17, + ACTIONS(921), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162098,12 +162419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155940] = 3, + [156291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 1, + ACTIONS(875), 1, sym__concat, - ACTIONS(960), 17, + ACTIONS(873), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162121,12 +162442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155966] = 3, + [156317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, + ACTIONS(919), 1, sym__concat, - ACTIONS(964), 17, + ACTIONS(917), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162144,19 +162465,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [155992] = 3, + [156343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 1, - sym__concat, - ACTIONS(968), 17, + ACTIONS(7569), 1, + sym__special_character, + STATE(3027), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 16, 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, @@ -162167,12 +162489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [156018] = 3, + [156371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 1, + ACTIONS(947), 1, sym__concat, - ACTIONS(972), 17, + ACTIONS(945), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162190,12 +162512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [156044] = 3, + [156397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 1, + ACTIONS(902), 1, sym__concat, - ACTIONS(980), 17, + ACTIONS(900), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162213,19 +162535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [156070] = 3, + [156423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 1, - sym__concat, - ACTIONS(976), 17, + ACTIONS(7572), 1, + sym__special_character, + STATE(3027), 1, + aux_sym__literal_repeat1, + ACTIONS(7558), 16, 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, @@ -162236,18 +162559,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [156096] = 7, + [156451] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, + ACTIONS(842), 1, anon_sym_LF, ACTIONS(7576), 1, anon_sym_DQUOTE, ACTIONS(7578), 1, aux_sym__simple_variable_name_token1, - STATE(3480), 1, + STATE(3467), 1, sym_string, - ACTIONS(830), 4, + ACTIONS(840), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162262,18 +162585,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [156129] = 7, + [156484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + 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, + [156507] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(782), 1, anon_sym_LF, ACTIONS(7576), 1, anon_sym_DQUOTE, ACTIONS(7578), 1, aux_sym__simple_variable_name_token1, - STATE(3480), 1, + STATE(3467), 1, sym_string, - ACTIONS(842), 4, + ACTIONS(774), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -162288,18 +162632,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [156162] = 5, + [156540] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(7580), 1, sym__concat, - STATE(3025), 1, + STATE(3034), 1, aux_sym_concatenation_repeat1, - ACTIONS(879), 3, + ACTIONS(873), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(881), 12, + ACTIONS(875), 12, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, @@ -162312,35 +162656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156191] = 2, - ACTIONS(3), 1, - sym_comment, - 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, - [156214] = 3, + [156569] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(914), 3, + ACTIONS(929), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(916), 13, + ACTIONS(931), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162354,14 +162677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156238] = 3, + [156593] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(960), 3, + ACTIONS(892), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(962), 13, + ACTIONS(894), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162375,14 +162698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156262] = 3, + [156617] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(918), 3, + ACTIONS(907), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(920), 13, + ACTIONS(909), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162396,16 +162719,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156286] = 3, + [156641] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(910), 3, + ACTIONS(7583), 1, + sym__concat, + STATE(3034), 1, + aux_sym_concatenation_repeat1, + ACTIONS(880), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(912), 13, - sym__concat, - anon_sym_PIPE, + ACTIONS(882), 11, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -162417,18 +162742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156310] = 5, + [156669] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7583), 1, - sym__concat, - STATE(3037), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 3, + ACTIONS(990), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(877), 11, + ACTIONS(992), 13, + sym__concat, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -162440,14 +162763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156338] = 3, + [156693] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(902), 3, + ACTIONS(896), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(904), 13, + ACTIONS(898), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162461,14 +162784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156362] = 3, + [156717] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(1002), 3, + ACTIONS(978), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1004), 13, + ACTIONS(980), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162482,16 +162805,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156386] = 3, + [156741] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(998), 3, + ACTIONS(7585), 1, + sym__concat, + STATE(3034), 1, + aux_sym_concatenation_repeat1, + ACTIONS(867), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(1000), 13, - sym__concat, - anon_sym_PIPE, + ACTIONS(869), 11, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -162503,14 +162828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156410] = 3, + [156769] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(933), 3, + ACTIONS(921), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(935), 13, + ACTIONS(923), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162524,21 +162849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156434] = 5, + [156793] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7585), 1, - sym__special_character, - STATE(3036), 1, - aux_sym__literal_repeat1, - ACTIONS(922), 3, + ACTIONS(960), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(927), 11, + ACTIONS(962), 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, @@ -162547,18 +162870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156462] = 5, + [156817] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7588), 1, - sym__concat, - STATE(3025), 1, - aux_sym_concatenation_repeat1, - ACTIONS(863), 3, + ACTIONS(873), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(865), 11, + ACTIONS(875), 13, + sym__concat, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -162570,14 +162891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156490] = 3, + [156841] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(929), 3, + ACTIONS(968), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(931), 13, + ACTIONS(970), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162591,14 +162912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156514] = 3, + [156865] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(937), 3, + ACTIONS(964), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(939), 13, + ACTIONS(966), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162612,14 +162933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156538] = 3, + [156889] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(890), 3, + ACTIONS(960), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(892), 13, + ACTIONS(962), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162633,21 +162954,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156562] = 5, + [156913] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(7590), 1, - sym__concat, - STATE(3025), 1, - aux_sym_concatenation_repeat1, - ACTIONS(869), 3, + ACTIONS(7587), 1, + sym__special_character, + STATE(3049), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(871), 11, + ACTIONS(958), 11, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -162656,18 +162977,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156590] = 5, + [156941] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7583), 1, - sym__concat, - STATE(3041), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7567), 3, + ACTIONS(925), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7592), 11, + ACTIONS(927), 13, + sym__concat, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -162679,14 +162998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156618] = 3, + [156965] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(945), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(996), 13, + ACTIONS(947), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162700,14 +163019,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156642] = 3, + [156989] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(782), 1, + anon_sym_LF, + ACTIONS(7576), 1, + anon_sym_DQUOTE, + ACTIONS(7578), 1, + aux_sym__simple_variable_name_token1, + STATE(3467), 1, + sym_string, + ACTIONS(774), 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__, + [157021] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(988), 3, + ACTIONS(900), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(990), 13, + ACTIONS(902), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162721,14 +163065,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156666] = 3, + [157045] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(984), 3, + ACTIONS(1002), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(986), 13, + ACTIONS(1004), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162742,16 +163086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156690] = 3, + [157069] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(980), 3, + ACTIONS(7590), 1, + sym__concat, + STATE(3038), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(982), 13, - sym__concat, - anon_sym_PIPE, + ACTIONS(865), 11, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -162763,18 +163109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156714] = 5, + [157097] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7583), 1, - sym__concat, - STATE(3037), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7563), 3, + ACTIONS(949), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7594), 11, + ACTIONS(951), 13, + sym__concat, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -162786,18 +163130,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156742] = 7, + [157121] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(842), 1, anon_sym_LF, ACTIONS(7576), 1, anon_sym_DQUOTE, ACTIONS(7578), 1, aux_sym__simple_variable_name_token1, - STATE(3480), 1, + STATE(3467), 1, sym_string, - ACTIONS(842), 3, + ACTIONS(840), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, @@ -162811,14 +163155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [156774] = 3, + [157153] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(879), 3, + ACTIONS(986), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(881), 13, + ACTIONS(988), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162832,16 +163176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156798] = 3, + [157177] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(894), 3, + ACTIONS(7590), 1, + sym__concat, + STATE(3042), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7558), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(896), 13, - sym__concat, - anon_sym_PIPE, + ACTIONS(7592), 11, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -162853,16 +163199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156822] = 3, + [157205] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(886), 3, + ACTIONS(7590), 1, + sym__concat, + STATE(3038), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7562), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(888), 13, - sym__concat, - anon_sym_PIPE, + ACTIONS(7594), 11, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -162874,14 +163222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156846] = 3, + [157233] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(976), 3, + ACTIONS(941), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(978), 13, + ACTIONS(943), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162895,14 +163243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156870] = 3, + [157257] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(948), 3, + ACTIONS(937), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(950), 13, + ACTIONS(939), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162916,14 +163264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156894] = 3, + [157281] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(906), 3, + ACTIONS(933), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(908), 13, + ACTIONS(935), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162937,14 +163285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156918] = 3, + [157305] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(972), 3, + ACTIONS(888), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(974), 13, + ACTIONS(890), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162958,14 +163306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156942] = 3, + [157329] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(982), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(970), 13, + ACTIONS(984), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -162979,14 +163327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156966] = 3, + [157353] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(964), 3, + ACTIONS(974), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(966), 13, + ACTIONS(976), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -163000,14 +163348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156990] = 3, + [157377] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(898), 3, + ACTIONS(994), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(900), 13, + ACTIONS(996), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -163021,14 +163369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157014] = 3, + [157401] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(952), 3, + ACTIONS(917), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(954), 13, + ACTIONS(919), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -163042,14 +163390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157038] = 3, + [157425] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(933), 3, + ACTIONS(913), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(935), 13, + ACTIONS(915), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -163063,39 +163411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157062] = 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, - 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, + [157449] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(956), 3, + ACTIONS(998), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(958), 13, + ACTIONS(1000), 13, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, @@ -163109,7 +163432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157118] = 4, + [157473] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(7598), 1, @@ -163130,7 +163453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157143] = 4, + [157498] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(7604), 1, @@ -163151,7 +163474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157168] = 4, + [157523] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(7610), 1, @@ -163172,7 +163495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157193] = 4, + [157548] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(7616), 1, @@ -163193,7 +163516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157218] = 4, + [157573] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(7622), 1, @@ -163214,7 +163537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157243] = 4, + [157598] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(7628), 1, @@ -163235,7 +163558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157268] = 4, + [157623] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(7634), 1, @@ -163256,7 +163579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157293] = 4, + [157648] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(7640), 1, @@ -163277,38 +163600,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157318] = 5, + [157673] = 4, ACTIONS(59), 1, sym_comment, - 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [157345] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(7648), 1, + ACTIONS(7646), 1, anon_sym_esac, - ACTIONS(7646), 3, + ACTIONS(7644), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7650), 11, + ACTIONS(7648), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163320,19 +163621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157370] = 4, + [157698] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(7654), 1, - anon_sym_esac, - ACTIONS(7652), 3, + ACTIONS(7650), 1, + sym__special_character, + STATE(3049), 1, + aux_sym__literal_repeat1, + ACTIONS(7558), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7656), 11, - anon_sym_LPAREN, + ACTIONS(7592), 10, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -163341,16 +163643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157395] = 4, + [157725] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7660), 1, + ACTIONS(7654), 1, anon_sym_esac, - ACTIONS(7658), 3, + ACTIONS(7652), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7662), 11, + ACTIONS(7656), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163362,16 +163664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157420] = 4, + [157750] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7666), 1, + ACTIONS(7616), 1, anon_sym_esac, - ACTIONS(7664), 3, + ACTIONS(7614), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7668), 11, + ACTIONS(7618), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163383,7 +163685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157445] = 4, + [157775] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(7622), 1, @@ -163404,17 +163706,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157470] = 4, + [157800] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7628), 1, - anon_sym_esac, - ACTIONS(7626), 3, + ACTIONS(863), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7630), 11, - anon_sym_LPAREN, + ACTIONS(865), 12, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -163425,16 +163726,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157495] = 3, + [157823] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(875), 3, + ACTIONS(7660), 1, + anon_sym_esac, + ACTIONS(7658), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(877), 12, - anon_sym_PIPE, - anon_sym_RPAREN, + ACTIONS(7662), 11, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -163445,16 +163747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157518] = 4, + [157848] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7672), 1, + ACTIONS(7666), 1, anon_sym_esac, - ACTIONS(7670), 3, + ACTIONS(7664), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7674), 11, + ACTIONS(7668), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163466,16 +163768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157543] = 4, + [157873] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7678), 1, + ACTIONS(7640), 1, anon_sym_esac, - ACTIONS(7676), 3, + ACTIONS(7638), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7680), 11, + ACTIONS(7642), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163487,16 +163789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157568] = 4, + [157898] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7684), 1, + ACTIONS(7672), 1, anon_sym_esac, - ACTIONS(7682), 3, + ACTIONS(7670), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7686), 11, + ACTIONS(7674), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163508,16 +163810,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157593] = 4, + [157923] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7598), 1, + ACTIONS(7628), 1, anon_sym_esac, - ACTIONS(7596), 3, + ACTIONS(7626), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7600), 11, + ACTIONS(7630), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163529,16 +163831,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157618] = 4, + [157948] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(7646), 1, anon_sym_esac, - ACTIONS(7646), 3, + ACTIONS(7644), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7650), 11, + ACTIONS(7648), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163550,16 +163852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157643] = 4, + [157973] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7672), 1, + ACTIONS(7604), 1, anon_sym_esac, - ACTIONS(7670), 3, + ACTIONS(7602), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7674), 11, + ACTIONS(7606), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163571,16 +163873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157668] = 4, + [157998] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7610), 1, + ACTIONS(7660), 1, anon_sym_esac, - ACTIONS(7608), 3, + ACTIONS(7658), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7612), 11, + ACTIONS(7662), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163592,16 +163894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157693] = 4, + [158023] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7634), 1, + ACTIONS(7598), 1, anon_sym_esac, - ACTIONS(7632), 3, + ACTIONS(7596), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7636), 11, + ACTIONS(7600), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163613,16 +163915,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157718] = 4, + [158048] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7690), 1, + ACTIONS(7678), 1, anon_sym_esac, - ACTIONS(7688), 3, + ACTIONS(7676), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7692), 11, + ACTIONS(7680), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163634,16 +163936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157743] = 4, + [158073] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7604), 1, + ACTIONS(7684), 1, anon_sym_esac, - ACTIONS(7602), 3, + ACTIONS(7682), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7606), 11, + ACTIONS(7686), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163655,14 +163957,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157768] = 3, + [158098] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7694), 3, + ACTIONS(7690), 1, + anon_sym_esac, + ACTIONS(7688), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7696), 11, + ACTIONS(7692), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163674,45 +163978,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157790] = 9, + [158123] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(7694), 1, anon_sym_RBRACE, - ACTIONS(7702), 1, + ACTIONS(7700), 1, aux_sym__simple_variable_name_token1, - ACTIONS(7706), 1, + ACTIONS(7704), 1, sym_variable_name, - STATE(841), 1, + STATE(688), 1, sym_subscript, - STATE(3226), 1, + STATE(3198), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7696), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(7704), 2, + ACTIONS(7702), 2, anon_sym_0, anon_sym__, - ACTIONS(7700), 5, + ACTIONS(7698), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [157824] = 9, + [158157] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 1, + ACTIONS(3418), 1, anon_sym_RBRACE, ACTIONS(7710), 1, aux_sym__simple_variable_name_token1, ACTIONS(7714), 1, sym_variable_name, - STATE(811), 1, + STATE(780), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, ACTIONS(7712), 2, @@ -163724,7 +164028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [157858] = 9, + [158191] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(7716), 1, @@ -163733,9 +164037,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, ACTIONS(7726), 1, sym_variable_name, - STATE(867), 1, + STATE(515), 1, sym_subscript, - STATE(3208), 1, + STATE(3231), 1, aux_sym_expansion_repeat1, ACTIONS(7718), 2, anon_sym_BANG, @@ -163749,20 +164053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [157892] = 9, + [158225] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2598), 1, anon_sym_RBRACE, ACTIONS(7730), 1, aux_sym__simple_variable_name_token1, ACTIONS(7734), 1, sym_variable_name, - STATE(711), 1, + STATE(588), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, ACTIONS(7732), 2, @@ -163774,112 +164078,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - [157994] = 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(838), 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, - [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, + [158259] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7632), 3, + ACTIONS(7626), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7636), 11, + ACTIONS(7630), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163891,39 +164097,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158080] = 9, + [158281] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(7736), 1, anon_sym_RBRACE, - ACTIONS(7776), 1, + ACTIONS(7742), 1, aux_sym__simple_variable_name_token1, - ACTIONS(7780), 1, + ACTIONS(7746), 1, sym_variable_name, - STATE(822), 1, + STATE(571), 1, sym_subscript, - STATE(3226), 1, + STATE(3229), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7738), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(7778), 2, + ACTIONS(7744), 2, anon_sym_0, anon_sym__, - ACTIONS(7774), 5, + ACTIONS(7740), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [158114] = 3, + [158315] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7782), 3, + ACTIONS(7644), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7784), 11, + ACTIONS(7648), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -163935,62 +164141,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - [158166] = 9, - ACTIONS(3), 1, - sym_comment, - 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, + [158337] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7794), 3, + ACTIONS(7626), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7796), 11, + ACTIONS(7630), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164002,14 +164160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158222] = 3, + [158359] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7794), 3, + ACTIONS(7620), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7796), 11, + ACTIONS(7624), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164021,64 +164179,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158244] = 9, + [158381] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 1, + ACTIONS(2522), 1, anon_sym_RBRACE, - ACTIONS(7800), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7804), 1, - sym_variable_name, - STATE(638), 1, - sym_subscript, - STATE(3226), 1, - aux_sym_expansion_repeat1, - ACTIONS(7698), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7802), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7798), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158278] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3869), 1, - anon_sym_RBRACE, - ACTIONS(7808), 1, + ACTIONS(7750), 1, aux_sym__simple_variable_name_token1, - ACTIONS(7812), 1, + ACTIONS(7754), 1, sym_variable_name, - STATE(893), 1, + STATE(578), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(7810), 2, + ACTIONS(7752), 2, anon_sym_0, anon_sym__, - ACTIONS(7806), 5, + ACTIONS(7748), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [158312] = 3, + [158415] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7782), 3, + ACTIONS(7614), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7784), 11, + ACTIONS(7618), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164090,39 +164223,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158334] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7814), 1, - anon_sym_RBRACE, - ACTIONS(7820), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7824), 1, - sym_variable_name, - STATE(797), 1, - sym_subscript, - STATE(3102), 1, - aux_sym_expansion_repeat1, - ACTIONS(7816), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7822), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7818), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158368] = 3, + [158437] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7826), 3, + ACTIONS(7756), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7828), 11, + ACTIONS(7758), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164134,289 +164242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158390] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2022), 1, - anon_sym_RBRACE, - ACTIONS(7832), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7836), 1, - sym_variable_name, - STATE(510), 1, - sym_subscript, - STATE(3226), 1, - aux_sym_expansion_repeat1, - ACTIONS(7698), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7834), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7830), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158424] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 1, - anon_sym_RBRACE, - ACTIONS(7844), 1, - aux_sym__simple_variable_name_token1, - 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(7842), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158458] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7850), 1, - anon_sym_RBRACE, - ACTIONS(7856), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7860), 1, - sym_variable_name, - STATE(715), 1, - sym_subscript, - STATE(3117), 1, - aux_sym_expansion_repeat1, - ACTIONS(7852), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7858), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7854), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158492] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7862), 1, - anon_sym_RBRACE, - ACTIONS(7868), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7872), 1, - sym_variable_name, - STATE(664), 1, - sym_subscript, - STATE(3116), 1, - aux_sym_expansion_repeat1, - ACTIONS(7864), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7870), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7866), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158526] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7874), 1, - anon_sym_RBRACE, - ACTIONS(7880), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7884), 1, - sym_variable_name, - STATE(889), 1, - sym_subscript, - STATE(3106), 1, - aux_sym_expansion_repeat1, - ACTIONS(7876), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7882), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7878), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158560] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7886), 1, - anon_sym_RBRACE, - ACTIONS(7892), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7896), 1, - sym_variable_name, - STATE(826), 1, - sym_subscript, - STATE(3132), 1, - aux_sym_expansion_repeat1, - ACTIONS(7888), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7894), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7890), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158594] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_RBRACE, - ACTIONS(7900), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7904), 1, - sym_variable_name, - STATE(668), 1, - sym_subscript, - STATE(3226), 1, - aux_sym_expansion_repeat1, - ACTIONS(7698), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7902), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7898), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158628] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - anon_sym_RBRACE, - ACTIONS(7908), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7912), 1, - sym_variable_name, - STATE(719), 1, - sym_subscript, - STATE(3226), 1, - aux_sym_expansion_repeat1, - ACTIONS(7698), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7910), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7906), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158662] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7914), 1, - anon_sym_RBRACE, - ACTIONS(7920), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7924), 1, - sym_variable_name, - STATE(522), 1, - sym_subscript, - STATE(3151), 1, - aux_sym_expansion_repeat1, - ACTIONS(7916), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7922), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7918), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158696] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_RBRACE, - ACTIONS(7928), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7932), 1, - sym_variable_name, - STATE(897), 1, - sym_subscript, - STATE(3226), 1, - aux_sym_expansion_repeat1, - ACTIONS(7698), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7930), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7926), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158730] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7934), 1, - anon_sym_RBRACE, - ACTIONS(7940), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7944), 1, - sym_variable_name, - STATE(629), 1, - sym_subscript, - STATE(3105), 1, - aux_sym_expansion_repeat1, - ACTIONS(7936), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7942), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7938), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158764] = 3, + [158459] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7946), 3, + ACTIONS(7620), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7948), 11, + ACTIONS(7624), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164428,89 +164261,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158786] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3261), 1, - anon_sym_RBRACE, - ACTIONS(7952), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7956), 1, - sym_variable_name, - STATE(793), 1, - sym_subscript, - STATE(3226), 1, - aux_sym_expansion_repeat1, - ACTIONS(7698), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7954), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7950), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158820] = 9, + [158481] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 1, + ACTIONS(7760), 1, anon_sym_RBRACE, - ACTIONS(7960), 1, + ACTIONS(7766), 1, aux_sym__simple_variable_name_token1, - ACTIONS(7964), 1, + ACTIONS(7770), 1, sym_variable_name, - STATE(564), 1, + STATE(511), 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, - anon_sym_AT, - [158854] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7966), 1, - anon_sym_RBRACE, - ACTIONS(7972), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7976), 1, - sym_variable_name, - STATE(656), 1, - sym_subscript, - STATE(3094), 1, + STATE(3116), 1, aux_sym_expansion_repeat1, - ACTIONS(7968), 2, + ACTIONS(7762), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(7974), 2, + ACTIONS(7768), 2, anon_sym_0, anon_sym__, - ACTIONS(7970), 5, + ACTIONS(7764), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [158888] = 3, + [158515] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7682), 3, + ACTIONS(7772), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7686), 11, + ACTIONS(7774), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164522,108 +164305,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158910] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7978), 1, - anon_sym_RBRACE, - ACTIONS(7984), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7988), 1, - sym_variable_name, - STATE(787), 1, - sym_subscript, - STATE(3122), 1, - aux_sym_expansion_repeat1, - ACTIONS(7980), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7986), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7982), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [158944] = 9, + [158537] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7990), 1, + ACTIONS(7776), 1, anon_sym_RBRACE, - ACTIONS(7996), 1, + ACTIONS(7782), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8000), 1, + ACTIONS(7786), 1, sym_variable_name, - STATE(514), 1, + STATE(584), 1, sym_subscript, - STATE(3110), 1, + STATE(3106), 1, aux_sym_expansion_repeat1, - ACTIONS(7992), 2, + ACTIONS(7778), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(7998), 2, + ACTIONS(7784), 2, anon_sym_0, anon_sym__, - ACTIONS(7994), 5, + ACTIONS(7780), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [158978] = 9, + [158571] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(7788), 1, anon_sym_RBRACE, - ACTIONS(8004), 1, + ACTIONS(7794), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8008), 1, + ACTIONS(7798), 1, sym_variable_name, - STATE(863), 1, + STATE(717), 1, sym_subscript, - STATE(3226), 1, + STATE(3157), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7790), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8006), 2, + ACTIONS(7796), 2, anon_sym_0, anon_sym__, - ACTIONS(8002), 5, + ACTIONS(7792), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159012] = 3, - ACTIONS(59), 1, - sym_comment, - 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [159034] = 3, + [158605] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7946), 3, + ACTIONS(7608), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7948), 11, + ACTIONS(7612), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164635,14 +164374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159056] = 3, + [158627] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8014), 3, + ACTIONS(7614), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8016), 11, + ACTIONS(7618), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164654,64 +164393,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159078] = 9, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_AT, - [159112] = 9, + [158649] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8026), 1, + ACTIONS(2004), 1, anon_sym_RBRACE, - ACTIONS(8032), 1, + ACTIONS(7802), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8036), 1, + ACTIONS(7806), 1, sym_variable_name, - STATE(698), 1, + STATE(587), 1, sym_subscript, - STATE(3144), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(8028), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8034), 2, + ACTIONS(7804), 2, anon_sym_0, anon_sym__, - ACTIONS(8030), 5, + ACTIONS(7800), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159146] = 3, + [158683] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7694), 3, + ACTIONS(7632), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7696), 11, + ACTIONS(7636), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164723,33 +164437,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159168] = 3, - ACTIONS(59), 1, + [158705] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7620), 3, - anon_sym_DOLLAR, - sym_number, - sym_word, - ACTIONS(7624), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN, - sym__special_character, + ACTIONS(5115), 1, 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, - [159190] = 3, + ACTIONS(6138), 1, + aux_sym__simple_variable_name_token1, + STATE(3037), 1, + sym_string, + ACTIONS(782), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(6134), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6136), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + [158735] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7614), 3, + ACTIONS(7638), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7618), 11, + ACTIONS(7642), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164761,33 +164479,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159212] = 3, - ACTIONS(59), 1, + [158757] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(8038), 3, + ACTIONS(2624), 1, + anon_sym_RBRACE, + ACTIONS(7810), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7814), 1, + sym_variable_name, + STATE(592), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7812), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7808), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - sym_number, - sym_word, - ACTIONS(8040), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN, - sym__special_character, + anon_sym_AT, + [158791] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5115), 1, 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, - [159234] = 3, + ACTIONS(6138), 1, + aux_sym__simple_variable_name_token1, + STATE(3037), 1, + sym_string, + ACTIONS(842), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(6134), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6136), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + [158821] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7794), 3, + ACTIONS(7596), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7796), 11, + ACTIONS(7600), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164799,39 +164546,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159256] = 9, + [158843] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(7816), 1, anon_sym_RBRACE, - ACTIONS(8044), 1, + ACTIONS(7822), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8048), 1, + ACTIONS(7826), 1, sym_variable_name, - STATE(783), 1, + STATE(651), 1, sym_subscript, - STATE(3226), 1, + STATE(3126), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7818), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8046), 2, + ACTIONS(7824), 2, anon_sym_0, anon_sym__, - ACTIONS(8042), 5, + ACTIONS(7820), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159290] = 3, + [158877] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8050), 3, + ACTIONS(7638), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8052), 11, + ACTIONS(7642), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164843,14 +164590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159312] = 3, + [158899] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7694), 3, + ACTIONS(7652), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7696), 11, + ACTIONS(7656), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164862,89 +164609,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159334] = 9, + [158921] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8054), 1, + ACTIONS(2900), 1, anon_sym_RBRACE, - ACTIONS(8060), 1, + ACTIONS(7830), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8064), 1, + ACTIONS(7834), 1, sym_variable_name, - STATE(922), 1, + STATE(661), 1, sym_subscript, - STATE(3119), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(8056), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8062), 2, + ACTIONS(7832), 2, anon_sym_0, anon_sym__, - ACTIONS(8058), 5, + ACTIONS(7828), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159368] = 9, + [158955] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8066), 1, + ACTIONS(7836), 1, anon_sym_RBRACE, - ACTIONS(8072), 1, + ACTIONS(7842), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8076), 1, + ACTIONS(7846), 1, sym_variable_name, - STATE(777), 1, + STATE(572), 1, sym_subscript, - STATE(3139), 1, + STATE(3130), 1, aux_sym_expansion_repeat1, - ACTIONS(8068), 2, + ACTIONS(7838), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8074), 2, + ACTIONS(7844), 2, anon_sym_0, anon_sym__, - ACTIONS(8070), 5, + ACTIONS(7840), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159402] = 9, + [158989] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 1, + ACTIONS(7848), 1, anon_sym_RBRACE, - ACTIONS(8080), 1, + ACTIONS(7854), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8084), 1, + ACTIONS(7858), 1, sym_variable_name, - STATE(703), 1, + STATE(600), 1, sym_subscript, - STATE(3226), 1, + STATE(3120), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7850), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8082), 2, + ACTIONS(7856), 2, anon_sym_0, anon_sym__, - ACTIONS(8078), 5, + ACTIONS(7852), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159436] = 3, + [159023] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7794), 3, + ACTIONS(7596), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7796), 11, + ACTIONS(7600), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -164956,172 +164703,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159458] = 9, + [159045] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8086), 1, + ACTIONS(2432), 1, anon_sym_RBRACE, - ACTIONS(8092), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8096), 1, - sym_variable_name, - STATE(900), 1, - sym_subscript, - STATE(3187), 1, - aux_sym_expansion_repeat1, - ACTIONS(8088), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8094), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8090), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [159492] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_RBRACE, - ACTIONS(8104), 1, + ACTIONS(7862), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8108), 1, + ACTIONS(7866), 1, sym_variable_name, - STATE(836), 1, + STATE(561), 1, sym_subscript, - STATE(3090), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(8100), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8106), 2, + ACTIONS(7864), 2, anon_sym_0, anon_sym__, - ACTIONS(8102), 5, + ACTIONS(7860), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159526] = 9, + [159079] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8110), 1, + ACTIONS(7868), 1, anon_sym_RBRACE, - ACTIONS(8116), 1, + ACTIONS(7874), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8120), 1, + ACTIONS(7878), 1, sym_variable_name, STATE(672), 1, sym_subscript, - STATE(3168), 1, + STATE(3133), 1, aux_sym_expansion_repeat1, - ACTIONS(8112), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8118), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8114), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_AT, - [159560] = 9, - ACTIONS(3), 1, - sym_comment, - 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, + ACTIONS(7870), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8130), 2, + ACTIONS(7876), 2, anon_sym_0, anon_sym__, - ACTIONS(8126), 5, + ACTIONS(7872), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159594] = 9, - ACTIONS(3), 1, + [159113] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(8134), 1, - anon_sym_RBRACE, - ACTIONS(8140), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8144), 1, - sym_variable_name, - STATE(859), 1, - sym_subscript, - STATE(3128), 1, - aux_sym_expansion_repeat1, - ACTIONS(8136), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8142), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8138), 5, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(7664), 3, anon_sym_DOLLAR, - anon_sym_AT, - [159628] = 9, + 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [159135] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2080), 1, + ACTIONS(3015), 1, anon_sym_RBRACE, - ACTIONS(8148), 1, + ACTIONS(7882), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8152), 1, + ACTIONS(7886), 1, sym_variable_name, - STATE(518), 1, + STATE(680), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8150), 2, + ACTIONS(7884), 2, anon_sym_0, anon_sym__, - ACTIONS(8146), 5, + ACTIONS(7880), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159662] = 7, + [159169] = 3, + ACTIONS(59), 1, + sym_comment, + 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_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [159191] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(6994), 1, anon_sym_DQUOTE, - ACTIONS(6260), 1, + ACTIONS(7890), 1, aux_sym__simple_variable_name_token1, - STATE(3039), 1, + STATE(3925), 1, sym_string, - ACTIONS(838), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(6256), 2, + ACTIONS(842), 2, + sym__concat, + anon_sym_RBRACK, + ACTIONS(7892), 2, anon_sym_0, anon_sym__, - ACTIONS(6258), 7, + ACTIONS(7888), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -165129,39 +164839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [159692] = 9, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_AT, - [159726] = 3, + [159221] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8166), 3, + ACTIONS(7682), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8168), 11, + ACTIONS(7686), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165173,14 +164858,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159748] = 3, + [159243] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8038), 3, + ACTIONS(7894), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8040), 11, + ACTIONS(7896), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165192,137 +164877,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159770] = 9, + [159265] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_RBRACE, - ACTIONS(8172), 1, + ACTIONS(6994), 1, + anon_sym_DQUOTE, + ACTIONS(7890), 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, + STATE(3925), 1, + sym_string, + ACTIONS(782), 2, + sym__concat, + anon_sym_RBRACK, + ACTIONS(7892), 2, anon_sym_0, anon_sym__, - ACTIONS(8170), 5, + ACTIONS(7888), 7, + anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, anon_sym_AT, - [159804] = 9, + [159295] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7894), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7896), 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, + [159317] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(7898), 1, anon_sym_RBRACE, - ACTIONS(8184), 1, + ACTIONS(7904), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8188), 1, + ACTIONS(7908), 1, sym_variable_name, - STATE(645), 1, + STATE(697), 1, sym_subscript, - STATE(3207), 1, + STATE(3142), 1, aux_sym_expansion_repeat1, - ACTIONS(8180), 2, + ACTIONS(7900), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8186), 2, + ACTIONS(7906), 2, anon_sym_0, anon_sym__, - ACTIONS(8182), 5, + ACTIONS(7902), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159838] = 9, + [159351] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8190), 1, + ACTIONS(7910), 1, anon_sym_RBRACE, - ACTIONS(8196), 1, + ACTIONS(7916), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8200), 1, + ACTIONS(7920), 1, sym_variable_name, - STATE(846), 1, + STATE(559), 1, sym_subscript, - STATE(3221), 1, + STATE(3151), 1, aux_sym_expansion_repeat1, - ACTIONS(8192), 2, + ACTIONS(7912), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8198), 2, + ACTIONS(7918), 2, anon_sym_0, anon_sym__, - ACTIONS(8194), 5, + ACTIONS(7914), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159872] = 7, + [159385] = 9, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(3124), 1, anon_sym_RBRACE, - ACTIONS(8204), 1, + ACTIONS(7924), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8208), 1, + ACTIONS(7928), 1, sym_variable_name, - STATE(773), 1, + STATE(726), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8206), 2, + ACTIONS(7926), 2, anon_sym_0, anon_sym__, - ACTIONS(8202), 5, + ACTIONS(7922), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [159936] = 3, + [159419] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8210), 3, + ACTIONS(7930), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8212), 11, + ACTIONS(7932), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165334,14 +165013,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159958] = 3, + [159441] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2774), 1, + anon_sym_RBRACE, + ACTIONS(7936), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7940), 1, + sym_variable_name, + STATE(532), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7938), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7934), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [159475] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8166), 3, + ACTIONS(7930), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8168), 11, + ACTIONS(7932), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165353,14 +165057,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159980] = 3, + [159497] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 1, + anon_sym_RBRACE, + ACTIONS(7944), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7948), 1, + sym_variable_name, + STATE(606), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7946), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7942), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [159531] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8214), 3, + ACTIONS(7894), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8216), 11, + ACTIONS(7896), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165372,14 +165101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160002] = 3, + [159553] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8218), 3, + ACTIONS(7950), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8220), 11, + ACTIONS(7952), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165391,39 +165120,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160024] = 9, + [159575] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8222), 1, + ACTIONS(7954), 1, anon_sym_RBRACE, - ACTIONS(8228), 1, + ACTIONS(7960), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8232), 1, + ACTIONS(7964), 1, sym_variable_name, - STATE(764), 1, + STATE(847), 1, sym_subscript, - STATE(3160), 1, + STATE(3152), 1, aux_sym_expansion_repeat1, - ACTIONS(8224), 2, + ACTIONS(7956), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8230), 2, + ACTIONS(7962), 2, anon_sym_0, anon_sym__, - ACTIONS(8226), 5, + ACTIONS(7958), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160058] = 3, + [159609] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8218), 3, + ACTIONS(7894), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8220), 11, + ACTIONS(7896), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165435,83 +165164,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160080] = 9, + [159631] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 1, + ACTIONS(2340), 1, anon_sym_RBRACE, - ACTIONS(8236), 1, + ACTIONS(7968), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8240), 1, + ACTIONS(7972), 1, sym_variable_name, - STATE(692), 1, + STATE(553), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8238), 2, + ACTIONS(7970), 2, anon_sym_0, anon_sym__, - ACTIONS(8234), 5, + ACTIONS(7966), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160114] = 9, + [159665] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(3618), 1, anon_sym_RBRACE, - ACTIONS(8244), 1, + ACTIONS(7976), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8248), 1, + ACTIONS(7980), 1, sym_variable_name, - STATE(676), 1, + STATE(858), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8246), 2, + ACTIONS(7978), 2, anon_sym_0, anon_sym__, - ACTIONS(8242), 5, + ACTIONS(7974), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160148] = 3, - ACTIONS(59), 1, - sym_comment, - 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160170] = 3, + [159699] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8166), 3, + ACTIONS(7930), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8168), 11, + ACTIONS(7932), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165523,14 +165233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160192] = 3, + [159721] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8250), 3, + ACTIONS(7982), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8252), 11, + ACTIONS(7984), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165542,14 +165252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160214] = 3, + [159743] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8218), 3, + ACTIONS(7930), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8220), 11, + ACTIONS(7932), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165561,14 +165271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160236] = 3, + [159765] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7626), 3, + ACTIONS(7986), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7630), 11, + ACTIONS(7988), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165580,39 +165290,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160258] = 9, + [159787] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 1, + ACTIONS(3230), 1, anon_sym_RBRACE, - ACTIONS(8256), 1, + ACTIONS(7992), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8260), 1, + ACTIONS(7996), 1, sym_variable_name, - STATE(619), 1, + STATE(748), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8258), 2, + ACTIONS(7994), 2, anon_sym_0, anon_sym__, - ACTIONS(8254), 5, + ACTIONS(7990), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160292] = 3, + [159821] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8218), 3, + ACTIONS(7998), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8220), 11, + ACTIONS(8000), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165624,14 +165334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160314] = 3, + [159843] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8262), 3, + ACTIONS(7998), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8264), 11, + ACTIONS(8000), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165643,14 +165353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160336] = 3, + [159865] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7676), 3, + ACTIONS(8002), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7680), 11, + ACTIONS(8004), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165662,39 +165372,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160358] = 9, + [159887] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 1, + ACTIONS(8006), 1, anon_sym_RBRACE, - ACTIONS(8268), 1, + ACTIONS(8012), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8272), 1, + ACTIONS(8016), 1, sym_variable_name, - STATE(601), 1, + STATE(880), 1, sym_subscript, - STATE(3226), 1, + STATE(3168), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(8008), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8270), 2, + ACTIONS(8014), 2, anon_sym_0, anon_sym__, - ACTIONS(8266), 5, + ACTIONS(8010), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [159921] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8018), 1, + anon_sym_RBRACE, + ACTIONS(8024), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8028), 1, + sym_variable_name, + STATE(545), 1, + sym_subscript, + STATE(3167), 1, + aux_sym_expansion_repeat1, + ACTIONS(8020), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8026), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8022), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [159955] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8030), 1, + anon_sym_RBRACE, + ACTIONS(8036), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8040), 1, + sym_variable_name, + STATE(618), 1, + sym_subscript, + STATE(3146), 1, + aux_sym_expansion_repeat1, + ACTIONS(8032), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8038), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8034), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160392] = 3, + [159989] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8214), 3, + ACTIONS(8042), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8216), 11, + ACTIONS(8044), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165706,14 +165466,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160414] = 3, + [160011] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7652), 3, + ACTIONS(8046), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7656), 11, + ACTIONS(8048), 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, + [160033] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8046), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8048), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165725,39 +165504,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160436] = 9, + [160055] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, + ACTIONS(2246), 1, anon_sym_RBRACE, - ACTIONS(8276), 1, + ACTIONS(8052), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8280), 1, + ACTIONS(8056), 1, sym_variable_name, - STATE(748), 1, + STATE(534), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8278), 2, + ACTIONS(8054), 2, anon_sym_0, anon_sym__, - ACTIONS(8274), 5, + ACTIONS(8050), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [160089] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3799), 1, + anon_sym_RBRACE, + ACTIONS(8060), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8064), 1, + sym_variable_name, + STATE(891), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 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, anon_sym_AT, - [160470] = 3, + [160123] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7638), 3, + ACTIONS(8066), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7642), 11, + ACTIONS(8068), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165769,14 +165573,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160492] = 3, + [160145] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 1, + anon_sym_RBRACE, + ACTIONS(8072), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8076), 1, + sym_variable_name, + STATE(744), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 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, + [160179] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7596), 3, + ACTIONS(7658), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7600), 11, + ACTIONS(7662), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165788,14 +165617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160514] = 3, + [160201] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7620), 3, + ACTIONS(7998), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7624), 11, + ACTIONS(8000), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165807,14 +165636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160536] = 3, + [160223] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8038), 3, + ACTIONS(8066), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8040), 11, + ACTIONS(8068), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165826,14 +165655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160558] = 3, + [160245] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7608), 3, + ACTIONS(7670), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7612), 11, + ACTIONS(7674), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165845,58 +165674,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160580] = 9, + [160267] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, + ACTIONS(8078), 1, anon_sym_RBRACE, - ACTIONS(8284), 1, + ACTIONS(8084), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8288), 1, + ACTIONS(8088), 1, sym_variable_name, - STATE(910), 1, + STATE(712), 1, sym_subscript, - STATE(3226), 1, + STATE(3170), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(8080), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8286), 2, + ACTIONS(8086), 2, anon_sym_0, anon_sym__, - ACTIONS(8282), 5, + ACTIONS(8082), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160614] = 3, - ACTIONS(59), 1, - sym_comment, - 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160636] = 3, + [160301] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7596), 3, + ACTIONS(7998), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7600), 11, + ACTIONS(8000), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -165908,108 +165718,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160658] = 9, + [160323] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8290), 1, + ACTIONS(8090), 1, anon_sym_RBRACE, - ACTIONS(8296), 1, + ACTIONS(8096), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8300), 1, + ACTIONS(8100), 1, sym_variable_name, - STATE(609), 1, + STATE(920), 1, sym_subscript, - STATE(3174), 1, + STATE(3179), 1, aux_sym_expansion_repeat1, - ACTIONS(8292), 2, + ACTIONS(8092), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8298), 2, + ACTIONS(8098), 2, anon_sym_0, anon_sym__, - ACTIONS(8294), 5, + ACTIONS(8094), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160692] = 3, - ACTIONS(59), 1, - sym_comment, - 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160714] = 9, + [160357] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(8102), 1, anon_sym_RBRACE, - ACTIONS(8304), 1, + ACTIONS(8108), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8308), 1, + ACTIONS(8112), 1, sym_variable_name, - STATE(760), 1, + STATE(844), 1, sym_subscript, - STATE(3226), 1, + STATE(3187), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(8104), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8306), 2, + ACTIONS(8110), 2, anon_sym_0, anon_sym__, - ACTIONS(8302), 5, + ACTIONS(8106), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160748] = 9, + [160391] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8310), 1, + ACTIONS(4003), 1, anon_sym_RBRACE, - ACTIONS(8316), 1, + ACTIONS(8116), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8320), 1, + ACTIONS(8120), 1, sym_variable_name, - STATE(736), 1, + STATE(924), 1, sym_subscript, - STATE(3201), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(8312), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8318), 2, + ACTIONS(8118), 2, anon_sym_0, anon_sym__, - ACTIONS(8314), 5, + ACTIONS(8114), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160782] = 3, + [160425] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7688), 3, + ACTIONS(7676), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7692), 11, + ACTIONS(7680), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166021,14 +165812,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160804] = 3, + [160447] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8122), 1, + anon_sym_RBRACE, + ACTIONS(8128), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8132), 1, + sym_variable_name, + STATE(595), 1, + sym_subscript, + STATE(3100), 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, + anon_sym_AT, + [160481] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8038), 3, + ACTIONS(7602), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8040), 11, + ACTIONS(7606), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166040,14 +165856,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160826] = 3, + [160503] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7646), 3, + ACTIONS(7658), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7650), 11, + ACTIONS(7662), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166059,39 +165875,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160848] = 9, + [160525] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8322), 1, + ACTIONS(2892), 1, anon_sym_RBRACE, - ACTIONS(8328), 1, + ACTIONS(8136), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8332), 1, + ACTIONS(8140), 1, sym_variable_name, - STATE(752), 1, + STATE(642), 1, sym_subscript, - STATE(3192), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(8324), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8330), 2, + ACTIONS(8138), 2, anon_sym_0, anon_sym__, - ACTIONS(8326), 5, + ACTIONS(8134), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160882] = 3, + [160559] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7946), 3, + ACTIONS(7602), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7948), 11, + ACTIONS(7606), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166103,33 +165919,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160904] = 3, - ACTIONS(59), 1, + [160581] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(7658), 3, + ACTIONS(8142), 1, + anon_sym_RBRACE, + ACTIONS(8148), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8152), 1, + sym_variable_name, + STATE(918), 1, + sym_subscript, + STATE(3189), 1, + aux_sym_expansion_repeat1, + ACTIONS(8144), 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, - 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_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160926] = 3, + anon_sym_AT, + [160615] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3600), 1, + anon_sym_RBRACE, + ACTIONS(8156), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8160), 1, + sym_variable_name, + STATE(876), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8158), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8154), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [160649] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7602), 3, + ACTIONS(8162), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7606), 11, + ACTIONS(8164), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166141,39 +165988,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160948] = 9, + [160671] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, + ACTIONS(3995), 1, anon_sym_RBRACE, - ACTIONS(8336), 1, + ACTIONS(8168), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8340), 1, + ACTIONS(8172), 1, sym_variable_name, - STATE(740), 1, + STATE(925), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8170), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8166), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [160705] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8174), 1, + anon_sym_RBRACE, + ACTIONS(8180), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8184), 1, + sym_variable_name, + STATE(650), 1, sym_subscript, - STATE(3226), 1, + STATE(3184), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(8176), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8338), 2, + ACTIONS(8182), 2, anon_sym_0, anon_sym__, - ACTIONS(8334), 5, + ACTIONS(8178), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [160982] = 3, + [160739] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8214), 3, + ACTIONS(8162), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8216), 11, + ACTIONS(8164), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166185,14 +166057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161004] = 3, + [160761] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8214), 3, + ACTIONS(8046), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8216), 11, + ACTIONS(8048), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166204,39 +166076,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161026] = 9, - ACTIONS(3), 1, + [160783] = 3, + ACTIONS(59), 1, sym_comment, - 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, + ACTIONS(8046), 3, anon_sym_DOLLAR, - anon_sym_AT, - [161060] = 3, + sym_number, + sym_word, + ACTIONS(8048), 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, + [160805] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7646), 3, + ACTIONS(8066), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7650), 11, + ACTIONS(8068), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166248,14 +166114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161082] = 3, + [160827] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7602), 3, + ACTIONS(8066), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7606), 11, + ACTIONS(8068), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166267,64 +166133,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161104] = 9, + [160849] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(8186), 1, anon_sym_RBRACE, - ACTIONS(8352), 1, + ACTIONS(8192), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8356), 1, + ACTIONS(8196), 1, sym_variable_name, - STATE(651), 1, + STATE(542), 1, sym_subscript, - STATE(3226), 1, + STATE(3202), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(8188), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8354), 2, + ACTIONS(8194), 2, anon_sym_0, anon_sym__, - ACTIONS(8350), 5, + ACTIONS(8190), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [161138] = 9, + [160883] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(8198), 1, anon_sym_RBRACE, - ACTIONS(8360), 1, + ACTIONS(8204), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8208), 1, + sym_variable_name, + STATE(869), 1, + sym_subscript, + STATE(3201), 1, + aux_sym_expansion_repeat1, + ACTIONS(8200), 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, + [160917] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_RBRACE, + ACTIONS(8212), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8364), 1, + ACTIONS(8216), 1, sym_variable_name, - STATE(871), 1, + STATE(659), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8362), 2, + ACTIONS(8214), 2, anon_sym_0, anon_sym__, - ACTIONS(8358), 5, + ACTIONS(8210), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [161172] = 3, + [160951] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7664), 3, + ACTIONS(8162), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7668), 11, + ACTIONS(8164), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166336,14 +166227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161194] = 3, + [160973] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7670), 3, + ACTIONS(8162), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7674), 11, + ACTIONS(8164), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166355,14 +166246,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161216] = 3, + [160995] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3739), 1, + anon_sym_RBRACE, + ACTIONS(8220), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8224), 1, + sym_variable_name, + STATE(831), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8222), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8218), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161029] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 1, + anon_sym_RBRACE, + ACTIONS(8228), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8232), 1, + sym_variable_name, + STATE(533), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8230), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8226), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161063] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7694), 3, + ACTIONS(7644), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7696), 11, + ACTIONS(7648), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166374,14 +166315,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161238] = 3, + [161085] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8234), 1, + anon_sym_RBRACE, + ACTIONS(8240), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8244), 1, + sym_variable_name, + STATE(516), 1, + sym_subscript, + STATE(3214), 1, + aux_sym_expansion_repeat1, + ACTIONS(8236), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8242), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8238), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161119] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3206), 1, + anon_sym_RBRACE, + ACTIONS(8248), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8252), 1, + sym_variable_name, + STATE(708), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8250), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8246), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161153] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3865), 1, + anon_sym_RBRACE, + ACTIONS(8256), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8260), 1, + sym_variable_name, + STATE(849), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8258), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8254), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161187] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8262), 1, + anon_sym_RBRACE, + ACTIONS(8268), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8272), 1, + sym_variable_name, + STATE(714), 1, + sym_subscript, + STATE(3205), 1, + aux_sym_expansion_repeat1, + ACTIONS(8264), 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, + [161221] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2682), 1, + anon_sym_RBRACE, + ACTIONS(8276), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8280), 1, + sym_variable_name, + STATE(529), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8278), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8274), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161255] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8282), 1, + anon_sym_RBRACE, + ACTIONS(8288), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8292), 1, + sym_variable_name, + STATE(620), 1, + sym_subscript, + STATE(3144), 1, + aux_sym_expansion_repeat1, + ACTIONS(8284), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8290), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8286), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161289] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7632), 3, + ACTIONS(8294), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7636), 11, + ACTIONS(8296), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166393,14 +166484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161260] = 3, + [161311] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7670), 3, + ACTIONS(8294), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7674), 11, + ACTIONS(8296), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166412,89 +166503,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161282] = 9, + [161333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8366), 1, + ACTIONS(8298), 1, anon_sym_RBRACE, - ACTIONS(8372), 1, + ACTIONS(8304), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8376), 1, + ACTIONS(8308), 1, sym_variable_name, - STATE(680), 1, + STATE(789), 1, sym_subscript, - STATE(3167), 1, + STATE(3098), 1, aux_sym_expansion_repeat1, - ACTIONS(8368), 2, + ACTIONS(8300), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8374), 2, + ACTIONS(8306), 2, anon_sym_0, anon_sym__, - ACTIONS(8370), 5, + ACTIONS(8302), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [161316] = 9, + [161367] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8378), 1, + ACTIONS(8310), 1, anon_sym_RBRACE, - ACTIONS(8384), 1, + ACTIONS(8316), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8388), 1, + ACTIONS(8320), 1, sym_variable_name, - STATE(707), 1, + STATE(608), 1, sym_subscript, - STATE(3093), 1, + STATE(3208), 1, aux_sym_expansion_repeat1, - ACTIONS(8380), 2, + ACTIONS(8312), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8386), 2, + ACTIONS(8318), 2, anon_sym_0, anon_sym__, - ACTIONS(8382), 5, + ACTIONS(8314), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [161350] = 9, + [161401] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2038), 1, anon_sym_RBRACE, - ACTIONS(8392), 1, + ACTIONS(8324), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8396), 1, + ACTIONS(8328), 1, + sym_variable_name, + STATE(509), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8326), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8322), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161435] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_RBRACE, + ACTIONS(8332), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8336), 1, + sym_variable_name, + STATE(507), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8334), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8330), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161469] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8338), 1, + anon_sym_RBRACE, + ACTIONS(8344), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8348), 1, + sym_variable_name, + STATE(915), 1, + sym_subscript, + STATE(3222), 1, + aux_sym_expansion_repeat1, + ACTIONS(8340), 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, + anon_sym_AT, + [161503] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8350), 1, + anon_sym_RBRACE, + ACTIONS(8356), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8360), 1, + sym_variable_name, + STATE(889), 1, + sym_subscript, + STATE(3206), 1, + aux_sym_expansion_repeat1, + ACTIONS(8352), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8358), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8354), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161537] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8362), 1, + anon_sym_RBRACE, + ACTIONS(8368), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8372), 1, + sym_variable_name, + STATE(519), 1, + sym_subscript, + STATE(3215), 1, + aux_sym_expansion_repeat1, + ACTIONS(8364), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8370), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8366), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161571] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3574), 1, + anon_sym_RBRACE, + ACTIONS(8376), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8380), 1, + sym_variable_name, + STATE(827), 1, + sym_subscript, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(7706), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8378), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8374), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161605] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 1, + anon_sym_RBRACE, + ACTIONS(8388), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8392), 1, sym_variable_name, - STATE(526), 1, + STATE(839), 1, sym_subscript, - STATE(3226), 1, + STATE(3219), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(8384), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8394), 2, + ACTIONS(8390), 2, anon_sym_0, anon_sym__, - ACTIONS(8390), 5, + ACTIONS(8386), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [161384] = 3, + [161639] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7782), 3, + ACTIONS(8002), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7784), 11, + ACTIONS(8004), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166506,39 +166747,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161406] = 9, + [161661] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8398), 1, + ACTIONS(3971), 1, anon_sym_RBRACE, - ACTIONS(8404), 1, + ACTIONS(8396), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8408), 1, + ACTIONS(8400), 1, sym_variable_name, - STATE(530), 1, + STATE(886), 1, sym_subscript, - STATE(3216), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(8400), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8406), 2, + ACTIONS(8398), 2, anon_sym_0, anon_sym__, - ACTIONS(8402), 5, + ACTIONS(8394), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [161440] = 3, + [161695] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(8410), 3, + ACTIONS(8402), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(8412), 11, + ACTIONS(8404), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166550,14 +166791,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161462] = 3, + [161717] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7626), 3, + ACTIONS(8294), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7630), 11, + ACTIONS(8296), 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, + [161739] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8002), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8004), 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, + [161761] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8002), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8004), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166569,45 +166848,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161484] = 9, + [161783] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(8406), 1, anon_sym_RBRACE, - ACTIONS(8416), 1, + ACTIONS(8412), 1, aux_sym__simple_variable_name_token1, + ACTIONS(8416), 1, + sym_variable_name, + STATE(743), 1, + sym_subscript, + STATE(3228), 1, + aux_sym_expansion_repeat1, + ACTIONS(8408), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8414), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8410), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161817] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3326), 1, + anon_sym_RBRACE, ACTIONS(8420), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8424), 1, sym_variable_name, - STATE(853), 1, + STATE(729), 1, sym_subscript, - STATE(3226), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(7698), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(8418), 2, + ACTIONS(8422), 2, anon_sym_0, anon_sym__, - ACTIONS(8414), 5, + ACTIONS(8418), 5, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [161518] = 9, + [161851] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8422), 1, + ACTIONS(2424), 1, anon_sym_RBRACE, ACTIONS(8428), 1, aux_sym__simple_variable_name_token1, ACTIONS(8432), 1, sym_variable_name, - STATE(876), 1, + STATE(566), 1, sym_subscript, - STATE(3204), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(8424), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, ACTIONS(8430), 2, @@ -166619,20 +166923,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [161552] = 9, + [161885] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8434), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8436), 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, + [161907] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(2030), 1, anon_sym_RBRACE, ACTIONS(8440), 1, aux_sym__simple_variable_name_token1, ACTIONS(8444), 1, sym_variable_name, - STATE(744), 1, + STATE(625), 1, sym_subscript, - STATE(3181), 1, + STATE(3233), 1, aux_sym_expansion_repeat1, - ACTIONS(8436), 2, + ACTIONS(7706), 2, anon_sym_BANG, anon_sym_POUND, ACTIONS(8442), 2, @@ -166644,14 +166967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_AT, - [161586] = 3, + [161941] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(7782), 3, + ACTIONS(8294), 3, anon_sym_DOLLAR, sym_number, sym_word, - ACTIONS(7784), 11, + ACTIONS(8296), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, sym__special_character, @@ -166663,21 +166986,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161608] = 7, + [161963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + STATE(3233), 1, + aux_sym_expansion_repeat1, + ACTIONS(8448), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8451), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(8446), 7, + sym_variable_name, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161988] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(782), 1, anon_sym_RBRACE, ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(8448), 1, + ACTIONS(8455), 1, aux_sym__simple_variable_name_token1, - STATE(3957), 1, + STATE(3960), 1, sym_string, - ACTIONS(8450), 2, + ACTIONS(8457), 2, anon_sym_0, anon_sym__, - ACTIONS(8446), 7, + ACTIONS(8453), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166685,41 +167028,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [161637] = 5, + [162017] = 7, ACTIONS(3), 1, sym_comment, - STATE(3226), 1, - aux_sym_expansion_repeat1, - ACTIONS(8454), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8457), 3, + ACTIONS(842), 1, + anon_sym_RBRACE, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(8455), 1, aux_sym__simple_variable_name_token1, + STATE(3960), 1, + sym_string, + ACTIONS(8457), 2, anon_sym_0, anon_sym__, - ACTIONS(8452), 7, - sym_variable_name, - anon_sym_RBRACE, + ACTIONS(8453), 7, + anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, anon_sym_AT, - [161662] = 7, + [162046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_RBRACE, - ACTIONS(6310), 1, - anon_sym_DQUOTE, - ACTIONS(8448), 1, + ACTIONS(1805), 1, aux_sym__simple_variable_name_token1, - STATE(3957), 1, + ACTIONS(7440), 1, + anon_sym_DQUOTE, + STATE(2101), 1, sym_string, - ACTIONS(8450), 2, + ACTIONS(1803), 2, anon_sym_0, anon_sym__, - ACTIONS(8446), 7, + ACTIONS(8459), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166727,16 +167070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [161691] = 5, + [162072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8461), 1, - anon_sym_DQUOTE, ACTIONS(8463), 1, - sym__string_content, + anon_sym_DQUOTE, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166746,16 +167089,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161715] = 5, + [162096] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8467), 1, + ACTIONS(1956), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(5403), 1, + aux_sym__simple_variable_name_token1, + STATE(2274), 1, + sym_string, + ACTIONS(5399), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5401), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166763,18 +167109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [161739] = 5, + [162122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, + ACTIONS(1475), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8469), 1, + ACTIONS(5783), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + STATE(1234), 1, + sym_string, + ACTIONS(1471), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8469), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166782,18 +167129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [161763] = 5, + [162148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8471), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166803,16 +167148,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161787] = 6, + [162172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1673), 1, + ACTIONS(1809), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6004), 1, + ACTIONS(7260), 1, anon_sym_DQUOTE, - STATE(1737), 1, + STATE(2017), 1, sym_string, - ACTIONS(1671), 2, + ACTIONS(1807), 2, anon_sym_0, anon_sym__, ACTIONS(8473), 7, @@ -166823,19 +167168,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [161813] = 6, + [162198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 1, - anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - STATE(632), 1, - sym_string, - ACTIONS(1449), 2, + ACTIONS(8475), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 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(1451), 7, + [162222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8477), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166843,19 +167204,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [161839] = 6, + anon_sym_0, + anon_sym__, + [162246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1677), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7218), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - STATE(1649), 1, + ACTIONS(8455), 1, + aux_sym__simple_variable_name_token1, + STATE(3960), 1, sym_string, - ACTIONS(1675), 2, + ACTIONS(8457), 2, anon_sym_0, anon_sym__, - ACTIONS(8475), 7, + ACTIONS(8453), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166863,16 +167226,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [161865] = 5, + [162272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, + ACTIONS(8465), 1, sym__string_content, + ACTIONS(8467), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8479), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 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__, + [162296] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8477), 1, + ACTIONS(8481), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166882,19 +167264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161889] = 6, + [162320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(1739), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6670), 1, + ACTIONS(6012), 1, anon_sym_DQUOTE, - STATE(2993), 1, + STATE(1857), 1, sym_string, - ACTIONS(5694), 2, + ACTIONS(1737), 2, anon_sym_0, anon_sym__, - ACTIONS(8479), 7, + ACTIONS(8483), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166902,35 +167284,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [161915] = 5, + [162346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8481), 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__, - [161939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8463), 1, sym__string_content, - ACTIONS(8465), 1, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8483), 1, + ACTIONS(8485), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166940,16 +167303,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161963] = 5, + [162370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8485), 1, + ACTIONS(8487), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166959,19 +167322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [161987] = 6, + [162394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 1, + ACTIONS(1661), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5831), 1, + ACTIONS(7336), 1, anon_sym_DQUOTE, - STATE(623), 1, + STATE(1274), 1, sym_string, - ACTIONS(1417), 2, + ACTIONS(1659), 2, anon_sym_0, anon_sym__, - ACTIONS(8487), 7, + ACTIONS(8489), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166979,19 +167342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162013] = 6, + [162420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(1605), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - STATE(1807), 1, - sym_string, - ACTIONS(1603), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8489), 7, + ACTIONS(8491), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -166999,16 +167359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162039] = 5, + anon_sym_0, + anon_sym__, + [162444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8491), 1, + ACTIONS(8493), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167018,19 +167380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162063] = 6, + [162468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1601), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7254), 1, + ACTIONS(5411), 1, anon_sym_DQUOTE, - STATE(1163), 1, + ACTIONS(5415), 1, + aux_sym__simple_variable_name_token1, + STATE(2422), 1, sym_string, - ACTIONS(1599), 2, + ACTIONS(5409), 2, anon_sym_0, anon_sym__, - ACTIONS(8493), 7, + ACTIONS(5413), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167038,16 +167400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162089] = 5, + [162494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8495), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167057,16 +167419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162113] = 5, + [162518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, + ACTIONS(5391), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8497), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + STATE(2499), 1, + sym_string, + ACTIONS(5387), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8497), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167074,18 +167439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [162137] = 5, + [162544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8499), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167095,16 +167458,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162161] = 5, + [162568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8501), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167114,16 +167477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162185] = 5, + [162592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, + ACTIONS(1657), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8503), 1, + ACTIONS(5948), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + STATE(1768), 1, + sym_string, + ACTIONS(1653), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8503), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167131,18 +167497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [162209] = 5, + [162618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8505), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167152,16 +167516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162233] = 5, + [162642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8507), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167171,16 +167535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162257] = 5, + [162666] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8509), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167190,16 +167554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162281] = 5, + [162690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8511), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167209,16 +167573,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162305] = 5, + [162714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8513), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167228,56 +167592,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162329] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(292), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - aux_sym__simple_variable_name_token1, - STATE(647), 1, - sym_string, - ACTIONS(1159), 2, - anon_sym_0, - anon_sym__, - 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, - [162381] = 5, + [162738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8517), 1, + ACTIONS(8515), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167287,19 +167611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162405] = 6, + [162762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 1, + ACTIONS(1401), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5439), 1, + ACTIONS(5972), 1, anon_sym_DQUOTE, - STATE(462), 1, + STATE(663), 1, sym_string, - ACTIONS(1216), 2, + ACTIONS(1399), 2, anon_sym_0, anon_sym__, - ACTIONS(8519), 7, + ACTIONS(8517), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167307,19 +167631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162431] = 6, + [162788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(396), 1, + ACTIONS(105), 1, anon_sym_DQUOTE, - ACTIONS(1377), 1, + ACTIONS(780), 1, aux_sym__simple_variable_name_token1, - STATE(1027), 1, + STATE(242), 1, sym_string, - ACTIONS(1375), 2, + ACTIONS(776), 2, anon_sym_0, anon_sym__, - ACTIONS(8521), 7, + ACTIONS(8519), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167327,19 +167651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162457] = 6, + [162814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(816), 1, - anon_sym_DQUOTE, - ACTIONS(1703), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - STATE(1763), 1, - sym_string, - ACTIONS(1699), 2, - anon_sym_0, - anon_sym__, - ACTIONS(1701), 7, + ACTIONS(8521), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167347,16 +167668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162483] = 5, + anon_sym_0, + anon_sym__, + [162838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8523), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167366,16 +167689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162507] = 5, + [162862] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8525), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167385,16 +167708,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162531] = 6, + [162886] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5920), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - STATE(1149), 1, + ACTIONS(1581), 1, + aux_sym__simple_variable_name_token1, + STATE(1875), 1, sym_string, - ACTIONS(1493), 2, + ACTIONS(1579), 2, anon_sym_0, anon_sym__, ACTIONS(8527), 7, @@ -167405,16 +167728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162557] = 5, + [162912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8529), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167424,16 +167747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162581] = 5, + [162936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8531), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167443,16 +167766,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162605] = 5, + [162960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8533), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167462,16 +167785,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162629] = 5, + [162984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8535), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167481,19 +167804,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162653] = 6, + [163008] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(7300), 1, + ACTIONS(8537), 1, anon_sym_DQUOTE, - STATE(2080), 1, - sym_string, - ACTIONS(1809), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8537), 7, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167501,16 +167821,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162679] = 5, + anon_sym_0, + anon_sym__, + [163032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8539), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167520,19 +167842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162703] = 6, + [163056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, + ACTIONS(290), 1, anon_sym_DQUOTE, - ACTIONS(5411), 1, + ACTIONS(1265), 1, aux_sym__simple_variable_name_token1, - STATE(2408), 1, + STATE(622), 1, sym_string, - ACTIONS(5405), 2, + ACTIONS(1263), 2, anon_sym_0, anon_sym__, - ACTIONS(5409), 7, + ACTIONS(8541), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167540,16 +167862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162729] = 5, + [163082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8541), 1, + ACTIONS(8543), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167559,16 +167881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162753] = 5, + [163106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8543), 1, + ACTIONS(8545), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167578,16 +167900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162777] = 5, + [163130] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8545), 1, + ACTIONS(396), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(1397), 1, + aux_sym__simple_variable_name_token1, + STATE(1149), 1, + sym_string, + ACTIONS(1393), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8547), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167595,18 +167920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [162801] = 5, + [163156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8547), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(1481), 1, + aux_sym__simple_variable_name_token1, + STATE(636), 1, + sym_string, + ACTIONS(1477), 2, + anon_sym_0, + anon_sym__, + ACTIONS(1479), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167614,18 +167940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [162825] = 5, + [163182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8549), 1, + ACTIONS(6994), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(7890), 1, + aux_sym__simple_variable_name_token1, + STATE(3925), 1, + sym_string, + ACTIONS(7892), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7888), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167633,21 +167960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [162849] = 6, + [163208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 1, - anon_sym_DQUOTE, - ACTIONS(8448), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - STATE(3957), 1, - sym_string, - ACTIONS(8450), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8446), 7, + ACTIONS(8549), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167655,16 +167977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162875] = 5, + anon_sym_0, + anon_sym__, + [163232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8551), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167674,16 +167998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162899] = 5, + [163256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8553), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167693,19 +168017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162923] = 6, + [163280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5980), 1, - anon_sym_DQUOTE, - ACTIONS(7578), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - STATE(3480), 1, - sym_string, - ACTIONS(7574), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8555), 7, + ACTIONS(8555), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167713,16 +168034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162949] = 6, + anon_sym_0, + anon_sym__, + [163304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, + ACTIONS(1751), 1, aux_sym__simple_variable_name_token1, - ACTIONS(7522), 1, + ACTIONS(5809), 1, anon_sym_DQUOTE, - STATE(1924), 1, + STATE(1928), 1, sym_string, - ACTIONS(1805), 2, + ACTIONS(1747), 2, anon_sym_0, anon_sym__, ACTIONS(8557), 7, @@ -167733,16 +168056,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [162975] = 5, + [163330] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8559), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167752,19 +168075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [162999] = 6, + [163354] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5890), 1, + ACTIONS(8561), 1, anon_sym_DQUOTE, - STATE(2072), 1, - sym_string, - ACTIONS(1765), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8561), 7, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167772,16 +168092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163025] = 5, + anon_sym_0, + anon_sym__, + [163378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8563), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167791,16 +168113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163049] = 5, + [163402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8565), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167810,16 +168132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163073] = 5, + [163426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8567), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167829,19 +168151,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163097] = 6, + [163450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1633), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5778), 1, + ACTIONS(8569), 1, anon_sym_DQUOTE, - STATE(1690), 1, - sym_string, - ACTIONS(1629), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8569), 7, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167849,16 +168168,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163123] = 5, + anon_sym_0, + anon_sym__, + [163474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, + ACTIONS(1795), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8571), 1, + ACTIONS(7464), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + STATE(1792), 1, + sym_string, + ACTIONS(1793), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8571), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167866,18 +168190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [163147] = 5, + [163500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8573), 1, + ACTIONS(135), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(850), 1, + aux_sym__simple_variable_name_token1, + STATE(283), 1, + sym_string, + ACTIONS(846), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8573), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167885,18 +168210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [163171] = 5, + [163526] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8575), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167906,16 +168229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163195] = 5, + [163550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8577), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167925,16 +168248,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163219] = 5, + [163574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167944,16 +168267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163243] = 5, + [163598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8581), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -167963,16 +168286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163267] = 6, + [163622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 1, + ACTIONS(5421), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5950), 1, + ACTIONS(7044), 1, anon_sym_DQUOTE, - STATE(1984), 1, + STATE(2584), 1, sym_string, - ACTIONS(1739), 2, + ACTIONS(5417), 2, anon_sym_0, anon_sym__, ACTIONS(8583), 7, @@ -167983,19 +168306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163293] = 6, + [163648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(135), 1, - anon_sym_DQUOTE, - ACTIONS(850), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - STATE(274), 1, - sym_string, - ACTIONS(846), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8585), 7, + ACTIONS(8585), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168003,36 +168323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163319] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_DQUOTE, - ACTIONS(6260), 1, - aux_sym__simple_variable_name_token1, - STATE(3039), 1, - sym_string, - 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, - [163345] = 5, + [163672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8587), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168042,16 +168344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163369] = 5, + [163696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8589), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168061,16 +168363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163393] = 5, + [163720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8591), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168080,16 +168382,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163417] = 6, + [163744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, + ACTIONS(1789), 1, aux_sym__simple_variable_name_token1, - ACTIONS(7008), 1, + ACTIONS(5835), 1, anon_sym_DQUOTE, - STATE(2500), 1, + STATE(2073), 1, sym_string, - ACTIONS(5383), 2, + ACTIONS(1785), 2, anon_sym_0, anon_sym__, ACTIONS(8593), 7, @@ -168100,19 +168402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163443] = 6, + [163770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5423), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6988), 1, + ACTIONS(8595), 1, anon_sym_DQUOTE, - STATE(2756), 1, - sym_string, - ACTIONS(5419), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8595), 7, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168120,16 +168419,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163469] = 5, + anon_sym_0, + anon_sym__, + [163794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8597), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168139,16 +168440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163493] = 5, + [163818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8599), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168158,36 +168459,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163517] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5417), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6968), 1, - anon_sym_DQUOTE, - STATE(2591), 1, - sym_string, - ACTIONS(5413), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8601), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - [163543] = 5, + [163842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8603), 1, + ACTIONS(8601), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168197,16 +168478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163567] = 5, + [163866] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8605), 1, + ACTIONS(8603), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168216,16 +168497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163591] = 5, + [163890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, + ACTIONS(5688), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8607), 1, + ACTIONS(6356), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + STATE(3021), 1, + sym_string, + ACTIONS(5686), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8605), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168233,21 +168517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [163615] = 6, + [163916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_DQUOTE, - ACTIONS(836), 1, + ACTIONS(1261), 1, aux_sym__simple_variable_name_token1, - STATE(246), 1, + ACTIONS(5441), 1, + anon_sym_DQUOTE, + STATE(468), 1, sym_string, - ACTIONS(832), 2, + ACTIONS(1259), 2, anon_sym_0, anon_sym__, - ACTIONS(8609), 7, + ACTIONS(8607), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168255,19 +168537,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163641] = 6, + [163942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(1567), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - STATE(1654), 1, - sym_string, - ACTIONS(1565), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8611), 7, + ACTIONS(8609), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168275,16 +168554,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163667] = 5, + anon_sym_0, + anon_sym__, + [163966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8613), 1, + ACTIONS(8611), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168294,19 +168575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163691] = 6, + [163990] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1585), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5855), 1, + ACTIONS(5732), 1, anon_sym_DQUOTE, - STATE(1863), 1, + STATE(1101), 1, sym_string, - ACTIONS(1735), 2, + ACTIONS(1583), 2, anon_sym_0, anon_sym__, - ACTIONS(8615), 7, + ACTIONS(8613), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168314,16 +168595,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163717] = 5, + [164016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, + ACTIONS(8465), 1, sym__string_content, + ACTIONS(8467), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8615), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 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__, + [164040] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8617), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168333,19 +168633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163741] = 6, + [164064] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(780), 1, + ACTIONS(5115), 1, anon_sym_DQUOTE, - ACTIONS(1669), 1, + ACTIONS(6138), 1, aux_sym__simple_variable_name_token1, - STATE(1750), 1, + STATE(3037), 1, sym_string, - ACTIONS(1665), 2, + ACTIONS(6134), 2, anon_sym_0, anon_sym__, - ACTIONS(1667), 7, + ACTIONS(6136), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168353,16 +168653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163767] = 5, + [164090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8619), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168372,19 +168672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163791] = 6, + [164114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, - anon_sym_DQUOTE, - ACTIONS(7758), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - STATE(3974), 1, - sym_string, - ACTIONS(7760), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7756), 7, + ACTIONS(8621), 1, + anon_sym_DQUOTE, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168392,16 +168689,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [163817] = 5, + anon_sym_0, + anon_sym__, + [164138] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8621), 1, + ACTIONS(826), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(1745), 1, + aux_sym__simple_variable_name_token1, + STATE(1855), 1, + sym_string, + ACTIONS(1741), 2, + anon_sym_0, + anon_sym__, + ACTIONS(1743), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168409,18 +168711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [163841] = 5, + [164164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8623), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168430,16 +168730,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163865] = 5, + [164188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, + ACTIONS(5427), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8625), 1, + ACTIONS(7016), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + STATE(2807), 1, + sym_string, + ACTIONS(5423), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8625), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168447,18 +168750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [163889] = 5, + [164214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8627), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168468,16 +168769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163913] = 5, + [164238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, ACTIONS(8629), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168487,16 +168788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [163937] = 5, + [164262] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8631), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(1501), 1, + aux_sym__simple_variable_name_token1, + STATE(1648), 1, + sym_string, + ACTIONS(1497), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8631), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168504,18 +168808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [163961] = 5, + [164288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, - ACTIONS(8465), 1, + ACTIONS(1665), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8633), 1, + ACTIONS(5859), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + STATE(1825), 1, + sym_string, + ACTIONS(1663), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8633), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168523,21 +168828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - anon_sym_0, - anon_sym__, - [163985] = 6, + [164314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5730), 1, + ACTIONS(798), 1, anon_sym_DQUOTE, - STATE(978), 1, + ACTIONS(1801), 1, + aux_sym__simple_variable_name_token1, + STATE(1798), 1, sym_string, - ACTIONS(1545), 2, + ACTIONS(1797), 2, anon_sym_0, anon_sym__, - ACTIONS(8635), 7, + ACTIONS(1799), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168545,16 +168848,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT, - [164011] = 5, + [164340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8637), 1, + ACTIONS(8635), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168564,16 +168867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164035] = 5, + [164364] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, - sym__string_content, ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, aux_sym__simple_variable_name_token1, - ACTIONS(8639), 1, + ACTIONS(8637), 1, anon_sym_DQUOTE, - ACTIONS(8459), 9, + ACTIONS(8461), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, @@ -168583,1850 +168886,1838 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [164059] = 9, + [164388] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(5885), 1, + anon_sym_DQUOTE, + ACTIONS(7578), 1, + aux_sym__simple_variable_name_token1, + STATE(3467), 1, + sym_string, + ACTIONS(7574), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8639), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + [164414] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8495), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(8643), 1, anon_sym_DOLLAR, ACTIONS(8645), 1, - anon_sym_DQUOTE, - ACTIONS(8647), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - STATE(3379), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164090] = 9, + [164445] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8571), 1, - anon_sym_DQUOTE, - ACTIONS(8641), 1, + ACTIONS(8651), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8654), 1, + anon_sym_DOLLAR, + ACTIONS(8657), 1, + anon_sym_DQUOTE, + ACTIONS(8659), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8662), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8665), 1, anon_sym_BQUOTE, - ACTIONS(8653), 1, - anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164121] = 4, + [164476] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8459), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(8647), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8649), 1, + anon_sym_BQUOTE, + ACTIONS(8668), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [164142] = 6, + ACTIONS(8670), 1, + anon_sym_DQUOTE, + STATE(3336), 1, + aux_sym_string_repeat1, + STATE(3435), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [164507] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(8659), 1, + ACTIONS(8676), 1, anon_sym_LT_LT, - ACTIONS(8661), 1, + ACTIONS(8678), 1, anon_sym_LT_LT_DASH, - ACTIONS(8663), 1, + ACTIONS(8680), 1, anon_sym_LT_LT_LT, - ACTIONS(8655), 3, + ACTIONS(8672), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8657), 5, + ACTIONS(8674), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [164167] = 9, + [164532] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8607), 1, + ACTIONS(8553), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, - anon_sym_BQUOTE, - ACTIONS(8665), 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, - [164198] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8563), 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, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8667), 1, + ACTIONS(8682), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164229] = 9, + [164563] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8669), 1, + ACTIONS(8684), 1, anon_sym_DOLLAR, - ACTIONS(8671), 1, + ACTIONS(8686), 1, anon_sym_DQUOTE, - STATE(3343), 1, + STATE(3367), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164260] = 9, + [164594] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8617), 1, + ACTIONS(8477), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8673), 1, + ACTIONS(8688), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164291] = 9, + [164625] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8471), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8675), 1, + ACTIONS(8690), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8692), 1, + anon_sym_DQUOTE, + STATE(3343), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164322] = 9, + [164656] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8677), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8680), 1, - anon_sym_DOLLAR, - ACTIONS(8683), 1, + ACTIONS(8537), 1, anon_sym_DQUOTE, - ACTIONS(8685), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8688), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8691), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, + ACTIONS(8694), 1, + anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 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, + [164687] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8609), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8704), 1, + ACTIONS(8696), 1, anon_sym_DOLLAR, - ACTIONS(8706), 1, - anon_sym_DQUOTE, - STATE(3361), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164409] = 9, + [164718] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8567), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8708), 1, + ACTIONS(8698), 1, anon_sym_DOLLAR, - ACTIONS(8710), 1, - anon_sym_DQUOTE, - STATE(3346), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164440] = 9, + [164749] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8467), 1, + ACTIONS(8585), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8712), 1, + ACTIONS(8700), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164471] = 9, + [164780] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8714), 1, + ACTIONS(8702), 1, anon_sym_DOLLAR, - ACTIONS(8716), 1, + ACTIONS(8704), 1, anon_sym_DQUOTE, - STATE(3358), 1, + STATE(3369), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164502] = 9, + [164811] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8547), 1, + ACTIONS(8505), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8718), 1, + ACTIONS(8706), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164533] = 9, + [164842] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8720), 1, + ACTIONS(8708), 1, anon_sym_DOLLAR, - ACTIONS(8722), 1, + ACTIONS(8710), 1, anon_sym_DQUOTE, - STATE(3391), 1, + STATE(3350), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164564] = 9, + [164873] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8724), 1, + ACTIONS(8712), 1, anon_sym_DOLLAR, - ACTIONS(8726), 1, + ACTIONS(8714), 1, anon_sym_DQUOTE, - STATE(3345), 1, + STATE(3341), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164595] = 9, + [164904] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8728), 1, + ACTIONS(8716), 1, anon_sym_DOLLAR, - ACTIONS(8730), 1, + ACTIONS(8718), 1, anon_sym_DQUOTE, - STATE(3332), 1, + STATE(3338), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164626] = 9, + [164935] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8477), 1, + ACTIONS(8623), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8732), 1, + ACTIONS(8720), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164657] = 9, + [164966] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(8531), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8734), 1, + ACTIONS(8722), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164688] = 9, + [164997] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8736), 1, + ACTIONS(8724), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8726), 1, + anon_sym_DQUOTE, + STATE(3368), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164719] = 9, + [165028] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8491), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8738), 1, + ACTIONS(8728), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8730), 1, + anon_sym_DQUOTE, + STATE(3378), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164750] = 9, + [165059] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8591), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8740), 1, + ACTIONS(8732), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8734), 1, + anon_sym_DQUOTE, + STATE(3349), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164781] = 9, + [165090] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8742), 1, + ACTIONS(8736), 1, anon_sym_DOLLAR, - ACTIONS(8744), 1, + ACTIONS(8738), 1, anon_sym_DQUOTE, - STATE(3387), 1, + STATE(3340), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164812] = 9, + [165121] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8497), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8746), 1, + ACTIONS(8740), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8742), 1, + anon_sym_DQUOTE, + STATE(3401), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164843] = 9, + [165152] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8748), 1, + ACTIONS(8744), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8746), 1, + anon_sym_DQUOTE, + STATE(3373), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164874] = 9, + [165183] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8752), 1, + anon_sym_LT_LT, + ACTIONS(8754), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8756), 1, + anon_sym_LT_LT_LT, + ACTIONS(8748), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8750), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [165208] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8605), 1, + ACTIONS(8565), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8750), 1, + ACTIONS(8758), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164905] = 9, + [165239] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8752), 1, + ACTIONS(8760), 1, anon_sym_DOLLAR, - ACTIONS(8754), 1, + ACTIONS(8762), 1, anon_sym_DQUOTE, - STATE(3356), 1, + STATE(3364), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164936] = 9, + [165270] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8756), 1, + ACTIONS(8764), 1, anon_sym_DOLLAR, - ACTIONS(8758), 1, + ACTIONS(8766), 1, anon_sym_DQUOTE, - STATE(3344), 1, + STATE(3358), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164967] = 9, + [165301] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8760), 1, + ACTIONS(8768), 1, anon_sym_DOLLAR, - ACTIONS(8762), 1, + ACTIONS(8770), 1, anon_sym_DQUOTE, - STATE(3350), 1, + STATE(3342), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [164998] = 9, + [165332] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8764), 1, + ACTIONS(8772), 1, anon_sym_DOLLAR, - ACTIONS(8766), 1, + ACTIONS(8774), 1, anon_sym_DQUOTE, - STATE(3337), 1, + STATE(3389), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165029] = 9, + [165363] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8752), 1, + anon_sym_LT_LT, + ACTIONS(8754), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8780), 1, + anon_sym_LT_LT_LT, + ACTIONS(8776), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8778), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [165388] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8499), 1, + ACTIONS(8513), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8768), 1, + ACTIONS(8782), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165060] = 9, + [165419] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8481), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8770), 1, + ACTIONS(8784), 1, anon_sym_DOLLAR, - ACTIONS(8772), 1, - anon_sym_DQUOTE, - STATE(3325), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165091] = 9, + [165450] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 1, + ACTIONS(8603), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8774), 1, + ACTIONS(8786), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165122] = 9, + [165481] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8569), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8776), 1, + ACTIONS(8788), 1, anon_sym_DOLLAR, - ACTIONS(8778), 1, - anon_sym_DQUOTE, - STATE(3351), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165153] = 9, + [165512] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8627), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8780), 1, + ACTIONS(8790), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165184] = 9, + [165543] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(8491), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8782), 1, + ACTIONS(8792), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165215] = 9, + [165574] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8493), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8784), 1, + ACTIONS(8794), 1, anon_sym_DOLLAR, - ACTIONS(8786), 1, - anon_sym_DQUOTE, - STATE(3328), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165246] = 9, + [165605] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8615), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8788), 1, + ACTIONS(8796), 1, anon_sym_DOLLAR, - ACTIONS(8790), 1, - anon_sym_DQUOTE, - STATE(3367), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165277] = 9, + [165636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8533), 1, + ACTIONS(8465), 1, + sym__string_content, + ACTIONS(8467), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8461), 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__, + [165657] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8617), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8792), 1, + ACTIONS(8798), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165308] = 9, + [165688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8525), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8794), 1, + ACTIONS(8800), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8802), 1, + anon_sym_DQUOTE, + STATE(3376), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165339] = 9, + [165719] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8511), 1, + ACTIONS(8595), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8796), 1, + ACTIONS(8804), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165370] = 9, + [165750] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8513), 1, + ACTIONS(8509), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8798), 1, + ACTIONS(8806), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165401] = 9, + [165781] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8800), 1, + ACTIONS(8808), 1, anon_sym_DOLLAR, - ACTIONS(8802), 1, + ACTIONS(8810), 1, anon_sym_DQUOTE, - STATE(3347), 1, + STATE(3371), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165432] = 9, + [165812] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, + ACTIONS(8575), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8804), 1, + ACTIONS(8812), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165463] = 9, + [165843] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8806), 1, + ACTIONS(8814), 1, anon_sym_DOLLAR, - ACTIONS(8808), 1, + ACTIONS(8816), 1, anon_sym_DQUOTE, - STATE(3349), 1, + STATE(3332), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165494] = 9, + [165874] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8810), 1, + ACTIONS(8818), 1, anon_sym_DOLLAR, - ACTIONS(8812), 1, + ACTIONS(8820), 1, anon_sym_DQUOTE, - STATE(3366), 1, + STATE(3399), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165525] = 9, + [165905] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8539), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8814), 1, + ACTIONS(8822), 1, anon_sym_DOLLAR, - ACTIONS(8816), 1, - anon_sym_DQUOTE, - STATE(3378), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165556] = 9, + [165936] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8579), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8818), 1, + ACTIONS(8824), 1, anon_sym_DOLLAR, - ACTIONS(8820), 1, - anon_sym_DQUOTE, - STATE(3369), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [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, + [165967] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(8826), 1, anon_sym_DOLLAR, - ACTIONS(8834), 1, + ACTIONS(8828), 1, anon_sym_DQUOTE, - STATE(3360), 1, + STATE(3382), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165643] = 9, + [165998] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(8830), 1, anon_sym_DOLLAR, - ACTIONS(8838), 1, + ACTIONS(8832), 1, anon_sym_DQUOTE, - STATE(3329), 1, + STATE(3391), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165674] = 9, + [166029] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8485), 1, + ACTIONS(8545), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8840), 1, + ACTIONS(8834), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165705] = 9, + [166060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8581), 1, + ACTIONS(8463), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8842), 1, + ACTIONS(8836), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165736] = 9, + [166091] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8844), 1, + ACTIONS(8838), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8840), 1, + anon_sym_DQUOTE, + STATE(3394), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165767] = 9, + [166122] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8523), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8846), 1, + ACTIONS(8842), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8844), 1, + anon_sym_DQUOTE, + STATE(3381), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165798] = 9, + [166153] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8597), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8848), 1, + ACTIONS(8846), 1, anon_sym_DOLLAR, - ACTIONS(8850), 1, - anon_sym_DQUOTE, - STATE(3377), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165829] = 9, + [166184] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8852), 1, + anon_sym_LT_LT, + ACTIONS(8854), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8856), 1, + anon_sym_LT_LT_LT, + ACTIONS(8848), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8850), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166209] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8517), 1, + ACTIONS(8559), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8852), 1, + ACTIONS(8858), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165860] = 9, + [166240] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(8860), 1, anon_sym_DOLLAR, - ACTIONS(8856), 1, + ACTIONS(8862), 1, anon_sym_DQUOTE, - STATE(3365), 1, + STATE(3386), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165891] = 9, + [166271] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8573), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8858), 1, + ACTIONS(8864), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8866), 1, + anon_sym_DQUOTE, + STATE(3370), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [165922] = 9, + [166302] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8487), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8860), 1, + ACTIONS(8868), 1, anon_sym_DOLLAR, - ACTIONS(8862), 1, - anon_sym_DQUOTE, - STATE(3380), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [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, + [166333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8575), 1, - anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, ACTIONS(8870), 1, anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(8872), 1, + anon_sym_DQUOTE, + STATE(3375), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [166009] = 9, + [166364] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8872), 1, - anon_sym_DOLLAR, ACTIONS(8874), 1, + anon_sym_DOLLAR, + ACTIONS(8876), 1, anon_sym_DQUOTE, - STATE(3364), 1, + STATE(3366), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [166040] = 9, + [166395] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8876), 1, - anon_sym_DOLLAR, ACTIONS(8878), 1, + anon_sym_DOLLAR, + ACTIONS(8880), 1, anon_sym_DQUOTE, - STATE(3331), 1, + STATE(3345), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [166071] = 9, + [166426] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8880), 1, - anon_sym_DOLLAR, ACTIONS(8882), 1, + anon_sym_DOLLAR, + ACTIONS(8884), 1, anon_sym_DQUOTE, - STATE(3384), 1, + STATE(3385), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [166102] = 9, + [166457] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8529), 1, + ACTIONS(8591), 1, anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8884), 1, + ACTIONS(8886), 1, anon_sym_DOLLAR, STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [166133] = 9, + [166488] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8886), 1, - anon_sym_DOLLAR, ACTIONS(8888), 1, + anon_sym_DOLLAR, + ACTIONS(8890), 1, anon_sym_DQUOTE, - STATE(3339), 1, + STATE(3365), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [166164] = 9, + [166519] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(8515), 1, + anon_sym_DQUOTE, ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8647), 1, + ACTIONS(8645), 1, sym__string_content, - ACTIONS(8649), 1, + ACTIONS(8647), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8651), 1, + ACTIONS(8649), 1, anon_sym_BQUOTE, - ACTIONS(8890), 1, - anon_sym_DOLLAR, ACTIONS(8892), 1, - anon_sym_DQUOTE, - STATE(3382), 1, + anon_sym_DOLLAR, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(3433), 4, + STATE(3435), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [166195] = 4, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_POUND, - anon_sym_AT, - [166215] = 8, + [166550] = 8, ACTIONS(59), 1, sym_comment, - ACTIONS(8900), 1, + ACTIONS(8894), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8902), 1, + ACTIONS(8896), 1, anon_sym_DOLLAR, - ACTIONS(8904), 1, + ACTIONS(8898), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8906), 1, + ACTIONS(8900), 1, anon_sym_BQUOTE, - ACTIONS(8908), 1, + ACTIONS(8902), 1, sym__heredoc_body_middle, - ACTIONS(8910), 1, + ACTIONS(8904), 1, sym__heredoc_body_end, - STATE(3398), 4, + STATE(3409), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [166243] = 8, + [166578] = 8, ACTIONS(59), 1, sym_comment, - ACTIONS(8900), 1, + ACTIONS(8894), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8902), 1, + ACTIONS(8896), 1, anon_sym_DOLLAR, - ACTIONS(8904), 1, + ACTIONS(8898), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8906), 1, + ACTIONS(8900), 1, anon_sym_BQUOTE, - ACTIONS(8912), 1, + ACTIONS(8906), 1, sym__heredoc_body_middle, - ACTIONS(8914), 1, + ACTIONS(8908), 1, sym__heredoc_body_end, - STATE(3395), 4, + STATE(3408), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [166271] = 8, + [166606] = 8, ACTIONS(59), 1, sym_comment, - ACTIONS(8900), 1, + ACTIONS(8894), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8902), 1, + ACTIONS(8896), 1, anon_sym_DOLLAR, - ACTIONS(8904), 1, + ACTIONS(8898), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8906), 1, + ACTIONS(8900), 1, anon_sym_BQUOTE, - ACTIONS(8908), 1, + ACTIONS(8910), 1, sym__heredoc_body_middle, - ACTIONS(8916), 1, + ACTIONS(8912), 1, sym__heredoc_body_end, - STATE(3398), 4, + STATE(3403), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [166299] = 8, + [166634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8916), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8918), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8914), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + [166654] = 8, ACTIONS(59), 1, sym_comment, - ACTIONS(8918), 1, + ACTIONS(8894), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8921), 1, + ACTIONS(8896), 1, anon_sym_DOLLAR, - ACTIONS(8924), 1, + ACTIONS(8898), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8927), 1, + ACTIONS(8900), 1, anon_sym_BQUOTE, - ACTIONS(8930), 1, + ACTIONS(8920), 1, sym__heredoc_body_middle, - ACTIONS(8933), 1, + ACTIONS(8922), 1, sym__heredoc_body_end, - STATE(3398), 4, + STATE(3407), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [166327] = 8, + [166682] = 8, ACTIONS(59), 1, sym_comment, - ACTIONS(8900), 1, + ACTIONS(8894), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8902), 1, + ACTIONS(8896), 1, anon_sym_DOLLAR, - ACTIONS(8904), 1, + ACTIONS(8898), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8906), 1, + ACTIONS(8900), 1, anon_sym_BQUOTE, - ACTIONS(8908), 1, + ACTIONS(8906), 1, sym__heredoc_body_middle, - ACTIONS(8935), 1, + ACTIONS(8924), 1, sym__heredoc_body_end, - STATE(3398), 4, + STATE(3408), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [166355] = 8, + [166710] = 8, ACTIONS(59), 1, sym_comment, - ACTIONS(8900), 1, + ACTIONS(8926), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8902), 1, + ACTIONS(8929), 1, anon_sym_DOLLAR, - ACTIONS(8904), 1, + ACTIONS(8932), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8906), 1, + ACTIONS(8935), 1, anon_sym_BQUOTE, - ACTIONS(8937), 1, + ACTIONS(8938), 1, sym__heredoc_body_middle, - ACTIONS(8939), 1, + ACTIONS(8941), 1, sym__heredoc_body_end, - STATE(3397), 4, + STATE(3408), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [166383] = 8, + [166738] = 8, ACTIONS(59), 1, sym_comment, - ACTIONS(8900), 1, + ACTIONS(8894), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8902), 1, + ACTIONS(8896), 1, anon_sym_DOLLAR, - ACTIONS(8904), 1, + ACTIONS(8898), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8906), 1, + ACTIONS(8900), 1, anon_sym_BQUOTE, - ACTIONS(8941), 1, + ACTIONS(8906), 1, sym__heredoc_body_middle, ACTIONS(8943), 1, sym__heredoc_body_end, - STATE(3399), 4, + STATE(3408), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [166411] = 3, + [166766] = 7, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(59), 1, sym_comment, - 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, + STATE(2954), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [166790] = 7, ACTIONS(59), 1, sym_comment, ACTIONS(254), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(274), 1, + ACTIONS(272), 1, anon_sym_LBRACE, - ACTIONS(278), 1, + ACTIONS(276), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(278), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8949), 1, + ACTIONS(8945), 1, anon_sym_LPAREN, - STATE(2630), 3, + STATE(2715), 3, sym_compound_statement, sym_subshell, sym_test_command, - [166451] = 7, - ACTIONS(59), 1, - sym_comment, - ACTIONS(73), 1, + [166814] = 7, + ACTIONS(13), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(85), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(89), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(91), 1, + ACTIONS(31), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(190), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8947), 1, anon_sym_LPAREN, - STATE(2797), 3, + STATE(2992), 3, sym_compound_statement, sym_subshell, sym_test_command, - [166475] = 7, + [166838] = 7, ACTIONS(59), 1, sym_comment, ACTIONS(254), 1, anon_sym_LPAREN_LPAREN, ACTIONS(264), 1, anon_sym_LPAREN, - ACTIONS(274), 1, + ACTIONS(272), 1, anon_sym_LBRACE, - ACTIONS(278), 1, + ACTIONS(276), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(278), 1, anon_sym_LBRACK_LBRACK, - STATE(2560), 3, + STATE(2705), 3, sym_compound_statement, sym_subshell, sym_test_command, - [166499] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(877), 1, - anon_sym_LF, - ACTIONS(8951), 1, - sym__concat, - STATE(3438), 1, - aux_sym_concatenation_repeat1, - ACTIONS(875), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - sym__special_character, - [166519] = 7, + [166862] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(254), 1, + ACTIONS(73), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(264), 1, - anon_sym_LPAREN, - ACTIONS(274), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(278), 1, + ACTIONS(89), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(91), 1, anon_sym_LBRACK_LBRACK, - STATE(2653), 3, + ACTIONS(190), 1, + anon_sym_LPAREN, + STATE(2841), 3, sym_compound_statement, sym_subshell, sym_test_command, - [166543] = 7, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_LBRACK_LBRACK, + [166886] = 3, ACTIONS(59), 1, sym_comment, - STATE(2881), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [166567] = 7, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_LBRACK_LBRACK, + ACTIONS(8949), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8951), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166902] = 7, ACTIONS(59), 1, sym_comment, - STATE(2976), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [166591] = 7, - ACTIONS(13), 1, + ACTIONS(73), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(25), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(89), 1, anon_sym_LBRACK, - ACTIONS(31), 1, + ACTIONS(91), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(59), 1, - sym_comment, ACTIONS(8953), 1, anon_sym_LPAREN, - STATE(2886), 3, + STATE(2823), 3, sym_compound_statement, sym_subshell, sym_test_command, - [166615] = 7, + [166926] = 7, ACTIONS(59), 1, sym_comment, - ACTIONS(73), 1, + ACTIONS(254), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(85), 1, + ACTIONS(264), 1, + anon_sym_LPAREN, + ACTIONS(272), 1, anon_sym_LBRACE, - ACTIONS(89), 1, + ACTIONS(276), 1, anon_sym_LBRACK, - ACTIONS(91), 1, + ACTIONS(278), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8955), 1, - anon_sym_LPAREN, - STATE(2778), 3, + STATE(2695), 3, sym_compound_statement, sym_subshell, sym_test_command, - [166639] = 7, + [166950] = 7, ACTIONS(59), 1, sym_comment, ACTIONS(73), 1, @@ -170439,871 +170730,892 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(190), 1, anon_sym_LPAREN, - STATE(2730), 3, + STATE(2815), 3, sym_compound_statement, sym_subshell, sym_test_command, - [166663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - sym__concat, - ACTIONS(956), 6, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [166678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(912), 1, - sym__concat, - ACTIONS(910), 6, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [166693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(904), 1, - sym__concat, - ACTIONS(902), 6, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [166708] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8957), 1, - anon_sym_LF, - ACTIONS(8959), 1, - anon_sym_in, - ACTIONS(8963), 1, - sym__special_character, - 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(922), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [166748] = 3, - ACTIONS(3), 1, + [166974] = 7, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(59), 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, + STATE(2923), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [166998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(865), 1, anon_sym_LF, - ACTIONS(8951), 1, + ACTIONS(8955), 1, sym__concat, - STATE(3498), 1, + STATE(3437), 1, aux_sym_concatenation_repeat1, - ACTIONS(875), 4, + ACTIONS(863), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, sym__special_character, - [166782] = 3, + [167018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 1, + ACTIONS(902), 1, sym__concat, - ACTIONS(998), 6, + ACTIONS(900), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [166797] = 3, + [167033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(980), 1, sym__concat, - ACTIONS(994), 6, + ACTIONS(978), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [166812] = 3, + [167048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 1, + ACTIONS(962), 1, sym__concat, - ACTIONS(988), 6, + ACTIONS(960), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [166827] = 3, + [167063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 1, + ACTIONS(1004), 1, sym__concat, - ACTIONS(984), 6, + ACTIONS(1002), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [166842] = 3, + [167078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 1, + ACTIONS(970), 1, sym__concat, - ACTIONS(980), 6, + ACTIONS(968), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [166857] = 3, + [167093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 1, + ACTIONS(984), 1, sym__concat, - ACTIONS(976), 6, + ACTIONS(982), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [166872] = 6, + [167108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8951), 1, + ACTIONS(8955), 1, sym__concat, - ACTIONS(8972), 1, + ACTIONS(8957), 1, anon_sym_LF, - ACTIONS(8974), 1, + ACTIONS(8959), 1, anon_sym_in, - STATE(3438), 1, + STATE(3457), 1, aux_sym_concatenation_repeat1, - ACTIONS(8976), 3, + ACTIONS(8961), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [166893] = 3, + [167129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 1, + ACTIONS(988), 1, sym__concat, - ACTIONS(972), 6, + ACTIONS(986), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [166908] = 4, + [167144] = 3, 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(992), 1, + sym__concat, + ACTIONS(990), 6, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8951), 1, - sym__concat, - ACTIONS(8982), 1, + ACTIONS(8957), 1, anon_sym_LF, - ACTIONS(8984), 1, + ACTIONS(8959), 1, anon_sym_in, - STATE(3450), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8986), 3, + ACTIONS(8963), 1, + sym__special_character, + STATE(3456), 1, + aux_sym__literal_repeat1, + ACTIONS(8961), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [166946] = 6, + [167180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8963), 1, - sym__special_character, - ACTIONS(8988), 1, + ACTIONS(8955), 1, + sym__concat, + ACTIONS(8965), 1, anon_sym_LF, - ACTIONS(8990), 1, + ACTIONS(8967), 1, anon_sym_in, - STATE(3417), 1, - aux_sym__literal_repeat1, - ACTIONS(8992), 3, + STATE(3437), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8969), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [166967] = 3, + [167201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 1, + ACTIONS(996), 1, sym__concat, - ACTIONS(968), 6, + ACTIONS(994), 6, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 1, + sym__concat, + ACTIONS(960), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [166982] = 6, + [167231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8951), 1, + ACTIONS(966), 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(964), 6, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9002), 1, + ACTIONS(8973), 1, sym__concat, - ACTIONS(9000), 6, + ACTIONS(8971), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167018] = 3, + [167261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, + ACTIONS(1000), 1, sym__concat, - ACTIONS(964), 6, + ACTIONS(998), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167033] = 6, + [167276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8951), 1, - sym__concat, - ACTIONS(8957), 1, + ACTIONS(882), 1, anon_sym_LF, - ACTIONS(8959), 1, - anon_sym_in, - STATE(3450), 1, + ACTIONS(8975), 1, + sym__concat, + STATE(3441), 1, aux_sym_concatenation_repeat1, - ACTIONS(8961), 3, + ACTIONS(880), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167054] = 3, + [167295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(947), 1, sym__concat, - ACTIONS(933), 6, + ACTIONS(945), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167069] = 3, + [167310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 1, + ACTIONS(890), 1, sym__concat, - ACTIONS(960), 6, + ACTIONS(888), 6, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(951), 1, + sym__concat, + ACTIONS(949), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167084] = 5, + [167340] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 1, + anon_sym_LF, + ACTIONS(8977), 1, + sym__concat, + STATE(3441), 1, + aux_sym_concatenation_repeat1, + ACTIONS(873), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167359] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(865), 1, anon_sym_LF, - ACTIONS(9004), 1, + ACTIONS(8955), 1, sym__concat, - STATE(3440), 1, + STATE(3507), 1, aux_sym_concatenation_repeat1, ACTIONS(863), 4, - anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167103] = 3, + sym__special_character, + [167378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 1, + ACTIONS(939), 1, sym__concat, - ACTIONS(886), 6, + ACTIONS(937), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167118] = 5, + [167393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(8980), 1, anon_sym_LF, - ACTIONS(9006), 1, - sym__concat, - STATE(3440), 1, - aux_sym_concatenation_repeat1, - ACTIONS(879), 4, - anon_sym_in, + ACTIONS(8982), 6, anon_sym_SEMI, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP, - [167137] = 6, + [167408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8951), 1, - sym__concat, + ACTIONS(8984), 1, + anon_sym_LF, + ACTIONS(8986), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1023), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [167425] = 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(3450), 1, - aux_sym_concatenation_repeat1, + STATE(3456), 1, + aux_sym__literal_repeat1, ACTIONS(8992), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167158] = 6, + [167446] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8951), 1, + ACTIONS(8955), 1, sym__concat, - ACTIONS(9009), 1, + ACTIONS(8994), 1, anon_sym_LF, - ACTIONS(9011), 1, + ACTIONS(8996), 1, anon_sym_in, - STATE(3438), 1, + STATE(3437), 1, aux_sym_concatenation_repeat1, - ACTIONS(9013), 3, + ACTIONS(8998), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167179] = 3, + [167467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 1, + ACTIONS(8955), 1, + sym__concat, + ACTIONS(9000), 1, anon_sym_LF, - ACTIONS(9017), 6, + ACTIONS(9002), 1, + anon_sym_in, + STATE(3457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9004), 3, anon_sym_SEMI, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP, - [167194] = 4, + [167488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9019), 1, + ACTIONS(8963), 1, + sym__special_character, + ACTIONS(9000), 1, anon_sym_LF, - ACTIONS(9021), 2, + ACTIONS(9002), 1, + anon_sym_in, + STATE(3456), 1, + aux_sym__literal_repeat1, + ACTIONS(9004), 3, 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, + anon_sym_AMP, + [167509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9023), 1, + ACTIONS(8955), 1, sym__concat, - ACTIONS(8683), 6, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [167226] = 3, + ACTIONS(8988), 1, + anon_sym_LF, + ACTIONS(8990), 1, + anon_sym_in, + STATE(3457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8992), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 1, + ACTIONS(9006), 1, sym__concat, - ACTIONS(918), 6, + ACTIONS(8657), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167241] = 6, + [167545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8963), 1, - sym__special_character, - ACTIONS(8982), 1, + ACTIONS(9008), 1, anon_sym_LF, - ACTIONS(8984), 1, - anon_sym_in, - STATE(3417), 1, - aux_sym__literal_repeat1, - ACTIONS(8986), 3, + ACTIONS(9010), 6, anon_sym_SEMI, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP, + [167560] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9012), 1, + anon_sym_LF, + ACTIONS(9014), 2, + anon_sym_SEMI, anon_sym_AMP, - [167262] = 3, + ACTIONS(1379), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [167577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9025), 1, + ACTIONS(9016), 1, anon_sym_LF, - ACTIONS(9027), 6, + ACTIONS(9018), 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, + [167592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 1, + ACTIONS(8955), 1, sym__concat, - ACTIONS(1002), 6, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [167292] = 5, + ACTIONS(9020), 1, + anon_sym_LF, + ACTIONS(9022), 1, + anon_sym_in, + STATE(3437), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9024), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(958), 1, + anon_sym_LF, + ACTIONS(9026), 1, + sym__special_character, + STATE(3456), 1, + aux_sym__literal_repeat1, + ACTIONS(953), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167632] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(869), 1, anon_sym_LF, ACTIONS(9029), 1, sym__concat, - STATE(3440), 1, + STATE(3441), 1, aux_sym_concatenation_repeat1, - ACTIONS(869), 4, + ACTIONS(867), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167311] = 3, + [167651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 1, + ACTIONS(919), 1, sym__concat, - ACTIONS(914), 6, + ACTIONS(917), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167326] = 3, + [167666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, + ACTIONS(923), 1, sym__concat, - ACTIONS(948), 6, + ACTIONS(921), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167341] = 3, + [167681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, + ACTIONS(927), 1, sym__concat, - ACTIONS(952), 6, + ACTIONS(925), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167356] = 3, + [167696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(931), 1, sym__concat, - ACTIONS(933), 6, + ACTIONS(929), 6, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167371] = 3, + [167711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(935), 1, sym__concat, - anon_sym_LF, - ACTIONS(976), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [167385] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(933), 1, + ACTIONS(933), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(935), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8657), 6, anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167399] = 3, + [167738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 2, - sym__concat, + ACTIONS(1901), 1, anon_sym_LF, - ACTIONS(890), 4, - anon_sym_in, + ACTIONS(8955), 1, + sym__concat, + STATE(3507), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1899), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167413] = 3, + [167756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(1004), 2, sym__concat, anon_sym_LF, - ACTIONS(980), 4, + ACTIONS(1002), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167427] = 3, + [167770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(902), 2, sym__concat, anon_sym_LF, - ACTIONS(902), 4, + ACTIONS(900), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [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, + [167784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 2, + ACTIONS(909), 2, sym__concat, anon_sym_LF, - ACTIONS(929), 4, + ACTIONS(907), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167475] = 3, + [167798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 2, + ACTIONS(898), 2, sym__concat, anon_sym_LF, - ACTIONS(956), 4, + ACTIONS(896), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167489] = 3, + [167812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 2, + ACTIONS(947), 2, sym__concat, anon_sym_LF, - ACTIONS(948), 4, + ACTIONS(945), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167503] = 4, + [167826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, + ACTIONS(9008), 1, anon_sym_LF, - ACTIONS(9039), 2, + ACTIONS(9010), 5, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1092), 3, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [167519] = 3, + anon_sym_AMP, + anon_sym_BQUOTE, + [167840] = 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(4096), 1, + sym_else_clause, + STATE(3563), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [167860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(865), 1, anon_sym_LF, - ACTIONS(875), 5, + ACTIONS(863), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, sym__special_character, - [167533] = 3, + [167874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8968), 1, + ACTIONS(962), 2, + sym__concat, anon_sym_LF, - ACTIONS(8970), 5, + ACTIONS(960), 4, + anon_sym_in, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_BQUOTE, - [167547] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(960), 1, - anon_sym_DOLLAR, - ACTIONS(962), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [167561] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_DOLLAR, - ACTIONS(974), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [167575] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(886), 1, - anon_sym_DOLLAR, - ACTIONS(888), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [167589] = 3, + [167888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 2, + ACTIONS(875), 2, sym__concat, anon_sym_LF, - ACTIONS(894), 4, + ACTIONS(873), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167603] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(910), 1, - anon_sym_DOLLAR, - ACTIONS(912), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [167617] = 3, + [167902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 2, + ACTIONS(894), 2, sym__concat, anon_sym_LF, - ACTIONS(918), 4, + ACTIONS(892), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167631] = 6, + [167916] = 6, ACTIONS(59), 1, sym_comment, ACTIONS(9033), 1, anon_sym_elif, ACTIONS(9035), 1, anon_sym_else, - ACTIONS(9041), 1, + ACTIONS(9037), 1, anon_sym_fi, - STATE(4190), 1, + STATE(4065), 1, sym_else_clause, - STATE(3531), 2, + STATE(3563), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [167651] = 3, + [167936] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_DOLLAR, - ACTIONS(978), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, + ACTIONS(9033), 1, + anon_sym_elif, + ACTIONS(9035), 1, + anon_sym_else, + ACTIONS(9039), 1, + anon_sym_fi, + STATE(4173), 1, + sym_else_clause, + STATE(3563), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [167956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9041), 6, anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167665] = 3, + [167968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(943), 2, sym__concat, anon_sym_LF, - ACTIONS(984), 4, + ACTIONS(941), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167679] = 3, - ACTIONS(59), 1, - sym_comment, - 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, - [167693] = 3, + [167982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(966), 2, sym__concat, anon_sym_LF, - ACTIONS(972), 4, + ACTIONS(964), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167707] = 5, + [167996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 1, - anon_sym_LF, - ACTIONS(8951), 1, + ACTIONS(970), 2, sym__concat, - STATE(3500), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1882), 3, + anon_sym_LF, + ACTIONS(968), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167725] = 3, + [168010] = 3, + ACTIONS(59), 1, + sym_comment, + 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, + [168024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 2, + ACTIONS(962), 2, sym__concat, anon_sym_LF, - ACTIONS(964), 4, + ACTIONS(960), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167739] = 3, + [168038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 2, + ACTIONS(976), 2, sym__concat, anon_sym_LF, - ACTIONS(937), 4, + ACTIONS(974), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167753] = 3, + [168052] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(980), 1, + ACTIONS(900), 1, anon_sym_DOLLAR, - ACTIONS(982), 5, + ACTIONS(902), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167767] = 3, + [168066] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_DOLLAR, + ACTIONS(962), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168080] = 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, + [168094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, - sym__concat, + ACTIONS(9016), 1, anon_sym_LF, - ACTIONS(933), 4, - anon_sym_in, + ACTIONS(9018), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167781] = 4, + anon_sym_BQUOTE, + [168108] = 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, + [168122] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(9043), 1, @@ -171311,1175 +171623,1145 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9045), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(1381), 3, + ACTIONS(1023), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [167797] = 3, + [168138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(980), 2, sym__concat, anon_sym_LF, - ACTIONS(988), 4, + ACTIONS(978), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167811] = 3, + [168152] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(9033), 1, + anon_sym_elif, + ACTIONS(9035), 1, + anon_sym_else, + ACTIONS(9047), 1, + anon_sym_fi, + STATE(4067), 1, + sym_else_clause, + STATE(3563), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [168172] = 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(4072), 1, + sym_else_clause, + STATE(3563), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [168192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 2, + sym__concat, + anon_sym_LF, + ACTIONS(913), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [168206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8980), 1, + anon_sym_LF, + ACTIONS(8982), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_BQUOTE, + [168220] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(960), 1, anon_sym_DOLLAR, - ACTIONS(1000), 5, + ACTIONS(962), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168234] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(982), 1, + anon_sym_DOLLAR, + ACTIONS(984), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167825] = 3, + [168248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(984), 2, sym__concat, anon_sym_LF, - ACTIONS(994), 4, + ACTIONS(982), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167839] = 5, + [168262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 1, + ACTIONS(988), 2, + sym__concat, anon_sym_LF, - ACTIONS(8963), 1, - sym__special_character, - STATE(3417), 1, - aux_sym__literal_repeat1, - ACTIONS(1882), 3, + ACTIONS(986), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167857] = 5, + [168276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, - anon_sym_LF, - ACTIONS(8951), 1, + ACTIONS(992), 2, sym__concat, - STATE(3498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1869), 3, + anon_sym_LF, + ACTIONS(990), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167875] = 3, + [168290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 2, - sym__concat, + ACTIONS(9051), 1, anon_sym_LF, - ACTIONS(960), 4, - anon_sym_in, + ACTIONS(9053), 2, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - [167889] = 3, + ACTIONS(1379), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [168306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(996), 2, sym__concat, anon_sym_LF, - ACTIONS(879), 4, + ACTIONS(994), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167903] = 3, + [168320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(900), 2, + ACTIONS(1000), 2, sym__concat, anon_sym_LF, - ACTIONS(898), 4, + ACTIONS(998), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [167917] = 3, + [168334] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(933), 1, + ACTIONS(986), 1, anon_sym_DOLLAR, - ACTIONS(935), 5, + ACTIONS(988), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [167931] = 3, + [168348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9025), 1, + ACTIONS(890), 2, + sym__concat, anon_sym_LF, - ACTIONS(9027), 5, + ACTIONS(888), 4, + anon_sym_in, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_BQUOTE, - [167945] = 6, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9033), 1, - anon_sym_elif, - ACTIONS(9035), 1, - anon_sym_else, - ACTIONS(9047), 1, - anon_sym_fi, - STATE(4213), 1, - sym_else_clause, - STATE(3531), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [167965] = 3, + [168362] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(952), 1, + ACTIONS(990), 1, anon_sym_DOLLAR, - ACTIONS(954), 5, + ACTIONS(992), 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(916), 2, - sym__concat, - anon_sym_LF, - ACTIONS(914), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [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, + [168376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(882), 1, anon_sym_LF, - ACTIONS(9051), 1, + ACTIONS(9055), 1, sym__concat, - STATE(3440), 1, + STATE(3441), 1, aux_sym_concatenation_repeat1, - ACTIONS(863), 3, + ACTIONS(880), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168031] = 6, + [168394] = 3, ACTIONS(59), 1, sym_comment, - 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(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, + [168408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(869), 1, anon_sym_LF, - ACTIONS(9055), 1, + ACTIONS(9057), 1, sym__concat, - STATE(3440), 1, + STATE(3441), 1, aux_sym_concatenation_repeat1, - ACTIONS(869), 3, + ACTIONS(867), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168069] = 3, + [168426] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(964), 1, + ACTIONS(998), 1, anon_sym_DOLLAR, - ACTIONS(966), 5, + ACTIONS(1000), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [168083] = 3, + [168440] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(994), 1, + ACTIONS(888), 1, anon_sym_DOLLAR, - ACTIONS(996), 5, + ACTIONS(890), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [168097] = 3, + [168454] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(902), 1, + ACTIONS(945), 1, anon_sym_DOLLAR, - ACTIONS(904), 5, + ACTIONS(947), 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(888), 2, - sym__concat, - anon_sym_LF, - ACTIONS(886), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168125] = 3, + [168468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(951), 2, sym__concat, anon_sym_LF, - ACTIONS(968), 4, + ACTIONS(949), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168139] = 3, + [168482] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(948), 1, + ACTIONS(937), 1, anon_sym_DOLLAR, - ACTIONS(950), 5, + ACTIONS(939), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [168153] = 3, + [168496] = 6, 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(9033), 1, + anon_sym_elif, + ACTIONS(9035), 1, + anon_sym_else, + ACTIONS(9059), 1, + anon_sym_fi, + STATE(4100), 1, + sym_else_clause, + STATE(3563), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [168516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 2, + ACTIONS(939), 2, sym__concat, anon_sym_LF, - ACTIONS(910), 4, + ACTIONS(937), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168181] = 3, + [168530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 2, + ACTIONS(935), 2, sym__concat, anon_sym_LF, - ACTIONS(906), 4, + ACTIONS(933), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168195] = 3, - ACTIONS(3), 1, + [168544] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(954), 2, - sym__concat, - anon_sym_LF, - ACTIONS(952), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168209] = 3, + ACTIONS(917), 1, + anon_sym_DOLLAR, + ACTIONS(919), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168558] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(1002), 1, + ACTIONS(921), 1, anon_sym_DOLLAR, - ACTIONS(1004), 5, + ACTIONS(923), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168572] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(949), 1, + anon_sym_DOLLAR, + ACTIONS(951), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168586] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(925), 1, + anon_sym_DOLLAR, + ACTIONS(927), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [168223] = 3, + [168600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(923), 2, sym__concat, anon_sym_LF, - ACTIONS(998), 4, + ACTIONS(921), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168237] = 3, + [168614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 1, + ACTIONS(927), 2, + sym__concat, anon_sym_LF, - ACTIONS(9017), 5, + ACTIONS(925), 4, + anon_sym_in, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_BQUOTE, - [168251] = 3, + [168628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(931), 2, sym__concat, anon_sym_LF, - ACTIONS(933), 4, + ACTIONS(929), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [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, + [168642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(919), 2, sym__concat, anon_sym_LF, - ACTIONS(1002), 4, + ACTIONS(917), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168325] = 3, + [168656] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(988), 1, + ACTIONS(929), 1, anon_sym_DOLLAR, - ACTIONS(990), 5, + ACTIONS(931), 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(9059), 6, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [168351] = 3, + [168670] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(968), 1, + ACTIONS(933), 1, anon_sym_DOLLAR, - ACTIONS(970), 5, + ACTIONS(935), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [168365] = 4, + [168684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1092), 1, - anon_sym_RPAREN, - ACTIONS(9037), 1, + ACTIONS(1859), 1, anon_sym_LF, - ACTIONS(9039), 3, + ACTIONS(8963), 1, + sym__special_character, + STATE(3456), 1, + aux_sym__literal_repeat1, + ACTIONS(1857), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168380] = 4, + [168702] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, - ts_builtin_sym_end, - ACTIONS(9061), 1, + ACTIONS(1859), 1, anon_sym_LF, - ACTIONS(9063), 3, + ACTIONS(8955), 1, + sym__concat, + STATE(3509), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1857), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168395] = 5, + [168720] = 5, ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(9065), 1, + ACTIONS(9061), 1, anon_sym_SEMI, - ACTIONS(9067), 1, + ACTIONS(9063), 1, anon_sym_do, - STATE(2847), 2, + STATE(2877), 2, sym_do_group, sym_compound_statement, - [168412] = 5, + [168737] = 5, + ACTIONS(25), 1, + anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, - anon_sym_LBRACE, - ACTIONS(9069), 1, - anon_sym_SEMI, - ACTIONS(9071), 1, + ACTIONS(9063), 1, anon_sym_do, - STATE(2675), 2, + ACTIONS(9065), 1, + anon_sym_SEMI, + STATE(2947), 2, sym_do_group, sym_compound_statement, - [168429] = 4, - ACTIONS(3), 1, + [168754] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(1379), 1, - ts_builtin_sym_end, - ACTIONS(9073), 1, - anon_sym_LF, - ACTIONS(9075), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168444] = 5, + ACTIONS(7590), 1, + sym__concat, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9069), 1, + anon_sym_RPAREN, + STATE(3606), 1, + aux_sym_concatenation_repeat1, + STATE(3783), 1, + aux_sym_case_item_repeat1, + [168773] = 4, ACTIONS(59), 1, sym_comment, - 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(7590), 1, + sym__concat, + STATE(3603), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [168788] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, - anon_sym_LBRACE, + ACTIONS(7590), 1, + sym__concat, + ACTIONS(9067), 1, + anon_sym_PIPE, ACTIONS(9071), 1, - anon_sym_do, - ACTIONS(9079), 1, - anon_sym_SEMI, - STATE(2640), 2, - sym_do_group, - sym_compound_statement, - [168478] = 4, + anon_sym_RPAREN, + STATE(3603), 1, + aux_sym_concatenation_repeat1, + STATE(3841), 1, + aux_sym_case_item_repeat1, + [168807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, - anon_sym_RPAREN, - ACTIONS(9043), 1, + ACTIONS(1379), 1, + anon_sym_BQUOTE, + ACTIONS(9073), 1, anon_sym_LF, - ACTIONS(9045), 3, + ACTIONS(9075), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168493] = 5, - ACTIONS(59), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_LBRACE, - ACTIONS(9081), 1, - anon_sym_SEMI, - ACTIONS(9083), 1, - anon_sym_do, - STATE(2798), 2, - sym_do_group, - sym_compound_statement, - [168510] = 4, - ACTIONS(59), 1, - sym_comment, - 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, + [168822] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(7583), 1, + ACTIONS(7590), 1, sym__concat, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9092), 1, + ACTIONS(9077), 1, anon_sym_RPAREN, STATE(3606), 1, aux_sym_concatenation_repeat1, - STATE(3821), 1, + STATE(3639), 1, aux_sym_case_item_repeat1, - [168544] = 6, + [168841] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(7583), 1, + ACTIONS(7590), 1, sym__concat, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9094), 1, + ACTIONS(9079), 1, anon_sym_RPAREN, - STATE(3609), 1, + STATE(3603), 1, aux_sym_concatenation_repeat1, - STATE(3828), 1, + STATE(3659), 1, aux_sym_case_item_repeat1, - [168563] = 5, - ACTIONS(59), 1, - sym_comment, - ACTIONS(274), 1, - anon_sym_LBRACE, - ACTIONS(9071), 1, - anon_sym_do, - ACTIONS(9096), 1, - anon_sym_SEMI, - STATE(2575), 2, - sym_do_group, - sym_compound_statement, - [168580] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9098), 1, - anon_sym_LF, - ACTIONS(9100), 1, - anon_sym_in, - ACTIONS(9102), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168595] = 6, + [168860] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(7644), 1, + ACTIONS(7650), 1, sym__special_character, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9094), 1, + ACTIONS(9069), 1, anon_sym_RPAREN, - STATE(3036), 1, + STATE(3049), 1, aux_sym__literal_repeat1, - STATE(3836), 1, + STATE(3834), 1, aux_sym_case_item_repeat1, - [168614] = 5, + [168879] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(272), 1, anon_sym_LBRACE, + ACTIONS(9081), 1, + anon_sym_SEMI, ACTIONS(9083), 1, anon_sym_do, - ACTIONS(9104), 1, - anon_sym_SEMI, - STATE(2805), 2, + STATE(2662), 2, sym_do_group, sym_compound_statement, - [168631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8968), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8970), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168644] = 6, + [168896] = 5, 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(85), 1, + anon_sym_LBRACE, + ACTIONS(9085), 1, + anon_sym_SEMI, + ACTIONS(9087), 1, + anon_sym_do, + STATE(2794), 2, + sym_do_group, + sym_compound_statement, + [168913] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(272), 1, anon_sym_LBRACE, ACTIONS(9083), 1, anon_sym_do, - ACTIONS(9108), 1, + ACTIONS(9089), 1, anon_sym_SEMI, - STATE(2807), 2, + STATE(2672), 2, sym_do_group, sym_compound_statement, - [168680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9009), 1, - anon_sym_LF, - ACTIONS(9011), 1, - anon_sym_in, - ACTIONS(9013), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168695] = 6, + [168930] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(7583), 1, - sym__concat, - ACTIONS(9090), 1, + ACTIONS(7650), 1, + sym__special_character, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9110), 1, + ACTIONS(9077), 1, anon_sym_RPAREN, - STATE(3609), 1, - aux_sym_concatenation_repeat1, - STATE(3642), 1, + STATE(3049), 1, + aux_sym__literal_repeat1, + STATE(3829), 1, aux_sym_case_item_repeat1, - [168714] = 4, + [168949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9112), 1, + ACTIONS(9091), 1, anon_sym_LF, - ACTIONS(9114), 1, + ACTIONS(9093), 1, anon_sym_in, - ACTIONS(9116), 3, + ACTIONS(9095), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [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, + [168964] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(7583), 1, + ACTIONS(7590), 1, sym__concat, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9120), 1, + ACTIONS(9097), 1, anon_sym_RPAREN, STATE(3606), 1, aux_sym_concatenation_repeat1, - STATE(3632), 1, + STATE(3660), 1, aux_sym_case_item_repeat1, - [168767] = 5, + [168983] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(9083), 1, + ACTIONS(9087), 1, anon_sym_do, - ACTIONS(9122), 1, + ACTIONS(9099), 1, anon_sym_SEMI, - STATE(2808), 2, + STATE(2768), 2, sym_do_group, sym_compound_statement, - [168784] = 5, + [169000] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(272), 1, anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9083), 1, anon_sym_do, - ACTIONS(9124), 1, + ACTIONS(9101), 1, anon_sym_SEMI, - STATE(2717), 2, + STATE(2671), 2, sym_do_group, sym_compound_statement, - [168801] = 4, + [169017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8994), 1, + ACTIONS(1023), 1, + anon_sym_BQUOTE, + ACTIONS(9103), 1, anon_sym_LF, - ACTIONS(8996), 1, - anon_sym_in, - ACTIONS(8998), 3, + ACTIONS(9105), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168816] = 4, - ACTIONS(59), 1, + [169032] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7583), 1, - sym__concat, - STATE(3606), 1, - aux_sym_concatenation_repeat1, - ACTIONS(877), 3, - anon_sym_PIPE, + ACTIONS(1379), 1, anon_sym_RPAREN, - sym__special_character, - [168831] = 5, + ACTIONS(9051), 1, + anon_sym_LF, + ACTIONS(9053), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169047] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(9083), 1, + ACTIONS(9087), 1, anon_sym_do, - ACTIONS(9126), 1, + ACTIONS(9107), 1, anon_sym_SEMI, - STATE(2816), 2, + STATE(2814), 2, sym_do_group, sym_compound_statement, - [168848] = 5, + [169064] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(9083), 1, + ACTIONS(9087), 1, anon_sym_do, - ACTIONS(9128), 1, + ACTIONS(9109), 1, anon_sym_SEMI, - STATE(2818), 2, + STATE(2762), 2, sym_do_group, sym_compound_statement, - [168865] = 5, + [169081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9016), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9018), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LF, + ACTIONS(9022), 1, + anon_sym_in, + ACTIONS(9024), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169109] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(272), 1, anon_sym_LBRACE, ACTIONS(9083), 1, anon_sym_do, - ACTIONS(9130), 1, + ACTIONS(9111), 1, anon_sym_SEMI, - STATE(2804), 2, + STATE(2684), 2, sym_do_group, sym_compound_statement, - [168882] = 5, + [169126] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9087), 1, anon_sym_do, - ACTIONS(9132), 1, + ACTIONS(9113), 1, anon_sym_SEMI, - STATE(2715), 2, + STATE(2795), 2, sym_do_group, sym_compound_statement, - [168899] = 5, + [169143] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(272), 1, anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9083), 1, anon_sym_do, - ACTIONS(9134), 1, + ACTIONS(9115), 1, anon_sym_SEMI, - STATE(2708), 2, + STATE(2687), 2, sym_do_group, sym_compound_statement, - [168916] = 3, - ACTIONS(3), 1, + [169160] = 5, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, sym_comment, - ACTIONS(9025), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9027), 3, + ACTIONS(9063), 1, + anon_sym_do, + ACTIONS(9117), 1, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [168929] = 6, + STATE(2961), 2, + sym_do_group, + sym_compound_statement, + [169177] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(7644), 1, - sym__special_character, - ACTIONS(9090), 1, + ACTIONS(7590), 1, + sym__concat, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9110), 1, + ACTIONS(9119), 1, anon_sym_RPAREN, - STATE(3036), 1, - aux_sym__literal_repeat1, - STATE(3645), 1, + STATE(3603), 1, + aux_sym_concatenation_repeat1, + STATE(3780), 1, aux_sym_case_item_repeat1, - [168948] = 5, - ACTIONS(59), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_LBRACE, - ACTIONS(9083), 1, - anon_sym_do, - ACTIONS(9136), 1, - anon_sym_SEMI, - STATE(2829), 2, - sym_do_group, - sym_compound_statement, - [168965] = 4, + [169196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8972), 1, + ACTIONS(8980), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8974), 1, - anon_sym_in, - ACTIONS(8976), 3, + ACTIONS(8982), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168980] = 4, + [169209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9138), 1, + ACTIONS(9008), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9140), 1, - anon_sym_in, - ACTIONS(9142), 3, + ACTIONS(9010), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [168995] = 4, + [169222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1092), 1, - anon_sym_BQUOTE, - ACTIONS(9144), 1, + ACTIONS(1381), 1, + ts_builtin_sym_end, + ACTIONS(9121), 1, anon_sym_LF, - ACTIONS(9146), 3, + ACTIONS(9123), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169010] = 4, + [169237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, - anon_sym_BQUOTE, - ACTIONS(9148), 1, + ACTIONS(1023), 1, + anon_sym_RPAREN, + ACTIONS(9043), 1, anon_sym_LF, - ACTIONS(9150), 3, + ACTIONS(9045), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169025] = 5, - ACTIONS(25), 1, - anon_sym_LBRACE, + [169252] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(9087), 1, anon_sym_do, - ACTIONS(9152), 1, + ACTIONS(9125), 1, anon_sym_SEMI, - STATE(2858), 2, + STATE(2739), 2, sym_do_group, sym_compound_statement, - [169042] = 6, + [169269] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(7583), 1, - sym__concat, - ACTIONS(9090), 1, + ACTIONS(9129), 1, + anon_sym_elif, + ACTIONS(9127), 2, + anon_sym_fi, + anon_sym_else, + STATE(3563), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [169284] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7650), 1, + sym__special_character, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9154), 1, + ACTIONS(9097), 1, anon_sym_RPAREN, - STATE(3609), 1, - aux_sym_concatenation_repeat1, - STATE(3651), 1, + STATE(3049), 1, + aux_sym__literal_repeat1, + STATE(3663), 1, aux_sym_case_item_repeat1, - [169061] = 5, - ACTIONS(25), 1, + [169303] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(85), 1, anon_sym_LBRACE, + ACTIONS(9087), 1, + anon_sym_do, + ACTIONS(9132), 1, + anon_sym_SEMI, + STATE(2778), 2, + sym_do_group, + sym_compound_statement, + [169320] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(272), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, anon_sym_do, - ACTIONS(9156), 1, + ACTIONS(9134), 1, + anon_sym_SEMI, + STATE(2675), 2, + sym_do_group, + sym_compound_statement, + [169337] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(272), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, + anon_sym_do, + ACTIONS(9136), 1, anon_sym_SEMI, - STATE(2854), 2, + STATE(2694), 2, sym_do_group, sym_compound_statement, - [169078] = 5, + [169354] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9138), 1, + anon_sym_LF, + ACTIONS(9140), 1, + anon_sym_in, + ACTIONS(9142), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169369] = 5, ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(9063), 1, anon_sym_do, - ACTIONS(9158), 1, + ACTIONS(9144), 1, anon_sym_SEMI, STATE(2936), 2, sym_do_group, sym_compound_statement, - [169095] = 5, + [169386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8994), 1, + anon_sym_LF, + ACTIONS(8996), 1, + anon_sym_in, + ACTIONS(8998), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169401] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(9087), 1, + anon_sym_do, + ACTIONS(9146), 1, + anon_sym_SEMI, + STATE(2788), 2, + sym_do_group, + sym_compound_statement, + [169418] = 5, ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(9063), 1, anon_sym_do, - ACTIONS(9160), 1, + ACTIONS(9148), 1, anon_sym_SEMI, - STATE(2851), 2, + STATE(2872), 2, sym_do_group, sym_compound_statement, - [169112] = 5, + [169435] = 5, ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(9063), 1, anon_sym_do, - ACTIONS(9162), 1, + ACTIONS(9150), 1, anon_sym_SEMI, - STATE(2962), 2, + STATE(2921), 2, sym_do_group, sym_compound_statement, - [169129] = 5, + [169452] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8965), 1, + anon_sym_LF, + ACTIONS(8967), 1, + anon_sym_in, + ACTIONS(8969), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169467] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(272), 1, anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9083), 1, anon_sym_do, - ACTIONS(9164), 1, + ACTIONS(9152), 1, anon_sym_SEMI, - STATE(2571), 2, + STATE(2686), 2, sym_do_group, sym_compound_statement, - [169146] = 5, + [169484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9154), 1, + anon_sym_LF, + ACTIONS(9156), 1, + anon_sym_in, + ACTIONS(9158), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169499] = 5, ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(9063), 1, anon_sym_do, - ACTIONS(9166), 1, + ACTIONS(9160), 1, anon_sym_SEMI, - STATE(2892), 2, + STATE(2987), 2, sym_do_group, sym_compound_statement, - [169163] = 5, + [169516] = 5, ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(9063), 1, anon_sym_do, - ACTIONS(9168), 1, + ACTIONS(9162), 1, anon_sym_SEMI, - STATE(2922), 2, + STATE(2959), 2, sym_do_group, sym_compound_statement, - [169180] = 6, - ACTIONS(59), 1, - sym_comment, - ACTIONS(7644), 1, - sym__special_character, - ACTIONS(9090), 1, - anon_sym_PIPE, - ACTIONS(9154), 1, - anon_sym_RPAREN, - STATE(3036), 1, - aux_sym__literal_repeat1, - STATE(3646), 1, - aux_sym_case_item_repeat1, - [169199] = 3, + [169533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 2, + ACTIONS(1025), 1, ts_builtin_sym_end, + ACTIONS(9164), 1, anon_sym_LF, - ACTIONS(9017), 3, + ACTIONS(9166), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169212] = 6, + [169548] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(7583), 1, + ACTIONS(7590), 1, + sym__concat, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9168), 1, + anon_sym_RPAREN, + STATE(3603), 1, + aux_sym_concatenation_repeat1, + STATE(3679), 1, + aux_sym_case_item_repeat1, + [169567] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7590), 1, sym__concat, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, ACTIONS(9170), 1, anon_sym_RPAREN, STATE(3606), 1, aux_sym_concatenation_repeat1, - STATE(3652), 1, + STATE(3680), 1, aux_sym_case_item_repeat1, - [169231] = 6, + [169586] = 6, ACTIONS(59), 1, sym_comment, - ACTIONS(7644), 1, + ACTIONS(7650), 1, sym__special_character, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9118), 1, + ACTIONS(9170), 1, anon_sym_RPAREN, - STATE(3036), 1, + STATE(3049), 1, aux_sym__literal_repeat1, - STATE(3717), 1, + STATE(3690), 1, aux_sym_case_item_repeat1, - [169250] = 4, - ACTIONS(59), 1, + [169605] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(9172), 1, - anon_sym_esac, - ACTIONS(9174), 1, + anon_sym_LF, + ACTIONS(9174), 3, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - ACTIONS(9176), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [169264] = 5, + anon_sym_AMP, + [169617] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9178), 1, + ACTIONS(9176), 1, anon_sym_esac, - ACTIONS(9180), 1, + ACTIONS(9178), 1, anon_sym_SEMI_SEMI, - ACTIONS(9182), 1, + ACTIONS(9180), 2, 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(7583), 1, - sym__concat, - STATE(3609), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9186), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [169308] = 4, + [169631] = 4, ACTIONS(59), 1, sym_comment, - 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, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9067), 1, + ACTIONS(9087), 1, anon_sym_do, - STATE(2918), 2, + STATE(2770), 2, sym_do_group, sym_compound_statement, - [169336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 1, - anon_sym_LF, - ACTIONS(1869), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169348] = 4, + [169645] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, - anon_sym_LBRACE, - ACTIONS(9071), 1, - anon_sym_do, - STATE(2676), 2, - sym_do_group, - sym_compound_statement, - [169362] = 4, + ACTIONS(9182), 1, + anon_sym_esac, + ACTIONS(9184), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9186), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [169659] = 4, ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(9063), 1, anon_sym_do, - STATE(2919), 2, + STATE(2944), 2, sym_do_group, sym_compound_statement, - [169376] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, + [169673] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, - anon_sym_do, - STATE(2920), 2, - sym_do_group, - sym_compound_statement, - [169390] = 5, + ACTIONS(7650), 1, + sym__special_character, + STATE(3049), 1, + aux_sym__literal_repeat1, + ACTIONS(9188), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [169687] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(9190), 1, @@ -172490,56 +172772,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, ACTIONS(9196), 1, anon_sym_SEMI_SEMI_AMP, - [169406] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9067), 1, - anon_sym_do, - STATE(2964), 2, - sym_do_group, - sym_compound_statement, - [169420] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9067), 1, - anon_sym_do, - STATE(2870), 2, - sym_do_group, - sym_compound_statement, - [169434] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, + [169703] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 1, - anon_sym_do, - STATE(2888), 2, - sym_do_group, - sym_compound_statement, - [169448] = 4, + ACTIONS(4570), 1, + anon_sym_LF, + ACTIONS(4568), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169715] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(9198), 1, anon_sym_esac, ACTIONS(9200), 1, anon_sym_SEMI_SEMI, - ACTIONS(9202), 2, + ACTIONS(9202), 1, anon_sym_SEMI_AMP, + ACTIONS(9204), 1, anon_sym_SEMI_SEMI_AMP, - [169462] = 3, - ACTIONS(3), 1, + [169731] = 4, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(59), 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(9063), 1, + anon_sym_do, + STATE(2913), 2, + sym_do_group, + sym_compound_statement, + [169745] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(9206), 1, @@ -172550,210 +172813,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, ACTIONS(9212), 1, anon_sym_SEMI_SEMI_AMP, - [169490] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, + [169761] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, - anon_sym_do, - STATE(2836), 2, - sym_do_group, - sym_compound_statement, - [169504] = 4, + ACTIONS(7590), 1, + sym__concat, + STATE(3606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9188), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [169775] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(9083), 1, + ACTIONS(9087), 1, anon_sym_do, - STATE(2831), 2, + STATE(2781), 2, sym_do_group, sym_compound_statement, - [169518] = 4, + [169789] = 5, ACTIONS(59), 1, sym_comment, ACTIONS(9214), 1, anon_sym_esac, ACTIONS(9216), 1, anon_sym_SEMI_SEMI, - ACTIONS(9218), 2, + ACTIONS(9218), 1, anon_sym_SEMI_AMP, + ACTIONS(9220), 1, anon_sym_SEMI_SEMI_AMP, - [169532] = 4, + [169805] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(7590), 1, + sym__concat, + STATE(3603), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9222), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [169819] = 4, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(9083), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9063), 1, anon_sym_do, - STATE(2828), 2, + STATE(2871), 2, sym_do_group, sym_compound_statement, - [169546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9220), 1, - anon_sym_LF, - ACTIONS(9222), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169558] = 4, + [169833] = 4, + ACTIONS(25), 1, + anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, - anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9063), 1, anon_sym_do, - STATE(2706), 2, + STATE(2989), 2, sym_do_group, sym_compound_statement, - [169572] = 4, + [169847] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(9224), 1, + anon_sym_RBRACK, + ACTIONS(9226), 1, + sym__special_character, + ACTIONS(9228), 1, + sym__concat, + STATE(3616), 1, + aux_sym__literal_repeat1, + [169863] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(272), 1, anon_sym_LBRACE, ACTIONS(9083), 1, anon_sym_do, - STATE(2827), 2, + STATE(2678), 2, sym_do_group, sym_compound_statement, - [169586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4515), 1, - anon_sym_LF, - ACTIONS(4513), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 1, - anon_sym_LF, - ACTIONS(4533), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [169610] = 4, + [169877] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(272), 1, anon_sym_LBRACE, ACTIONS(9083), 1, anon_sym_do, - STATE(2826), 2, + STATE(2688), 2, sym_do_group, sym_compound_statement, - [169624] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9224), 1, - anon_sym_esac, - ACTIONS(9226), 1, - anon_sym_SEMI_SEMI, - ACTIONS(9228), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [169638] = 5, + [169891] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9190), 1, - anon_sym_esac, ACTIONS(9230), 1, - anon_sym_SEMI_SEMI, - ACTIONS(9232), 1, - anon_sym_SEMI_AMP, - ACTIONS(9234), 1, - anon_sym_SEMI_SEMI_AMP, - [169654] = 4, + sym__concat, + STATE(3034), 1, + aux_sym_concatenation_repeat1, + ACTIONS(882), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [169905] = 4, ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(9063), 1, anon_sym_do, - STATE(2941), 2, + STATE(2925), 2, sym_do_group, sym_compound_statement, - [169668] = 4, + [169919] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LBRACE, - ACTIONS(9083), 1, - anon_sym_do, - STATE(2817), 2, - sym_do_group, - sym_compound_statement, - [169682] = 4, + ACTIONS(9206), 1, + anon_sym_esac, + ACTIONS(9232), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9234), 1, + anon_sym_SEMI_AMP, + ACTIONS(9236), 1, + anon_sym_SEMI_SEMI_AMP, + [169935] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9236), 1, + ACTIONS(9238), 1, sym__concat, - STATE(3025), 1, + STATE(3034), 1, aux_sym_concatenation_repeat1, - ACTIONS(865), 2, + ACTIONS(869), 2, anon_sym_PIPE, anon_sym_RPAREN, - [169696] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_LBRACE, - ACTIONS(9083), 1, - anon_sym_do, - STATE(2815), 2, - sym_do_group, - sym_compound_statement, - [169710] = 4, + [169949] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(9083), 1, + ACTIONS(9087), 1, anon_sym_do, - STATE(2814), 2, + STATE(2741), 2, sym_do_group, sym_compound_statement, - [169724] = 4, + [169963] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(9238), 1, + ACTIONS(863), 1, + sym__special_character, + ACTIONS(865), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, sym__concat, - STATE(3025), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - ACTIONS(871), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [169738] = 5, + [169979] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_RBRACK, - ACTIONS(9242), 1, + ACTIONS(9226), 1, sym__special_character, + ACTIONS(9242), 1, + anon_sym_RBRACK, ACTIONS(9244), 1, sym__concat, - STATE(3621), 1, + STATE(3616), 1, aux_sym__literal_repeat1, - [169754] = 5, + [169995] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9206), 1, - anon_sym_esac, ACTIONS(9246), 1, - anon_sym_SEMI_SEMI, + anon_sym_esac, ACTIONS(9248), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9250), 2, anon_sym_SEMI_AMP, - ACTIONS(9250), 1, anon_sym_SEMI_SEMI_AMP, - [169770] = 5, + [170009] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9178), 1, + ACTIONS(272), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2668), 2, + sym_do_group, + sym_compound_statement, + [170023] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9198), 1, anon_sym_esac, ACTIONS(9252), 1, anon_sym_SEMI_SEMI, @@ -172761,4780 +173009,4855 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, ACTIONS(9256), 1, anon_sym_SEMI_SEMI_AMP, - [169786] = 5, + [170039] = 4, 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, + anon_sym_esac, + ACTIONS(9260), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9262), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [170053] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9242), 1, + ACTIONS(272), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2673), 2, + sym_do_group, + sym_compound_statement, + [170067] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(9087), 1, + anon_sym_do, + STATE(2782), 2, + sym_do_group, + sym_compound_statement, + [170081] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9264), 1, sym__special_character, - ACTIONS(9260), 1, - anon_sym_RBRACK, - ACTIONS(9262), 1, - sym__concat, - STATE(3621), 1, + STATE(3616), 1, aux_sym__literal_repeat1, - [169818] = 3, + ACTIONS(958), 2, + sym__concat, + anon_sym_RBRACK, + [170095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9264), 1, + ACTIONS(9267), 1, + anon_sym_LF, + ACTIONS(9269), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [170107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9271), 1, + anon_sym_LF, + ACTIONS(4831), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [170119] = 4, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9063), 1, + anon_sym_do, + STATE(2975), 2, + sym_do_group, + sym_compound_statement, + [170133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1901), 1, anon_sym_LF, - ACTIONS(9266), 3, + ACTIONS(1899), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169830] = 4, + [170145] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9214), 1, + anon_sym_esac, + ACTIONS(9273), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9275), 1, + anon_sym_SEMI_AMP, + ACTIONS(9277), 1, + anon_sym_SEMI_SEMI_AMP, + [170161] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(272), 1, anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9083), 1, anon_sym_do, - STATE(2689), 2, + STATE(2664), 2, sym_do_group, sym_compound_statement, - [169844] = 4, + [170175] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(9083), 1, + ACTIONS(9087), 1, anon_sym_do, - STATE(2820), 2, + STATE(2737), 2, sym_do_group, sym_compound_statement, - [169858] = 3, + [170189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9268), 1, + ACTIONS(9279), 1, anon_sym_LF, - ACTIONS(4065), 3, + ACTIONS(4217), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169870] = 4, + [170201] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(863), 1, + sym__special_character, + STATE(3781), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym__concat, + anon_sym_RBRACK, + [170215] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9087), 1, + anon_sym_do, + STATE(2740), 2, + sym_do_group, + sym_compound_statement, + [170229] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(272), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, anon_sym_do, - STATE(2596), 2, + STATE(2663), 2, sym_do_group, sym_compound_statement, - [169884] = 5, + [170243] = 5, ACTIONS(59), 1, sym_comment, - ACTIONS(9270), 1, + ACTIONS(9190), 1, anon_sym_esac, - ACTIONS(9272), 1, + ACTIONS(9281), 1, anon_sym_SEMI_SEMI, - ACTIONS(9274), 1, + ACTIONS(9283), 1, anon_sym_SEMI_AMP, - ACTIONS(9276), 1, + ACTIONS(9285), 1, anon_sym_SEMI_SEMI_AMP, - [169900] = 4, + [170259] = 4, + ACTIONS(25), 1, + anon_sym_LBRACE, 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(9063), 1, + anon_sym_do, + STATE(2945), 2, + sym_do_group, + sym_compound_statement, + [170273] = 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(85), 1, + anon_sym_LBRACE, + ACTIONS(9087), 1, + anon_sym_do, + STATE(2738), 2, + sym_do_group, + sym_compound_statement, + [170287] = 4, + ACTIONS(25), 1, + anon_sym_LBRACE, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, - anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9063), 1, anon_sym_do, - STATE(2624), 2, + STATE(2968), 2, sym_do_group, sym_compound_statement, - [169942] = 4, + [170301] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(272), 1, anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9083), 1, anon_sym_do, - STATE(2629), 2, + STATE(2660), 2, sym_do_group, sym_compound_statement, - [169956] = 3, + [170315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9281), 1, + ACTIONS(9287), 1, anon_sym_LF, - ACTIONS(4053), 3, + ACTIONS(9289), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169968] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(274), 1, - anon_sym_LBRACE, - ACTIONS(9071), 1, - anon_sym_do, - STATE(2634), 2, - sym_do_group, - sym_compound_statement, - [169982] = 3, + [170327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9283), 1, + ACTIONS(9291), 1, anon_sym_LF, - ACTIONS(9285), 3, + ACTIONS(4827), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [169994] = 4, + [170339] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(9071), 1, + ACTIONS(9087), 1, anon_sym_do, - STATE(2648), 2, + STATE(2796), 2, sym_do_group, sym_compound_statement, - [170008] = 5, + [170353] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9270), 1, - anon_sym_esac, - ACTIONS(9287), 1, + ACTIONS(272), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2677), 2, + sym_do_group, + sym_compound_statement, + [170367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 1, + anon_sym_LF, + ACTIONS(4552), 3, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - ACTIONS(9289), 1, - anon_sym_SEMI_AMP, - ACTIONS(9291), 1, - anon_sym_SEMI_SEMI_AMP, - [170024] = 4, + anon_sym_AMP, + [170379] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9293), 1, + ACTIONS(3457), 1, anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [170037] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9295), 1, - anon_sym_RBRACE, - STATE(3778), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170050] = 4, + [170392] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9297), 1, + ACTIONS(9293), 1, anon_sym_RPAREN, - STATE(3862), 1, + STATE(3868), 1, aux_sym_case_item_repeat1, - [170063] = 4, + [170405] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(4069), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170076] = 4, + [170418] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4475), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170089] = 4, + [170431] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(4942), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [170444] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4548), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [170457] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9299), 1, + ACTIONS(9295), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170102] = 4, + [170470] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9297), 1, + anon_sym_LBRACK, + ACTIONS(9299), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [170481] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, sym__concat, ACTIONS(9301), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170115] = 4, + [170494] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9299), 1, + ACTIONS(9295), 1, anon_sym_RBRACE, ACTIONS(9303), 1, sym__special_character, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170128] = 3, + [170507] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9119), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_case_item_repeat1, + [170520] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9305), 1, + ACTIONS(9297), 1, anon_sym_LBRACK, - ACTIONS(9307), 2, + ACTIONS(9305), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170139] = 4, + [170531] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9309), 1, + ACTIONS(2794), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170152] = 4, + [170544] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9301), 1, - anon_sym_RBRACE, ACTIONS(9303), 1, sym__special_character, - STATE(3673), 1, + ACTIONS(9307), 1, + anon_sym_RBRACE, + STATE(3693), 1, aux_sym__literal_repeat1, - [170165] = 4, + [170557] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9311), 1, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9309), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [170178] = 4, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [170570] = 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(9240), 1, + sym__concat, + ACTIONS(9307), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [170583] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(3911), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [170596] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, sym__concat, ACTIONS(9311), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170204] = 4, + [170609] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9311), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + STATE(3693), 1, + aux_sym__literal_repeat1, + [170622] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4976), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170217] = 4, + [170635] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9194), 1, + anon_sym_SEMI_AMP, + ACTIONS(9196), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9313), 1, + anon_sym_SEMI_SEMI, + [170648] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, ACTIONS(9315), 1, anon_sym_RPAREN, - STATE(3862), 1, + STATE(3868), 1, aux_sym_case_item_repeat1, - [170230] = 4, + [170661] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, ACTIONS(9317), 1, anon_sym_RPAREN, - STATE(3862), 1, + STATE(3868), 1, aux_sym_case_item_repeat1, - [170243] = 4, + [170674] = 4, ACTIONS(59), 1, sym_comment, + ACTIONS(9301), 1, + anon_sym_RBRACE, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9319), 1, - anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170256] = 4, + [170687] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9321), 1, + ACTIONS(9319), 1, anon_sym_RPAREN, - STATE(3862), 1, + STATE(3868), 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, + [170700] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9323), 1, + ACTIONS(9321), 1, anon_sym_RPAREN, - STATE(3862), 1, + STATE(3868), 1, aux_sym_case_item_repeat1, - [170308] = 4, + [170713] = 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(9210), 1, + anon_sym_SEMI_AMP, + ACTIONS(9212), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9323), 1, + anon_sym_SEMI_SEMI, + [170726] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(1980), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170334] = 4, + [170739] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9327), 1, + ACTIONS(9325), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170347] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9305), 1, - anon_sym_LBRACK, - ACTIONS(9329), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170358] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9331), 1, - anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [170371] = 4, + [170752] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2096), 1, + ACTIONS(4262), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170384] = 4, + [170765] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9331), 1, + ACTIONS(9327), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170397] = 4, + [170778] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4957), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9325), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [170410] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9333), 1, - sym__concat, - ACTIONS(5549), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170421] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [170791] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9335), 1, + ACTIONS(9329), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170434] = 4, + [170804] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9337), 1, + ACTIONS(9329), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170447] = 4, + [170817] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(4102), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170460] = 4, + [170830] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9339), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9331), 1, anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [170473] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [170843] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, ACTIONS(9327), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170486] = 4, + [170856] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9339), 1, + ACTIONS(9333), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170499] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9335), 1, - anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [170512] = 4, + [170869] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(2270), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170525] = 4, + [170882] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(5077), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [170538] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4539), 1, + ACTIONS(9335), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170551] = 4, + [170895] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9337), 1, + ACTIONS(9335), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170564] = 4, + [170908] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, - ACTIONS(9120), 1, + ACTIONS(9337), 1, anon_sym_RPAREN, - STATE(3757), 1, + STATE(3868), 1, aux_sym_case_item_repeat1, - [170577] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(927), 1, - anon_sym_RBRACE, - ACTIONS(9341), 1, - sym__special_character, - STATE(3673), 1, - aux_sym__literal_repeat1, - [170590] = 4, + [170921] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9344), 1, - anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [170603] = 4, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9339), 1, + anon_sym_RPAREN, + STATE(3868), 1, + aux_sym_case_item_repeat1, + [170934] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9346), 1, + ACTIONS(9341), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170616] = 4, - ACTIONS(59), 1, - sym_comment, - 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, + [170947] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9352), 1, - anon_sym_SEMI_SEMI, - ACTIONS(9228), 2, + ACTIONS(9283), 1, anon_sym_SEMI_AMP, + ACTIONS(9285), 1, anon_sym_SEMI_SEMI_AMP, - [170666] = 4, + ACTIONS(9343), 1, + anon_sym_SEMI_SEMI, + [170960] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9350), 1, + ACTIONS(9345), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170679] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9346), 1, - anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [170692] = 4, - ACTIONS(59), 1, - sym_comment, - 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, + [170973] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9354), 1, + ACTIONS(9347), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170731] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4363), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [170744] = 4, + [170986] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9354), 1, + ACTIONS(9345), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170757] = 4, + [170999] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(3901), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170770] = 4, + [171012] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9356), 1, + ACTIONS(9347), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170783] = 4, + [171025] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4303), 1, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9349), 1, + anon_sym_RPAREN, + STATE(3868), 1, + aux_sym_case_item_repeat1, + [171038] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4990), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170796] = 3, + [171051] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9358), 1, - sym__concat, - ACTIONS(5570), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [170807] = 4, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9351), 1, + anon_sym_RPAREN, + STATE(3868), 1, + aux_sym_case_item_repeat1, + [171064] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9360), 1, + ACTIONS(9353), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170820] = 4, + [171077] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9356), 1, + ACTIONS(9353), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [170833] = 4, + [171090] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(871), 1, - anon_sym_RBRACK, - ACTIONS(9362), 1, - sym__concat, - STATE(3781), 1, - aux_sym_concatenation_repeat1, - [170846] = 4, + ACTIONS(958), 1, + anon_sym_RBRACE, + ACTIONS(9355), 1, + sym__special_character, + STATE(3693), 1, + aux_sym__literal_repeat1, + [171103] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9364), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9358), 1, anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [170859] = 3, + STATE(3693), 1, + aux_sym__literal_repeat1, + [171116] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9305), 1, + ACTIONS(9297), 1, anon_sym_LBRACK, - ACTIONS(9366), 2, + ACTIONS(9360), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [170870] = 4, + [171127] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9368), 1, + ACTIONS(4876), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [170883] = 4, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [171140] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9370), 1, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9362), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [170896] = 4, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [171153] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9360), 1, - anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [170909] = 4, + ACTIONS(9364), 1, + sym__concat, + ACTIONS(5578), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [171164] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9344), 1, - anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [170922] = 4, + ACTIONS(9234), 1, + anon_sym_SEMI_AMP, + ACTIONS(9236), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9366), 1, + anon_sym_SEMI_SEMI, + [171177] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, ACTIONS(9368), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170935] = 4, + [171190] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(5045), 1, + ACTIONS(3929), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [170948] = 4, + [171203] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, - anon_sym_PIPE, - ACTIONS(9092), 1, - anon_sym_RPAREN, - STATE(3829), 1, - aux_sym_case_item_repeat1, - [170961] = 4, + ACTIONS(9202), 1, + anon_sym_SEMI_AMP, + ACTIONS(9204), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9370), 1, + anon_sym_SEMI_SEMI, + [171216] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9370), 1, + ACTIONS(9372), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [170974] = 4, + [171229] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, ACTIONS(9372), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [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(9258), 1, - sym__concat, - ACTIONS(9372), 1, - anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [171011] = 4, + [171242] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3013), 1, + ACTIONS(4278), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171024] = 4, + [171255] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3673), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9374), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171037] = 4, + [171268] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9376), 1, - anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [171050] = 4, + ACTIONS(9297), 1, + anon_sym_LBRACK, + ACTIONS(9376), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [171279] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9378), 1, - anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [171063] = 4, + ACTIONS(9297), 1, + anon_sym_LBRACK, + ACTIONS(9378), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [171290] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9376), 1, + ACTIONS(9380), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [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, + [171303] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3557), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9331), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171128] = 3, + [171316] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9386), 1, - anon_sym_SEMI_SEMI, - ACTIONS(9176), 2, + ACTIONS(9275), 1, anon_sym_SEMI_AMP, + ACTIONS(9277), 1, 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(9382), 1, + anon_sym_SEMI_SEMI, + [171329] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9378), 1, + ACTIONS(4618), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171165] = 4, + [171342] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9390), 1, + ACTIONS(4108), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [171178] = 4, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [171355] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9364), 1, + ACTIONS(9384), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171191] = 4, + [171368] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9390), 1, - anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [171204] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4407), 1, + ACTIONS(9386), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171217] = 4, + [171381] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9392), 1, + ACTIONS(9384), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171230] = 4, + [171394] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4579), 1, + ACTIONS(4188), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171243] = 4, + [171407] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9392), 1, + ACTIONS(9374), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171256] = 4, + [171420] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2221), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9388), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171269] = 4, + [171433] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9394), 1, + ACTIONS(9386), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171282] = 4, + [171446] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4771), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9390), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [171295] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [171459] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9394), 1, - anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [171308] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(2955), 1, + ACTIONS(9358), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171321] = 4, + [171472] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9396), 1, + ACTIONS(3050), 1, anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [171334] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9398), 1, - anon_sym_SEMI_SEMI, - ACTIONS(9202), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [171345] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9400), 1, - anon_sym_RBRACE, - STATE(3778), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171358] = 4, + [171485] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(9392), 1, anon_sym_RBRACK, - ACTIONS(9402), 1, + ACTIONS(9394), 1, sym__concat, STATE(3781), 1, aux_sym_concatenation_repeat1, - [171371] = 4, + [171498] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, ACTIONS(9396), 1, anon_sym_RBRACE, - 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, + STATE(3693), 1, aux_sym__literal_repeat1, - [171397] = 4, + [171511] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4389), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9390), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171410] = 4, + [171524] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9404), 1, + ACTIONS(9398), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171423] = 4, + [171537] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(5001), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9400), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [171436] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [171550] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9406), 1, + ACTIONS(9402), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171449] = 4, + [171563] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9408), 1, + ACTIONS(9400), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171462] = 4, + [171576] = 4, ACTIONS(59), 1, sym_comment, + ACTIONS(3723), 1, + anon_sym_RBRACE, ACTIONS(9240), 1, - anon_sym_RBRACK, - ACTIONS(9410), 1, sym__concat, - STATE(3693), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171475] = 4, + [171589] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9400), 1, + ACTIONS(2989), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [171488] = 4, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [171602] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9406), 1, + ACTIONS(4047), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171501] = 4, + [171615] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2897), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9396), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171514] = 4, + [171628] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4941), 1, + ACTIONS(3439), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171527] = 4, + [171641] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9412), 1, + ACTIONS(9404), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [171654] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2498), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171540] = 4, + [171667] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9412), 1, + ACTIONS(9404), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171553] = 4, + [171680] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9414), 1, - anon_sym_RBRACK, - ACTIONS(9416), 1, + ACTIONS(2112), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [171693] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, sym__concat, - STATE(3734), 1, + ACTIONS(9406), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171566] = 4, + [171706] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9254), 1, + anon_sym_SEMI_AMP, + ACTIONS(9256), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9408), 1, + anon_sym_SEMI_SEMI, + [171719] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9408), 1, + ACTIONS(9406), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171579] = 4, + [171732] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(4357), 1, anon_sym_RBRACE, - ACTIONS(9418), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3751), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171592] = 3, + [171745] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9421), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(5576), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [171603] = 4, + ACTIONS(9380), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [171758] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(4389), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171616] = 4, + [171771] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9423), 1, + ACTIONS(9410), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171629] = 4, + [171784] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, - anon_sym_PIPE, - ACTIONS(9106), 1, - anon_sym_RPAREN, - STATE(3714), 1, - aux_sym_case_item_repeat1, - [171642] = 4, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9412), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [171797] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9218), 1, + anon_sym_SEMI_AMP, + ACTIONS(9220), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9414), 1, + anon_sym_SEMI_SEMI, + [171810] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9423), 1, + ACTIONS(9416), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171655] = 4, + [171823] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, - anon_sym_PIPE, - ACTIONS(9425), 1, - anon_sym_RPAREN, - STATE(3862), 1, - aux_sym_case_item_repeat1, - [171668] = 4, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9402), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [171836] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9309), 1, + ACTIONS(9412), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171681] = 3, + [171849] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9305), 1, - anon_sym_LBRACK, - ACTIONS(9427), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [171692] = 4, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9416), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [171862] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9429), 1, + ACTIONS(9410), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171705] = 4, + [171875] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(2372), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171718] = 4, + [171888] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9418), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [171731] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [171901] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9429), 1, + ACTIONS(2306), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171744] = 3, + [171914] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9431), 1, + ACTIONS(9420), 1, sym__concat, - ACTIONS(5555), 2, + ACTIONS(5551), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [171755] = 4, + [171925] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4949), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9341), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171768] = 4, + [171938] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9433), 1, + ACTIONS(9422), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171781] = 4, + [171951] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4264), 1, + ACTIONS(5026), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171794] = 4, + [171964] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9435), 1, + ACTIONS(9422), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171807] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9437), 1, - anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [171820] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9435), 1, - anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [171833] = 4, + [171977] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4911), 1, + ACTIONS(4299), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171846] = 4, + [171990] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9433), 1, + ACTIONS(9424), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171859] = 4, + [172003] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2839), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9418), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171872] = 4, + [172016] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9439), 1, + ACTIONS(4403), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171885] = 4, + [172029] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9232), 1, + ACTIONS(9426), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9180), 2, anon_sym_SEMI_AMP, - ACTIONS(9234), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(9441), 1, - anon_sym_SEMI_SEMI, - [171898] = 4, + [172040] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9295), 1, + ACTIONS(3551), 1, anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [172053] = 4, + ACTIONS(59), 1, + sym_comment, ACTIONS(9303), 1, sym__special_character, - STATE(3673), 1, + ACTIONS(9424), 1, + anon_sym_RBRACE, + STATE(3693), 1, aux_sym__literal_repeat1, - [171911] = 4, + [172066] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9439), 1, + ACTIONS(9428), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [171924] = 4, + [172079] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(875), 1, anon_sym_RBRACE, - ACTIONS(9443), 1, + ACTIONS(9430), 1, sym__concat, - STATE(3751), 1, + STATE(3770), 1, aux_sym_concatenation_repeat1, - [171937] = 4, + [172092] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4686), 1, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9079), 1, + anon_sym_RPAREN, + STATE(3662), 1, + aux_sym_case_item_repeat1, + [172105] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3354), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171950] = 4, + [172118] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9433), 1, anon_sym_RBRACE, - ACTIONS(9445), 1, - sym__concat, - STATE(3751), 1, - aux_sym_concatenation_repeat1, - [171963] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [172131] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(881), 1, - anon_sym_RBRACK, - ACTIONS(9447), 1, + ACTIONS(9297), 1, + anon_sym_LBRACK, + ACTIONS(9435), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172142] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, sym__concat, - STATE(3781), 1, + ACTIONS(9433), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [171976] = 4, + [172155] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4049), 1, + ACTIONS(3543), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [171989] = 4, + [172168] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9450), 1, + ACTIONS(2640), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [172002] = 4, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [172181] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9452), 1, + ACTIONS(9437), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172015] = 4, + [172194] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9439), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9262), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [172205] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9441), 1, + anon_sym_RPAREN, + STATE(3868), 1, + aux_sym_case_item_repeat1, + [172218] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_RBRACK, + ACTIONS(9443), 1, sym__concat, - ACTIONS(9450), 1, - anon_sym_RBRACE, - STATE(3778), 1, + STATE(3803), 1, aux_sym_concatenation_repeat1, - [172028] = 4, + [172231] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9454), 1, + ACTIONS(9368), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172041] = 4, + [172244] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9445), 1, + anon_sym_RPAREN, + STATE(3868), 1, + aux_sym_case_item_repeat1, + [172257] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9297), 1, + anon_sym_LBRACK, + ACTIONS(9447), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172268] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9456), 1, + ACTIONS(9449), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172054] = 4, + [172281] = 3, 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(9451), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9250), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [172292] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9289), 1, + ACTIONS(9453), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9186), 2, anon_sym_SEMI_AMP, - ACTIONS(9291), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(9458), 1, - anon_sym_SEMI_SEMI, - [172080] = 4, + [172303] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9428), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [172316] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(869), 1, + anon_sym_RBRACK, + ACTIONS(9455), 1, + sym__concat, + STATE(3803), 1, + aux_sym_concatenation_repeat1, + [172329] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9460), 1, + ACTIONS(9437), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172093] = 4, + [172342] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3483), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [172355] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9452), 1, + ACTIONS(9457), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172106] = 4, + [172368] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9460), 1, + ACTIONS(869), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9459), 1, + sym__concat, + STATE(3770), 1, aux_sym_concatenation_repeat1, - [172119] = 4, + [172381] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2104), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172132] = 4, + [172394] = 3, 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(9297), 1, + anon_sym_LBRACK, + ACTIONS(9461), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172405] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9463), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [172418] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4501), 1, + ACTIONS(3370), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172158] = 3, + [172431] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9305), 1, - anon_sym_LBRACK, - ACTIONS(9464), 2, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9465), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [172444] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9467), 1, + sym__concat, + ACTIONS(5563), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [172169] = 4, + [172455] = 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(9303), 1, + sym__special_character, + ACTIONS(9362), 1, + anon_sym_RBRACE, + STATE(3693), 1, + aux_sym__literal_repeat1, + [172468] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9469), 1, + anon_sym_RPAREN, + STATE(3868), 1, + aux_sym_case_item_repeat1, + [172481] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3789), 1, + ACTIONS(882), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9471), 1, sym__concat, - STATE(3780), 1, + STATE(3770), 1, aux_sym_concatenation_repeat1, - [172195] = 4, + [172494] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(875), 1, + anon_sym_RBRACK, + ACTIONS(9473), 1, sym__concat, - ACTIONS(9468), 1, - anon_sym_RBRACE, - STATE(3778), 1, + STATE(3803), 1, aux_sym_concatenation_repeat1, - [172208] = 4, + [172507] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9456), 1, + ACTIONS(9476), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172221] = 4, + [172520] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9468), 1, + ACTIONS(9465), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172234] = 3, + [172533] = 4, 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(9240), 1, + sym__concat, + ACTIONS(9476), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [172546] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4532), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [172559] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9472), 1, + ACTIONS(9463), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172258] = 4, + [172572] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9437), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9478), 1, anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [172271] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [172585] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9472), 1, + ACTIONS(9457), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172284] = 4, + [172598] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(4918), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172297] = 4, + [172611] = 4, ACTIONS(59), 1, sym_comment, - 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(9240), 1, + sym__concat, + ACTIONS(9478), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [172624] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9476), 1, + ACTIONS(9388), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172323] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9182), 1, - anon_sym_SEMI_AMP, - ACTIONS(9184), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(9478), 1, - anon_sym_SEMI_SEMI, - [172336] = 4, + [172637] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9248), 1, - anon_sym_SEMI_AMP, - ACTIONS(9250), 1, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(9303), 1, + sym__special_character, ACTIONS(9480), 1, - anon_sym_SEMI_SEMI, - [172349] = 4, + anon_sym_RBRACE, + STATE(3693), 1, + aux_sym__literal_repeat1, + [172650] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9476), 1, + ACTIONS(9480), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172362] = 4, + [172663] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(4204), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [172375] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9482), 1, - anon_sym_RBRACE, - STATE(3778), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172388] = 4, + [172676] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2364), 1, + ACTIONS(4424), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172401] = 4, + [172689] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, ACTIONS(9482), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172414] = 4, + [172702] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2721), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9484), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172427] = 4, + [172715] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9484), 1, + ACTIONS(9482), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172440] = 3, + [172728] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9305), 1, - anon_sym_LBRACK, - ACTIONS(9486), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [172451] = 4, + ACTIONS(3084), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [172741] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9224), 1, + anon_sym_RBRACK, + ACTIONS(9486), 1, + sym__concat, + STATE(3789), 1, + aux_sym_concatenation_repeat1, + [172754] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, ACTIONS(9484), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172464] = 4, + [172767] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4335), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9488), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + STATE(3693), 1, + aux_sym__literal_repeat1, + [172780] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4712), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172477] = 4, + [172793] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, - anon_sym_PIPE, + ACTIONS(9240), 1, + sym__concat, ACTIONS(9488), 1, - anon_sym_RPAREN, - STATE(3862), 1, - aux_sym_case_item_repeat1, - [172490] = 4, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [172806] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4585), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172503] = 4, + [172819] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, + ACTIONS(9240), 1, + sym__concat, ACTIONS(9490), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [172516] = 4, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [172832] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, + ACTIONS(9067), 1, + anon_sym_PIPE, ACTIONS(9492), 1, - anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [172529] = 4, + anon_sym_RPAREN, + STATE(3868), 1, + aux_sym_case_item_repeat1, + [172845] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, + ACTIONS(9067), 1, + anon_sym_PIPE, ACTIONS(9494), 1, - anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [172542] = 4, + anon_sym_RPAREN, + STATE(3868), 1, + aux_sym_case_item_repeat1, + [172858] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9490), 1, + ACTIONS(2971), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172555] = 4, + [172871] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4861), 1, + ACTIONS(2070), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172568] = 4, + [172884] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, - anon_sym_PIPE, + ACTIONS(9240), 1, + sym__concat, ACTIONS(9496), 1, - anon_sym_RPAREN, - STATE(3862), 1, - aux_sym_case_item_repeat1, - [172581] = 4, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [172897] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, ACTIONS(9498), 1, anon_sym_RPAREN, - STATE(3862), 1, + STATE(3868), 1, aux_sym_case_item_repeat1, - [172594] = 4, + [172910] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, ACTIONS(9500), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172607] = 4, + [172923] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9494), 1, + ACTIONS(9500), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172620] = 4, + [172936] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4139), 1, + ACTIONS(2214), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172633] = 4, + [172949] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9492), 1, + ACTIONS(9496), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172646] = 4, + [172962] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9500), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9490), 1, anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [172659] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [172975] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9333), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172672] = 4, + [172988] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, + ACTIONS(9067), 1, anon_sym_PIPE, ACTIONS(9502), 1, anon_sym_RPAREN, - STATE(3862), 1, + STATE(3868), 1, aux_sym_case_item_repeat1, - [172685] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9210), 1, - anon_sym_SEMI_AMP, - ACTIONS(9212), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(9504), 1, - anon_sym_SEMI_SEMI, - [172698] = 3, + [173001] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9305), 1, - anon_sym_LBRACK, - ACTIONS(9506), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [172709] = 4, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9071), 1, + anon_sym_RPAREN, + STATE(3830), 1, + aux_sym_case_item_repeat1, + [173014] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9454), 1, + ACTIONS(4892), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172722] = 4, + [173027] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9449), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [172735] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [173040] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9504), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [172748] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [173053] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2426), 1, + ACTIONS(3246), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172761] = 4, + [173066] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + ACTIONS(9506), 1, + anon_sym_RBRACE, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172774] = 4, + [173079] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9508), 1, + ACTIONS(4600), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172787] = 4, + [173092] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9510), 1, + ACTIONS(9508), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172800] = 4, + [173105] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9508), 1, + ACTIONS(9506), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172813] = 4, + [173118] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9510), 1, + ACTIONS(9508), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [173131] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4582), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172826] = 4, + [173144] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9512), 1, + ACTIONS(9510), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172839] = 4, + [173157] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(4788), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172852] = 4, + [173170] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9512), 1, + ACTIONS(9510), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172865] = 4, + [173183] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4831), 1, + ACTIONS(2464), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [172878] = 4, + [173196] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9293), 1, - anon_sym_RBRACE, - ACTIONS(9303), 1, + ACTIONS(863), 1, sym__special_character, - STATE(3673), 1, - aux_sym__literal_repeat1, - [172891] = 4, + ACTIONS(865), 2, + sym__concat, + anon_sym_RBRACK, + [173207] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, + ACTIONS(9512), 1, + sym__concat, + ACTIONS(5572), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173218] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5044), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [173231] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, + sym__concat, ACTIONS(9514), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [172904] = 4, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [173244] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, ACTIONS(9516), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [172917] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4672), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [172930] = 4, + [173257] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, + ACTIONS(9303), 1, + sym__special_character, ACTIONS(9514), 1, anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [172943] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [173270] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4189), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9518), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [172956] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [173283] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9518), 1, + ACTIONS(9516), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172969] = 4, + [173296] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9520), 1, + ACTIONS(9518), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [172982] = 4, + [173309] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9518), 1, + ACTIONS(2997), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [172995] = 4, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [173322] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(2802), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [173008] = 4, + [173335] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9522), 1, + ACTIONS(9520), 1, anon_sym_PIPE, - ACTIONS(9525), 1, + ACTIONS(9523), 1, anon_sym_RPAREN, - STATE(3862), 1, + STATE(3868), 1, aux_sym_case_item_repeat1, - [173021] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9305), 1, - anon_sym_LBRACK, - ACTIONS(9527), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [173032] = 4, + [173348] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(3883), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [173045] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9305), 1, - anon_sym_LBRACK, - ACTIONS(9529), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [173056] = 4, + [173361] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9516), 1, + ACTIONS(9504), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [173069] = 4, + [173374] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9520), 1, + ACTIONS(9525), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [173082] = 4, + [173387] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9531), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9309), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3693), 1, + aux_sym__literal_repeat1, + [173400] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [173095] = 4, + [173413] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9533), 1, + ACTIONS(9527), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [173108] = 4, + [173426] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [173121] = 4, + ACTIONS(9067), 1, + anon_sym_PIPE, + ACTIONS(9168), 1, + anon_sym_RPAREN, + STATE(3688), 1, + aux_sym_case_item_repeat1, + [173439] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9531), 1, + ACTIONS(9529), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [173134] = 4, + [173452] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9527), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [173465] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4506), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [173147] = 4, + [173478] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9533), 1, + ACTIONS(9531), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [173160] = 4, + [173491] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9242), 1, + anon_sym_RBRACK, + ACTIONS(9533), 1, sym__concat, - STATE(3780), 1, + STATE(3789), 1, aux_sym_concatenation_repeat1, - [173173] = 4, + [173504] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9090), 1, - anon_sym_PIPE, - ACTIONS(9170), 1, - anon_sym_RPAREN, - STATE(3648), 1, - aux_sym_case_item_repeat1, - [173186] = 4, + ACTIONS(9240), 1, + sym__concat, + ACTIONS(9535), 1, + anon_sym_RBRACE, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [173517] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, ACTIONS(9535), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [173199] = 3, + [173530] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(875), 1, - sym__special_character, - ACTIONS(877), 2, + ACTIONS(9240), 1, sym__concat, - anon_sym_RBRACK, - [173210] = 4, - ACTIONS(59), 1, - sym_comment, - ACTIONS(2489), 1, + ACTIONS(9529), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [173223] = 4, + [173543] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9535), 1, + ACTIONS(4112), 1, anon_sym_RBRACE, - STATE(3778), 1, + ACTIONS(9240), 1, + sym__concat, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [173236] = 4, + [173556] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(4856), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [173249] = 4, + [173569] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(3911), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9398), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, - sym__concat, - STATE(3780), 1, - aux_sym_concatenation_repeat1, - [173262] = 4, + STATE(3693), 1, + aux_sym__literal_repeat1, + [173582] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, - sym__concat, - ACTIONS(9537), 1, - anon_sym_RBRACE, - STATE(3778), 1, - aux_sym_concatenation_repeat1, - [173275] = 4, + ACTIONS(9297), 1, + anon_sym_LBRACK, + ACTIONS(9537), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173593] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9539), 1, + ACTIONS(9525), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [173288] = 4, + [173606] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9297), 1, + anon_sym_LBRACK, + ACTIONS(9539), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173617] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9537), 1, + ACTIONS(9541), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [173301] = 4, + [173630] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, + ACTIONS(9240), 1, + sym__concat, ACTIONS(9541), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [173314] = 4, + STATE(3793), 1, + aux_sym_concatenation_repeat1, + [173643] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9260), 1, - anon_sym_RBRACK, - ACTIONS(9543), 1, + ACTIONS(2868), 1, + anon_sym_RBRACE, + ACTIONS(9240), 1, sym__concat, - STATE(3693), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [173327] = 4, + [173656] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9541), 1, + ACTIONS(9543), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [173340] = 4, + [173669] = 4, ACTIONS(59), 1, sym_comment, + ACTIONS(9303), 1, + sym__special_character, ACTIONS(9545), 1, - anon_sym_RBRACK, - ACTIONS(9547), 1, - sym__concat, - STATE(3734), 1, - aux_sym_concatenation_repeat1, - [173353] = 4, + anon_sym_RBRACE, + STATE(3693), 1, + aux_sym__literal_repeat1, + [173682] = 4, ACTIONS(59), 1, sym_comment, ACTIONS(9303), 1, sym__special_character, - ACTIONS(9549), 1, + ACTIONS(9543), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, aux_sym__literal_repeat1, - [173366] = 4, + [173695] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - ACTIONS(9549), 1, + ACTIONS(9545), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(3793), 1, aux_sym_concatenation_repeat1, - [173379] = 4, + [173708] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(4646), 1, anon_sym_RBRACE, - ACTIONS(9258), 1, + ACTIONS(9240), 1, sym__concat, - STATE(3780), 1, + STATE(3802), 1, aux_sym_concatenation_repeat1, - [173392] = 4, + [173721] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9303), 1, - sym__special_character, - ACTIONS(9539), 1, + ACTIONS(2538), 1, anon_sym_RBRACE, - STATE(3673), 1, - aux_sym__literal_repeat1, - [173405] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(881), 2, + ACTIONS(9240), 1, sym__concat, - anon_sym_RBRACK, - [173413] = 3, + STATE(3802), 1, + aux_sym_concatenation_repeat1, + [173734] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9553), 1, - anon_sym_EQ, - [173423] = 3, + ACTIONS(9547), 1, + anon_sym_RBRACK, + ACTIONS(9549), 1, + sym__concat, + STATE(3781), 1, + aux_sym_concatenation_repeat1, + [173747] = 4, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9555), 1, - anon_sym_EQ, - [173433] = 2, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9531), 1, + anon_sym_RBRACE, + STATE(3693), 1, + aux_sym__literal_repeat1, + [173760] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(908), 2, + ACTIONS(898), 2, sym__concat, anon_sym_RBRACK, - [173441] = 2, + [173768] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(992), 2, sym__concat, - anon_sym_RBRACE, - [173449] = 2, + anon_sym_RBRACK, + [173776] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(919), 2, sym__concat, - anon_sym_RBRACE, - [173457] = 2, + anon_sym_RBRACK, + [173784] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(915), 2, sym__concat, anon_sym_RBRACK, - [173465] = 2, + [173792] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(923), 2, sym__concat, anon_sym_RBRACK, - [173473] = 2, + [173800] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(978), 2, - sym__concat, - anon_sym_RBRACE, - [173481] = 2, + ACTIONS(9063), 1, + anon_sym_do, + STATE(2918), 1, + sym_do_group, + [173810] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(927), 2, sym__concat, anon_sym_RBRACK, - [173489] = 3, + [173818] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9557), 1, + ACTIONS(9553), 1, anon_sym_EQ, - [173499] = 2, + [173828] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9529), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9555), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [173507] = 3, + [173838] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9545), 1, + ACTIONS(931), 2, + sym__concat, anon_sym_RBRACK, - ACTIONS(9559), 1, + [173846] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(935), 2, + sym__concat, + anon_sym_RBRACK, + [173854] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(939), 2, sym__concat, - [173517] = 3, + anon_sym_RBRACK, + [173862] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9561), 1, + ACTIONS(9557), 1, anon_sym_EQ, - [173527] = 2, + [173872] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(951), 2, sym__concat, anon_sym_RBRACK, - [173535] = 3, + [173880] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9563), 1, + ACTIONS(9559), 1, anon_sym_EQ, - [173545] = 2, + [173890] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(890), 2, sym__concat, - anon_sym_RBRACE, - [173553] = 3, + anon_sym_RBRACK, + [173898] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9071), 1, - anon_sym_do, - STATE(2592), 1, - sym_do_group, - [173563] = 3, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9561), 1, + anon_sym_EQ, + [173908] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9563), 1, + anon_sym_EQ, + [173918] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9565), 1, anon_sym_EQ, - [173573] = 3, + [173928] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1000), 2, + sym__concat, + anon_sym_RBRACK, + [173936] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9567), 1, anon_sym_EQ, - [173583] = 3, + [173946] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9569), 1, anon_sym_EQ, - [173593] = 2, + [173956] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(996), 2, sym__concat, anon_sym_RBRACK, - [173601] = 3, + [173964] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9571), 1, anon_sym_EQ, - [173611] = 3, + [173974] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9573), 1, - anon_sym_EQ, - [173621] = 3, + ACTIONS(909), 2, + sym__concat, + anon_sym_RBRACK, + [173982] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9575), 1, + ACTIONS(9573), 1, anon_sym_EQ, - [173631] = 3, + [173992] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9577), 1, + ACTIONS(9305), 2, anon_sym_EQ, - [173641] = 2, + anon_sym_PLUS_EQ, + [174000] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(988), 2, sym__concat, - anon_sym_RBRACE, - [173649] = 3, + anon_sym_RBRACK, + [174008] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9579), 1, + ACTIONS(9575), 1, anon_sym_EQ, - [173659] = 2, + [174018] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9577), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(9579), 1, + aux_sym__simple_variable_name_token1, + [174028] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(980), 2, sym__concat, - anon_sym_RBRACE, - [173667] = 3, + anon_sym_RBRACK, + [174036] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9581), 1, anon_sym_EQ, - [173677] = 2, + [174046] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(962), 2, sym__concat, anon_sym_RBRACK, - [173685] = 2, + [174054] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9547), 1, + anon_sym_RBRACK, + ACTIONS(9583), 1, + sym__concat, + [174064] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9087), 1, + anon_sym_do, + STATE(2833), 1, + sym_do_group, + [174074] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(970), 2, sym__concat, anon_sym_RBRACK, - [173693] = 3, + [174082] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9583), 1, + ACTIONS(9585), 1, anon_sym_EQ, - [173703] = 2, + [174092] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9506), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9587), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [173711] = 2, + [174102] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(962), 2, + ACTIONS(966), 2, sym__concat, - anon_sym_RBRACE, - [173719] = 2, + anon_sym_RBRACK, + [174110] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9589), 1, + anon_sym_EQ, + [174120] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(962), 2, sym__concat, - anon_sym_RBRACE, - [173727] = 2, + anon_sym_RBRACK, + [174128] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9188), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9591), 1, + anon_sym_EQ, + [174138] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9063), 1, + anon_sym_do, + STATE(2937), 1, + sym_do_group, + [174148] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9222), 2, anon_sym_PIPE, anon_sym_RPAREN, - [173735] = 3, + [174156] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9585), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(9587), 1, - aux_sym__simple_variable_name_token1, - [173745] = 3, + ACTIONS(947), 2, + sym__concat, + anon_sym_RBRACK, + [174164] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9589), 1, - anon_sym_EQ, - [173755] = 2, + ACTIONS(902), 2, + sym__concat, + anon_sym_RBRACK, + [174172] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(1004), 2, sym__concat, - anon_sym_RBRACE, - [173763] = 3, + anon_sym_RBRACK, + [174180] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9591), 1, + ACTIONS(9087), 1, + anon_sym_do, + STATE(2810), 1, + sym_do_group, + [174190] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9539), 2, anon_sym_EQ, - [173773] = 3, + anon_sym_PLUS_EQ, + [174198] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9593), 1, anon_sym_EQ, - [173783] = 3, + [174208] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9595), 1, anon_sym_EQ, - [173793] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(1004), 2, - sym__concat, - anon_sym_RBRACE, - [173801] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(904), 2, - sym__concat, - anon_sym_RBRACE, - [173809] = 3, + [174218] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9597), 1, anon_sym_EQ, - [173819] = 3, + [174228] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9599), 1, anon_sym_EQ, - [173829] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9464), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [173837] = 3, + [174238] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9601), 1, anon_sym_EQ, - [173847] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(904), 2, - sym__concat, - anon_sym_RBRACK, - [173855] = 3, + [174248] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9071), 1, - anon_sym_do, - STATE(2625), 1, - sym_do_group, - [173865] = 3, + ACTIONS(5551), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [174256] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9603), 1, anon_sym_EQ, - [173875] = 2, + [174266] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(892), 2, - sym__concat, - anon_sym_RBRACK, - [173883] = 3, + ACTIONS(9461), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [174274] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9435), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [174282] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9605), 1, anon_sym_EQ, - [173893] = 3, + [174292] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, - anon_sym_do, - STATE(2959), 1, - sym_do_group, - [173903] = 3, + ACTIONS(909), 2, + sym__concat, + anon_sym_RBRACE, + [174300] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(976), 2, + sym__concat, + anon_sym_RBRACK, + [174308] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9607), 1, anon_sym_EQ, - [173913] = 3, + [174318] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9609), 1, anon_sym_EQ, - [173923] = 3, + [174328] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9611), 1, anon_sym_EQ, - [173933] = 2, + [174338] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9486), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [173941] = 3, + ACTIONS(943), 2, + sym__concat, + anon_sym_RBRACK, + [174346] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9613), 1, + ACTIONS(9299), 2, anon_sym_EQ, - [173951] = 3, + anon_sym_PLUS_EQ, + [174354] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9615), 1, - anon_sym_EQ, - [173961] = 2, + ACTIONS(894), 2, + sym__concat, + anon_sym_RBRACK, + [174362] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(900), 2, + ACTIONS(875), 2, sym__concat, anon_sym_RBRACK, - [173969] = 3, + [174370] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9617), 1, + ACTIONS(9613), 1, anon_sym_EQ, - [173979] = 3, + [174380] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9619), 1, - anon_sym_EQ, - [173989] = 2, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2722), 1, + sym_do_group, + [174390] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(939), 2, + ACTIONS(898), 2, sym__concat, anon_sym_RBRACE, - [173997] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(974), 2, - sym__concat, - anon_sym_RBRACK, - [174005] = 3, + [174398] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9621), 1, + ACTIONS(9615), 1, anon_sym_EQ, - [174015] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(931), 2, - sym__concat, - anon_sym_RBRACE, - [174023] = 3, + [174408] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9623), 1, + ACTIONS(9617), 1, anon_sym_EQ, - [174033] = 2, + [174418] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9427), 2, + ACTIONS(9537), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [174041] = 2, + [174426] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(5584), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9619), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [174049] = 2, + [174436] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(896), 2, - sym__concat, - anon_sym_RBRACK, - [174057] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(5588), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9621), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [174065] = 2, + [174446] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(888), 2, + ACTIONS(984), 2, sym__concat, - anon_sym_RBRACE, - [174073] = 3, + anon_sym_RBRACK, + [174454] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9625), 1, + ACTIONS(9623), 1, anon_sym_EQ, - [174083] = 2, + [174464] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(970), 2, - sym__concat, - anon_sym_RBRACK, - [174091] = 3, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9625), 1, + anon_sym_EQ, + [174474] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9083), 1, - anon_sym_do, - STATE(2800), 1, - sym_do_group, - [174101] = 2, + ACTIONS(9376), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [174482] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(966), 2, - sym__concat, - anon_sym_RBRACK, - [174109] = 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9627), 1, + anon_sym_EQ, + [174492] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(875), 2, sym__concat, anon_sym_RBRACE, - [174117] = 2, + [174500] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(896), 2, + ACTIONS(894), 2, sym__concat, anon_sym_RBRACE, - [174125] = 2, + [174508] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(962), 2, + ACTIONS(943), 2, sym__concat, - anon_sym_RBRACK, - [174133] = 2, + anon_sym_RBRACE, + [174516] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(939), 2, + ACTIONS(976), 2, sym__concat, - anon_sym_RBRACK, - [174141] = 3, + anon_sym_RBRACE, + [174524] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9627), 1, + ACTIONS(9629), 1, anon_sym_EQ, - [174151] = 3, + [174534] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9629), 1, + ACTIONS(9631), 1, anon_sym_EQ, - [174161] = 2, + [174544] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(5570), 2, + ACTIONS(5595), 2, anon_sym_EQ, 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, + [174552] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9631), 1, + ACTIONS(9633), 1, anon_sym_EQ, - [174195] = 3, + [174562] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9633), 1, - anon_sym_EQ, - [174205] = 3, + ACTIONS(9087), 1, + anon_sym_do, + STATE(2804), 1, + sym_do_group, + [174572] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9635), 1, anon_sym_EQ, - [174215] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9414), 1, - anon_sym_RBRACK, - ACTIONS(9637), 1, - sym__concat, - [174225] = 2, + [174582] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(908), 2, - sym__concat, - anon_sym_RBRACE, - [174233] = 3, + ACTIONS(9447), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [174590] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9639), 1, + ACTIONS(9637), 1, anon_sym_EQ, - [174243] = 3, + [174600] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, + ACTIONS(9639), 1, + anon_sym_LPAREN_LPAREN, ACTIONS(9641), 1, - anon_sym_EQ, - [174253] = 3, + aux_sym__simple_variable_name_token1, + [174610] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9643), 1, anon_sym_EQ, - [174263] = 3, + [174620] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(915), 2, + sym__concat, + anon_sym_RBRACE, + [174628] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9645), 1, anon_sym_EQ, - [174273] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(888), 2, - sym__concat, - anon_sym_RBRACK, - [174281] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(958), 2, - sym__concat, - anon_sym_RBRACK, - [174289] = 3, + [174638] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9647), 1, anon_sym_EQ, - [174299] = 3, + [174648] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9649), 1, anon_sym_EQ, - [174309] = 2, + [174658] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9374), 2, + ACTIONS(9378), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [174317] = 3, + [174666] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, - anon_sym_do, - STATE(2916), 1, - sym_do_group, - [174327] = 3, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9651), 1, + anon_sym_EQ, + [174676] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9083), 1, anon_sym_do, - STATE(2768), 1, + STATE(2693), 1, sym_do_group, - [174337] = 3, + [174686] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9651), 1, + ACTIONS(9360), 2, anon_sym_EQ, - [174347] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(935), 2, - sym__concat, - anon_sym_RBRACK, - [174355] = 3, + anon_sym_PLUS_EQ, + [174694] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9653), 1, anon_sym_EQ, - [174365] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(966), 2, - sym__concat, - anon_sym_RBRACE, - [174373] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(912), 2, - sym__concat, - anon_sym_RBRACE, - [174381] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(916), 2, - sym__concat, - anon_sym_RBRACE, - [174389] = 3, + [174704] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9655), 1, anon_sym_EQ, - [174399] = 3, + [174714] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9657), 1, anon_sym_EQ, - [174409] = 3, + [174724] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9659), 1, anon_sym_EQ, - [174419] = 3, + [174734] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9661), 1, anon_sym_EQ, - [174429] = 3, + [174744] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9663), 1, anon_sym_EQ, - [174439] = 2, + [174754] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(920), 2, + ACTIONS(919), 2, sym__concat, anon_sym_RBRACE, - [174447] = 3, - ACTIONS(59), 1, - sym_comment, - 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, - [174465] = 3, + [174762] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9665), 1, anon_sym_EQ, - [174475] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9083), 1, - anon_sym_do, - STATE(2801), 1, - sym_do_group, - [174485] = 2, + [174772] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(958), 2, - sym__concat, - anon_sym_RBRACE, - [174493] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9527), 2, + ACTIONS(5578), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [174501] = 3, + [174780] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9667), 1, anon_sym_EQ, - [174511] = 3, + [174790] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9669), 1, anon_sym_EQ, - [174521] = 2, + [174800] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(923), 2, sym__concat, anon_sym_RBRACE, - [174529] = 2, + [174808] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(954), 2, + ACTIONS(927), 2, sym__concat, + anon_sym_RBRACE, + [174816] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9392), 1, anon_sym_RBRACK, - [174537] = 3, + ACTIONS(9671), 1, + sym__concat, + [174826] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9671), 1, + ACTIONS(9673), 1, anon_sym_EQ, - [174547] = 2, + [174836] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9329), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [174555] = 3, + ACTIONS(931), 2, + sym__concat, + anon_sym_RBRACE, + [174844] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9673), 1, + ACTIONS(9675), 1, anon_sym_EQ, - [174565] = 2, + [174854] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(950), 2, - sym__concat, - anon_sym_RBRACK, - [174573] = 2, + ACTIONS(5591), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [174862] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9675), 2, - anon_sym_do, - anon_sym_then, - [174581] = 3, + ACTIONS(935), 2, + sym__concat, + anon_sym_RBRACE, + [174870] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9677), 1, anon_sym_EQ, - [174591] = 3, + [174880] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1004), 2, + sym__concat, + anon_sym_RBRACE, + [174888] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9679), 1, anon_sym_EQ, - [174601] = 2, + [174898] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(931), 2, + ACTIONS(902), 2, sym__concat, - anon_sym_RBRACK, - [174609] = 3, + anon_sym_RBRACE, + [174906] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9681), 1, - anon_sym_EQ, - [174619] = 3, + ACTIONS(947), 2, + sym__concat, + anon_sym_RBRACE, + [174914] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LBRACK, - ACTIONS(9683), 1, - anon_sym_EQ, - [174629] = 2, + ACTIONS(863), 1, + sym__special_character, + ACTIONS(865), 1, + anon_sym_RBRACE, + [174924] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2656), 1, + sym_do_group, + [174934] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(939), 2, + sym__concat, + anon_sym_RBRACE, + [174942] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(950), 2, + ACTIONS(951), 2, sym__concat, anon_sym_RBRACE, - [174637] = 3, + [174950] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9681), 2, + anon_sym_do, + anon_sym_then, + [174958] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9683), 1, + anon_sym_EQ, + [174968] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9685), 1, anon_sym_EQ, - [174647] = 2, + [174978] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(954), 2, - sym__concat, - anon_sym_RBRACE, - [174655] = 3, + ACTIONS(9063), 1, + anon_sym_do, + STATE(2957), 1, + sym_do_group, + [174988] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, ACTIONS(9687), 1, anon_sym_EQ, - [174665] = 2, + [174998] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(9689), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(9691), 1, + aux_sym__simple_variable_name_token1, + [175008] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(962), 2, + sym__concat, + anon_sym_RBRACE, + [175016] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(966), 2, sym__concat, anon_sym_RBRACE, - [174673] = 3, + [175024] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9689), 1, + ACTIONS(9693), 1, anon_sym_EQ, - [174683] = 3, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9071), 1, - anon_sym_do, - STATE(2652), 1, - sym_do_group, - [174693] = 2, + [175034] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(935), 2, + ACTIONS(970), 2, sym__concat, - anon_sym_RBRACK, - [174701] = 3, + anon_sym_RBRACE, + [175042] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9691), 1, + ACTIONS(9695), 1, anon_sym_EQ, - [174711] = 3, + [175052] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9067), 1, - anon_sym_do, - STATE(2933), 1, - sym_do_group, - [174721] = 2, + ACTIONS(962), 2, + sym__concat, + anon_sym_RBRACE, + [175060] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(912), 2, + ACTIONS(980), 2, sym__concat, - anon_sym_RBRACK, - [174729] = 3, + anon_sym_RBRACE, + [175068] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9693), 1, + ACTIONS(9697), 1, anon_sym_EQ, - [174739] = 3, + [175078] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9695), 1, + ACTIONS(9699), 1, anon_sym_EQ, - [174749] = 2, + [175088] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(5549), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [174757] = 2, + ACTIONS(984), 2, + sym__concat, + anon_sym_RBRACE, + [175096] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9307), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [174765] = 3, + ACTIONS(988), 2, + sym__concat, + anon_sym_RBRACE, + [175104] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9697), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(9699), 1, - aux_sym__simple_variable_name_token1, - [174775] = 3, + ACTIONS(992), 2, + sym__concat, + anon_sym_RBRACE, + [175112] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9701), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(9703), 1, - aux_sym__simple_variable_name_token1, - [174785] = 3, + ACTIONS(996), 2, + sym__concat, + anon_sym_RBRACE, + [175120] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1000), 2, + sym__concat, + anon_sym_RBRACE, + [175128] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(890), 2, + sym__concat, + anon_sym_RBRACE, + [175136] = 3, ACTIONS(59), 1, sym_comment, ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(9705), 1, + ACTIONS(9701), 1, anon_sym_EQ, - [174795] = 2, + [175146] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(916), 2, - sym__concat, - anon_sym_RBRACK, - [174803] = 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9703), 1, + anon_sym_EQ, + [175156] = 3, ACTIONS(59), 1, sym_comment, - ACTIONS(920), 2, - sym__concat, - anon_sym_RBRACK, - [174811] = 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_EQ, + [175166] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9707), 1, - anon_sym_RPAREN, - [174818] = 2, + anon_sym_BQUOTE, + [175173] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9709), 1, anon_sym_esac, - [174825] = 2, + [175180] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_RPAREN, - [174832] = 2, + ACTIONS(4262), 1, + anon_sym_RBRACE, + [175187] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9713), 1, + ACTIONS(9711), 1, anon_sym_esac, - [174839] = 2, + [175194] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9715), 1, - anon_sym_BQUOTE, - [174846] = 2, + ACTIONS(4357), 1, + anon_sym_RBRACE, + [175201] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9717), 1, + ACTIONS(9713), 1, anon_sym_in, - [174853] = 2, + [175208] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6284), 1, - anon_sym_RPAREN, - [174860] = 2, + ACTIONS(9715), 1, + anon_sym_in, + [175215] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4672), 1, - anon_sym_RBRACE, - [174867] = 2, + ACTIONS(9717), 1, + anon_sym_esac, + [175222] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9719), 1, - anon_sym_in, - [174874] = 2, + anon_sym_RPAREN, + [175229] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_in, - [174881] = 2, + ACTIONS(9047), 1, + anon_sym_fi, + [175236] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9723), 1, - anon_sym_in, - [174888] = 2, + ACTIONS(9721), 1, + anon_sym_then, + [175243] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_RBRACE, - [174895] = 2, + ACTIONS(9723), 1, + anon_sym_fi, + [175250] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9725), 1, - anon_sym_RPAREN, - [174902] = 2, + anon_sym_then, + [175257] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9727), 1, - anon_sym_then, - [174909] = 2, + sym_word, + [175264] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9729), 1, anon_sym_esac, - [174916] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4363), 1, - anon_sym_RBRACE, - [174923] = 2, + [175271] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9731), 1, - sym_word, - [174930] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9733), 1, anon_sym_esac, - [174937] = 2, + [175278] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9735), 1, + ACTIONS(9733), 1, anon_sym_fi, - [174944] = 2, + [175285] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6161), 1, - anon_sym_RPAREN, - [174951] = 2, + ACTIONS(9735), 1, + anon_sym_esac, + [175292] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9737), 1, - anon_sym_BQUOTE, - [174958] = 2, + anon_sym_in, + [175299] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9739), 1, - anon_sym_RPAREN, - [174965] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_RBRACE, - [174972] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4389), 1, - anon_sym_RBRACE, - [174979] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6248), 1, - anon_sym_RPAREN, - [174986] = 2, + anon_sym_in, + [175306] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9741), 1, - anon_sym_BQUOTE, - [174993] = 2, + anon_sym_RPAREN, + [175313] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9743), 1, - anon_sym_RPAREN, - [175000] = 2, + anon_sym_then, + [175320] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2293), 1, - anon_sym_RBRACE, - [175007] = 2, + ACTIONS(6272), 1, + anon_sym_RPAREN, + [175327] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9745), 1, - anon_sym_in, - [175014] = 2, + sym_word, + [175334] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9747), 1, - anon_sym_in, - [175021] = 2, + anon_sym_esac, + [175341] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4335), 1, + ACTIONS(2104), 1, anon_sym_RBRACE, - [175028] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9749), 1, - anon_sym_RPAREN, - [175035] = 2, + [175348] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9751), 1, - anon_sym_then, - [175042] = 2, + ACTIONS(3457), 1, + anon_sym_RBRACE, + [175355] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4049), 1, - anon_sym_RBRACE, - [175049] = 2, + ACTIONS(9749), 1, + anon_sym_BQUOTE, + [175362] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6173), 1, - anon_sym_RPAREN, - [175056] = 2, + ACTIONS(9751), 1, + anon_sym_BQUOTE, + [175369] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9753), 1, - anon_sym_BQUOTE, - [175063] = 2, + anon_sym_RPAREN, + [175376] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9755), 1, + ACTIONS(6280), 1, anon_sym_RPAREN, - [175070] = 2, + [175383] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9757), 1, - sym_word, - [175077] = 2, + ACTIONS(9755), 1, + anon_sym_esac, + [175390] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2364), 1, + ACTIONS(4548), 1, anon_sym_RBRACE, - [175084] = 2, + [175397] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9759), 1, - anon_sym_esac, - [175091] = 2, + ACTIONS(4047), 1, + anon_sym_RBRACE, + [175404] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4139), 1, + ACTIONS(3050), 1, anon_sym_RBRACE, - [175098] = 2, + [175411] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4585), 1, - anon_sym_RBRACE, - [175105] = 2, + ACTIONS(9757), 1, + anon_sym_esac, + [175418] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6153), 1, - anon_sym_RPAREN, - [175112] = 2, + ACTIONS(9759), 1, + anon_sym_esac, + [175425] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9761), 1, anon_sym_esac, - [175119] = 2, + [175432] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9763), 1, anon_sym_esac, - [175126] = 2, + [175439] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9765), 1, anon_sym_BQUOTE, - [175133] = 2, + [175446] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9049), 1, anon_sym_fi, - [175140] = 2, + [175453] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9767), 1, + ACTIONS(6300), 1, anon_sym_RPAREN, - [175147] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(3997), 1, - anon_sym_RBRACE, - [175154] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(2426), 1, - anon_sym_RBRACE, - [175161] = 2, + [175460] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3789), 1, - anon_sym_RBRACE, - [175168] = 2, + ACTIONS(9767), 1, + anon_sym_esac, + [175467] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9769), 1, - anon_sym_BQUOTE, - [175175] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6134), 1, - anon_sym_RPAREN, - [175182] = 2, + anon_sym_esac, + [175474] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6136), 1, - anon_sym_RPAREN, - [175189] = 2, + ACTIONS(9771), 1, + anon_sym_fi, + [175481] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9771), 1, - anon_sym_BQUOTE, - [175196] = 2, + ACTIONS(4918), 1, + anon_sym_RBRACE, + [175488] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(3551), 1, anon_sym_RBRACE, - [175203] = 2, + [175495] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(2214), 1, anon_sym_RBRACE, - [175210] = 2, + [175502] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6181), 1, + ACTIONS(9773), 1, anon_sym_RPAREN, - [175217] = 2, + [175509] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9773), 1, + ACTIONS(9775), 1, anon_sym_BQUOTE, - [175224] = 2, + [175516] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9775), 1, + ACTIONS(6298), 1, anon_sym_RPAREN, - [175231] = 2, + [175523] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9777), 1, - anon_sym_esac, - [175238] = 2, + ACTIONS(5056), 1, + anon_sym_RBRACE, + [175530] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3911), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - [175245] = 2, + [175537] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9777), 1, + sym_heredoc_start, + [175544] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(3354), 1, anon_sym_RBRACE, - [175252] = 2, + [175551] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9779), 1, - sym_heredoc_start, - [175259] = 2, + anon_sym_RPAREN, + [175558] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9781), 1, anon_sym_BQUOTE, - [175266] = 2, + [175565] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2038), 1, - anon_sym_RBRACE, - [175273] = 2, + ACTIONS(6296), 1, + anon_sym_RPAREN, + [175572] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4976), 1, anon_sym_RBRACE, - [175280] = 2, + [175579] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6197), 1, - anon_sym_RPAREN, - [175287] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6193), 1, - anon_sym_RPAREN, - [175294] = 2, + ACTIONS(2306), 1, + anon_sym_RBRACE, + [175586] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9783), 1, - anon_sym_BQUOTE, - [175301] = 2, + anon_sym_esac, + [175593] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9785), 1, - anon_sym_esac, - [175308] = 2, + anon_sym_RPAREN, + [175600] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9787), 1, - anon_sym_esac, - [175315] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9057), 1, - anon_sym_fi, - [175322] = 2, + anon_sym_BQUOTE, + [175607] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9789), 1, - anon_sym_RPAREN, - [175329] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4189), 1, - anon_sym_RBRACE, - [175336] = 2, + anon_sym_esac, + [175614] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9791), 1, anon_sym_esac, - [175343] = 2, + [175621] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(6294), 1, + anon_sym_RPAREN, + [175628] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4876), 1, anon_sym_RBRACE, - [175350] = 2, + [175635] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9793), 1, - sym_heredoc_start, - [175357] = 2, + ACTIONS(9031), 1, + anon_sym_fi, + [175642] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4831), 1, - anon_sym_RBRACE, - [175364] = 2, + ACTIONS(7082), 1, + anon_sym_RBRACK, + [175649] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2489), 1, + ACTIONS(2498), 1, anon_sym_RBRACE, - [175371] = 2, + [175656] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_RBRACE, - [175378] = 2, + ACTIONS(9793), 1, + anon_sym_esac, + [175663] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9795), 1, - sym_heredoc_start, - [175385] = 2, + anon_sym_RPAREN, + [175670] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9797), 1, anon_sym_BQUOTE, - [175392] = 2, + [175677] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(6290), 1, anon_sym_RPAREN, - [175399] = 2, + [175684] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9801), 1, - anon_sym_RPAREN, - [175406] = 2, + ACTIONS(7084), 1, + anon_sym_RBRACK, + [175691] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9803), 1, + ACTIONS(6288), 1, anon_sym_RPAREN, - [175413] = 2, + [175698] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9805), 1, + ACTIONS(4712), 1, + anon_sym_RBRACE, + [175705] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9799), 1, anon_sym_BQUOTE, - [175420] = 2, + [175712] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9807), 1, + ACTIONS(9037), 1, + anon_sym_fi, + [175719] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9801), 1, anon_sym_RPAREN, - [175427] = 2, + [175726] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9809), 1, + ACTIONS(3783), 1, + anon_sym_RBRACE, + [175733] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2802), 1, + anon_sym_RBRACE, + [175740] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9803), 1, anon_sym_BQUOTE, - [175434] = 2, + [175747] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(4600), 1, anon_sym_RBRACE, - [175441] = 2, + [175754] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4861), 1, + ACTIONS(3883), 1, anon_sym_RBRACE, - [175448] = 2, + [175761] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6207), 1, + ACTIONS(9805), 1, anon_sym_RPAREN, - [175455] = 2, + [175768] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6209), 1, - anon_sym_RPAREN, - [175462] = 2, + ACTIONS(9807), 1, + sym_heredoc_start, + [175775] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9811), 1, - anon_sym_BQUOTE, - [175469] = 2, + ACTIONS(9809), 1, + anon_sym_RPAREN, + [175782] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9813), 1, + ACTIONS(6276), 1, anon_sym_RPAREN, - [175476] = 2, + [175789] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9815), 1, - anon_sym_esac, - [175483] = 2, + ACTIONS(4278), 1, + anon_sym_RBRACE, + [175796] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9817), 1, - sym_heredoc_start, - [175490] = 2, + ACTIONS(7006), 1, + anon_sym_RBRACK, + [175803] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9819), 1, - anon_sym_fi, - [175497] = 2, + ACTIONS(4506), 1, + anon_sym_RBRACE, + [175810] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(4112), 1, anon_sym_RBRACE, - [175504] = 2, + [175817] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9821), 1, + ACTIONS(6988), 1, + anon_sym_RBRACK, + [175824] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6274), 1, anon_sym_RPAREN, - [175511] = 2, + [175831] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_BQUOTE, - [175518] = 2, + ACTIONS(9811), 1, + anon_sym_RPAREN, + [175838] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2721), 1, + ACTIONS(3246), 1, anon_sym_RBRACE, - [175525] = 2, + [175845] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6130), 1, + ACTIONS(6268), 1, anon_sym_RPAREN, - [175532] = 2, + [175852] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4941), 1, - anon_sym_RBRACE, - [175539] = 2, + ACTIONS(9813), 1, + anon_sym_BQUOTE, + [175859] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_RBRACE, - [175546] = 2, + ACTIONS(9815), 1, + anon_sym_RPAREN, + [175866] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6124), 1, - anon_sym_RPAREN, - [175553] = 2, + ACTIONS(9817), 1, + anon_sym_BQUOTE, + [175873] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9825), 1, + ACTIONS(9819), 1, + anon_sym_esac, + [175880] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9821), 1, anon_sym_RPAREN, - [175560] = 2, + [175887] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4911), 1, - anon_sym_RBRACE, - [175567] = 2, + ACTIONS(9823), 1, + anon_sym_RPAREN, + [175894] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6185), 1, + ACTIONS(6264), 1, anon_sym_RPAREN, - [175574] = 2, + [175901] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9825), 1, + anon_sym_esac, + [175908] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9827), 1, - anon_sym_BQUOTE, - [175581] = 2, + anon_sym_esac, + [175915] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9829), 1, - anon_sym_RPAREN, - [175588] = 2, + ACTIONS(4389), 1, + anon_sym_RBRACE, + [175922] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6155), 1, - anon_sym_RPAREN, - [175595] = 2, + ACTIONS(4424), 1, + anon_sym_RBRACE, + [175929] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(4204), 1, anon_sym_RBRACE, - [175602] = 2, + [175936] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9831), 1, + ACTIONS(6224), 1, anon_sym_RPAREN, - [175609] = 2, + [175943] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9833), 1, + ACTIONS(3370), 1, + anon_sym_RBRACE, + [175950] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9829), 1, anon_sym_BQUOTE, - [175616] = 2, + [175957] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6203), 1, + ACTIONS(9831), 1, anon_sym_RPAREN, - [175623] = 2, + [175964] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6211), 1, - anon_sym_RPAREN, - [175630] = 2, + ACTIONS(9833), 1, + sym_heredoc_start, + [175971] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6264), 1, - anon_sym_RPAREN, - [175637] = 2, + ACTIONS(3483), 1, + anon_sym_RBRACE, + [175978] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6268), 1, + ACTIONS(9835), 1, anon_sym_RPAREN, - [175644] = 2, + [175985] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9835), 1, - anon_sym_BQUOTE, - [175651] = 2, + ACTIONS(9059), 1, + anon_sym_fi, + [175992] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9837), 1, + anon_sym_BQUOTE, + [175999] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6214), 1, anon_sym_RPAREN, - [175658] = 2, + [176006] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4264), 1, + ACTIONS(4403), 1, anon_sym_RBRACE, - [175665] = 2, + [176013] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4949), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, - [175672] = 2, + [176020] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6282), 1, + ACTIONS(6212), 1, anon_sym_RPAREN, - [175679] = 2, + [176027] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9839), 1, - anon_sym_esac, - [175686] = 2, + anon_sym_BQUOTE, + [176034] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3439), 1, + anon_sym_RBRACE, + [176041] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9841), 1, - anon_sym_esac, - [175693] = 2, + anon_sym_RPAREN, + [176048] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9843), 1, + anon_sym_RPAREN, + [176055] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9845), 1, anon_sym_BQUOTE, - [175700] = 2, + [176062] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3731), 1, - anon_sym_RBRACE, - [175707] = 2, + ACTIONS(6204), 1, + anon_sym_RPAREN, + [176069] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(7094), 1, - anon_sym_RBRACK, - [175714] = 2, + ACTIONS(4108), 1, + anon_sym_RBRACE, + [176076] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_RPAREN, - [175721] = 2, + ACTIONS(4618), 1, + anon_sym_RBRACE, + [176083] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(7126), 1, - anon_sym_RBRACK, - [175728] = 2, + ACTIONS(3929), 1, + anon_sym_RBRACE, + [176090] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9847), 1, anon_sym_RPAREN, - [175735] = 2, + [176097] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9849), 1, anon_sym_BQUOTE, - [175742] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_RBRACE, - [175749] = 2, + [176104] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(5001), 1, - anon_sym_RBRACE, - [175756] = 2, + ACTIONS(6200), 1, + anon_sym_RPAREN, + [176111] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6175), 1, + ACTIONS(6202), 1, anon_sym_RPAREN, - [175763] = 2, + [176118] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9851), 1, - anon_sym_RPAREN, - [175770] = 2, + anon_sym_in, + [176125] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9853), 1, - anon_sym_esac, - [175777] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(6169), 1, - anon_sym_RPAREN, - [175784] = 2, + anon_sym_in, + [176132] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9855), 1, anon_sym_BQUOTE, - [175791] = 2, + [176139] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4069), 1, + anon_sym_RBRACE, + [176146] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9857), 1, anon_sym_RPAREN, - [175798] = 2, + [176153] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9859), 1, - anon_sym_esac, - [175805] = 2, + ACTIONS(3911), 1, + anon_sym_RBRACE, + [176160] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9861), 1, - anon_sym_fi, - [175812] = 2, + ACTIONS(2794), 1, + anon_sym_RBRACE, + [176167] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9863), 1, - anon_sym_then, - [175819] = 2, + ACTIONS(9859), 1, + anon_sym_RPAREN, + [176174] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9865), 1, - anon_sym_esac, - [175826] = 2, + ACTIONS(9861), 1, + anon_sym_BQUOTE, + [176181] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2955), 1, + ACTIONS(2989), 1, anon_sym_RBRACE, - [175833] = 2, + [176188] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2839), 1, - anon_sym_RBRACE, - [175840] = 2, + ACTIONS(6192), 1, + anon_sym_RPAREN, + [176195] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4407), 1, + ACTIONS(9863), 1, + anon_sym_BQUOTE, + [176202] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4102), 1, anon_sym_RBRACE, - [175847] = 2, + [176209] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(5077), 1, + ACTIONS(3901), 1, anon_sym_RBRACE, - [175854] = 2, + [176216] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6122), 1, + ACTIONS(9865), 1, anon_sym_RPAREN, - [175861] = 2, + [176223] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9867), 1, anon_sym_BQUOTE, - [175868] = 2, + [176230] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9869), 1, + ACTIONS(6190), 1, anon_sym_RPAREN, - [175875] = 2, + [176237] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3673), 1, - anon_sym_RBRACE, - [175882] = 2, + ACTIONS(6186), 1, + anon_sym_RPAREN, + [176244] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3013), 1, + ACTIONS(4188), 1, anon_sym_RBRACE, - [175889] = 2, + [176251] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9869), 1, + anon_sym_BQUOTE, + [176258] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(5045), 1, + ACTIONS(2971), 1, anon_sym_RBRACE, - [175896] = 2, + [176265] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4303), 1, + ACTIONS(3723), 1, anon_sym_RBRACE, - [175903] = 2, + [176272] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9871), 1, anon_sym_RPAREN, - [175910] = 2, + [176279] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9873), 1, anon_sym_BQUOTE, - [175917] = 2, + [176286] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6157), 1, - anon_sym_RPAREN, - [175924] = 2, + ACTIONS(9875), 1, + sym_heredoc_start, + [176293] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9875), 1, - anon_sym_BQUOTE, - [175931] = 2, + ACTIONS(6184), 1, + anon_sym_RPAREN, + [176300] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9877), 1, anon_sym_RPAREN, - [175938] = 2, + [176307] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9879), 1, - anon_sym_esac, - [175945] = 2, + anon_sym_BQUOTE, + [176314] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_esac, - [175952] = 2, + ACTIONS(4299), 1, + anon_sym_RBRACE, + [176321] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6159), 1, + ACTIONS(9881), 1, anon_sym_RPAREN, - [175959] = 2, + [176328] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9883), 1, - anon_sym_esac, - [175966] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9041), 1, - anon_sym_fi, - [175973] = 2, + anon_sym_BQUOTE, + [176335] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3071), 1, - anon_sym_RBRACE, - [175980] = 2, + ACTIONS(9885), 1, + anon_sym_RPAREN, + [176342] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4441), 1, + ACTIONS(3543), 1, anon_sym_RBRACE, - [175987] = 2, + [176349] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(5021), 1, + ACTIONS(2640), 1, anon_sym_RBRACE, - [175994] = 2, + [176356] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6187), 1, + ACTIONS(9887), 1, anon_sym_RPAREN, - [176001] = 2, + [176363] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9053), 1, - anon_sym_fi, - [176008] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9885), 1, + ACTIONS(9889), 1, anon_sym_BQUOTE, - [176015] = 2, + [176370] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9887), 1, - ts_builtin_sym_end, - [176022] = 2, + ACTIONS(6176), 1, + anon_sym_RPAREN, + [176377] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9889), 1, - ts_builtin_sym_end, - [176029] = 2, + ACTIONS(4532), 1, + anon_sym_RBRACE, + [176384] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(2096), 1, + ACTIONS(3084), 1, anon_sym_RBRACE, - [176036] = 2, + [176391] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9891), 1, anon_sym_RPAREN, - [176043] = 2, + [176398] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9893), 1, - anon_sym_then, - [176050] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_RBRACE, - [176057] = 2, + anon_sym_BQUOTE, + [176405] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(4788), 1, anon_sym_RBRACE, - [176064] = 2, + [176412] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4957), 1, - anon_sym_RBRACE, - [176071] = 2, + ACTIONS(6188), 1, + anon_sym_RPAREN, + [176419] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9895), 1, anon_sym_esac, - [176078] = 2, + [176426] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9897), 1, - anon_sym_BQUOTE, - [176085] = 2, + ACTIONS(6174), 1, + anon_sym_RPAREN, + [176433] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9899), 1, - anon_sym_BQUOTE, - [176092] = 2, + ACTIONS(4582), 1, + anon_sym_RBRACE, + [176440] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9901), 1, + ACTIONS(2997), 1, + anon_sym_RBRACE, + [176447] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9897), 1, anon_sym_esac, - [176099] = 2, + [176454] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9047), 1, + ACTIONS(6172), 1, + anon_sym_RPAREN, + [176461] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9039), 1, anon_sym_fi, - [176106] = 2, + [176468] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(7060), 1, - anon_sym_RBRACK, - [176113] = 2, + ACTIONS(9899), 1, + anon_sym_RPAREN, + [176475] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(7048), 1, - anon_sym_RBRACK, - [176120] = 2, + ACTIONS(9901), 1, + anon_sym_BQUOTE, + [176482] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9903), 1, + ACTIONS(6168), 1, anon_sym_RPAREN, - [176127] = 2, + [176489] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9905), 1, - anon_sym_BQUOTE, - [176134] = 2, + ACTIONS(9903), 1, + anon_sym_RPAREN, + [176496] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9907), 1, - sym_word, - [176141] = 2, + ACTIONS(4646), 1, + anon_sym_RBRACE, + [176503] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9909), 1, - sym_heredoc_start, - [176148] = 2, + ACTIONS(9905), 1, + anon_sym_BQUOTE, + [176510] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9911), 1, + ACTIONS(9907), 1, anon_sym_RPAREN, - [176155] = 2, + [176517] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9031), 1, - anon_sym_fi, - [176162] = 2, + ACTIONS(2868), 1, + anon_sym_RBRACE, + [176524] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(2538), 1, anon_sym_RBRACE, - [176169] = 2, + [176531] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9703), 1, - aux_sym__simple_variable_name_token1, - [176176] = 2, + ACTIONS(4856), 1, + anon_sym_RBRACE, + [176538] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6252), 1, + ACTIONS(9909), 1, anon_sym_RPAREN, - [176183] = 2, + [176545] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4942), 1, anon_sym_RBRACE, - [176190] = 2, + [176552] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6266), 1, + ACTIONS(9579), 1, + aux_sym__simple_variable_name_token1, + [176559] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6158), 1, anon_sym_RPAREN, - [176197] = 2, + [176566] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9699), 1, - aux_sym__simple_variable_name_token1, - [176204] = 2, + ACTIONS(6154), 1, + anon_sym_RPAREN, + [176573] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4475), 1, - anon_sym_RBRACE, - [176211] = 2, + ACTIONS(9911), 1, + anon_sym_then, + [176580] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9913), 1, - anon_sym_BQUOTE, - [176218] = 2, + sym_heredoc_start, + [176587] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9915), 1, - anon_sym_RPAREN, - [176225] = 2, + anon_sym_BQUOTE, + [176594] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(5044), 1, anon_sym_RBRACE, - [176232] = 2, + [176601] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3245), 1, + ACTIONS(9917), 1, + anon_sym_RPAREN, + [176608] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2464), 1, anon_sym_RBRACE, - [176239] = 2, + [176615] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4771), 1, + ACTIONS(2070), 1, anon_sym_RBRACE, - [176246] = 2, + [176622] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9917), 1, - anon_sym_RPAREN, - [176253] = 2, + ACTIONS(4892), 1, + anon_sym_RBRACE, + [176629] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9919), 1, - anon_sym_BQUOTE, - [176260] = 2, + anon_sym_RPAREN, + [176636] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9921), 1, - sym_heredoc_start, - [176267] = 2, + anon_sym_BQUOTE, + [176643] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9923), 1, - anon_sym_RPAREN, - [176274] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(9925), 1, - anon_sym_BQUOTE, - [176281] = 2, + ts_builtin_sym_end, + [176650] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9927), 1, - anon_sym_esac, - [176288] = 2, + ACTIONS(6144), 1, + anon_sym_RPAREN, + [176657] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6270), 1, + ACTIONS(9925), 1, anon_sym_RPAREN, - [176295] = 2, + [176664] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9929), 1, + ACTIONS(6142), 1, anon_sym_RPAREN, - [176302] = 2, + [176671] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9931), 1, + ACTIONS(9927), 1, anon_sym_BQUOTE, - [176309] = 2, + [176678] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6272), 1, + ACTIONS(6146), 1, anon_sym_RPAREN, - [176316] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(3319), 1, - anon_sym_RBRACE, - [176323] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(4501), 1, - anon_sym_RBRACE, - [176330] = 2, + [176685] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4686), 1, - anon_sym_RBRACE, - [176337] = 2, + ACTIONS(9929), 1, + anon_sym_esac, + [176692] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6286), 1, + ACTIONS(9931), 1, anon_sym_RPAREN, - [176344] = 2, + [176699] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9933), 1, - anon_sym_BQUOTE, - [176351] = 2, + ACTIONS(5026), 1, + anon_sym_RBRACE, + [176706] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9587), 1, + ACTIONS(9641), 1, aux_sym__simple_variable_name_token1, - [176358] = 2, + [176713] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9935), 1, - anon_sym_RPAREN, - [176365] = 2, + ACTIONS(9933), 1, + ts_builtin_sym_end, + [176720] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(2372), 1, anon_sym_RBRACE, - [176372] = 2, + [176727] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9937), 1, - anon_sym_esac, - [176379] = 2, + ACTIONS(2112), 1, + anon_sym_RBRACE, + [176734] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9939), 1, + ACTIONS(9935), 1, anon_sym_RPAREN, - [176386] = 2, + [176741] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(9941), 1, + ACTIONS(9937), 1, anon_sym_BQUOTE, - [176393] = 2, - ACTIONS(59), 1, - sym_comment, - ACTIONS(3371), 1, - anon_sym_RBRACE, - [176400] = 2, + [176748] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6294), 1, + ACTIONS(6130), 1, anon_sym_RPAREN, - [176407] = 2, + [176755] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(4990), 1, anon_sym_RBRACE, - [176414] = 2, + [176762] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4579), 1, - anon_sym_RBRACE, - [176421] = 2, + ACTIONS(9939), 1, + sym_word, + [176769] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9941), 1, + sym_heredoc_start, + [176776] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(4539), 1, + ACTIONS(2270), 1, anon_sym_RBRACE, - [176428] = 2, + [176783] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(6296), 1, - anon_sym_RPAREN, - [176435] = 2, + ACTIONS(9691), 1, + aux_sym__simple_variable_name_token1, + [176790] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9943), 1, anon_sym_RPAREN, - [176442] = 2, + [176797] = 2, ACTIONS(59), 1, sym_comment, ACTIONS(9945), 1, - anon_sym_RPAREN, - [176449] = 2, + anon_sym_BQUOTE, + [176804] = 2, ACTIONS(59), 1, sym_comment, - ACTIONS(3431), 1, - anon_sym_RBRACE, + ACTIONS(6132), 1, + anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(227)] = 0, - [SMALL_STATE(228)] = 75, - [SMALL_STATE(229)] = 154, - [SMALL_STATE(230)] = 229, - [SMALL_STATE(231)] = 304, + [SMALL_STATE(228)] = 81, + [SMALL_STATE(229)] = 156, + [SMALL_STATE(230)] = 235, + [SMALL_STATE(231)] = 310, [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(234)] = 534, + [SMALL_STATE(235)] = 604, + [SMALL_STATE(236)] = 674, + [SMALL_STATE(237)] = 744, + [SMALL_STATE(238)] = 814, + [SMALL_STATE(239)] = 884, + [SMALL_STATE(240)] = 958, + [SMALL_STATE(241)] = 1036, + [SMALL_STATE(242)] = 1110, + [SMALL_STATE(243)] = 1180, + [SMALL_STATE(244)] = 1254, + [SMALL_STATE(245)] = 1324, + [SMALL_STATE(246)] = 1394, + [SMALL_STATE(247)] = 1464, + [SMALL_STATE(248)] = 1534, + [SMALL_STATE(249)] = 1604, + [SMALL_STATE(250)] = 1674, + [SMALL_STATE(251)] = 1744, + [SMALL_STATE(252)] = 1814, + [SMALL_STATE(253)] = 1884, + [SMALL_STATE(254)] = 1954, + [SMALL_STATE(255)] = 2028, + [SMALL_STATE(256)] = 2098, + [SMALL_STATE(257)] = 2168, + [SMALL_STATE(258)] = 2238, + [SMALL_STATE(259)] = 2308, + [SMALL_STATE(260)] = 2386, + [SMALL_STATE(261)] = 2456, + [SMALL_STATE(262)] = 2526, + [SMALL_STATE(263)] = 2596, + [SMALL_STATE(264)] = 2666, [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(270)] = 3084, + [SMALL_STATE(271)] = 3153, + [SMALL_STATE(272)] = 3222, + [SMALL_STATE(273)] = 3291, + [SMALL_STATE(274)] = 3360, + [SMALL_STATE(275)] = 3429, + [SMALL_STATE(276)] = 3498, + [SMALL_STATE(277)] = 3567, + [SMALL_STATE(278)] = 3636, + [SMALL_STATE(279)] = 3709, + [SMALL_STATE(280)] = 3778, + [SMALL_STATE(281)] = 3847, + [SMALL_STATE(282)] = 3916, + [SMALL_STATE(283)] = 3985, + [SMALL_STATE(284)] = 4054, + [SMALL_STATE(285)] = 4123, + [SMALL_STATE(286)] = 4192, + [SMALL_STATE(287)] = 4261, + [SMALL_STATE(288)] = 4334, + [SMALL_STATE(289)] = 4403, + [SMALL_STATE(290)] = 4472, + [SMALL_STATE(291)] = 4541, [SMALL_STATE(292)] = 4618, [SMALL_STATE(293)] = 4687, [SMALL_STATE(294)] = 4756, @@ -177544,3988 +177867,3996 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(298)] = 5032, [SMALL_STATE(299)] = 5101, [SMALL_STATE(300)] = 5170, - [SMALL_STATE(301)] = 5238, + [SMALL_STATE(301)] = 5242, [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(303)] = 5428, + [SMALL_STATE(304)] = 5546, + [SMALL_STATE(305)] = 5614, + [SMALL_STATE(306)] = 5682, + [SMALL_STATE(307)] = 5770, + [SMALL_STATE(308)] = 5858, + [SMALL_STATE(309)] = 5922, + [SMALL_STATE(310)] = 6010, + [SMALL_STATE(311)] = 6077, + [SMALL_STATE(312)] = 6164, + [SMALL_STATE(313)] = 6251, + [SMALL_STATE(314)] = 6338, + [SMALL_STATE(315)] = 6405, + [SMALL_STATE(316)] = 6489, + [SMALL_STATE(317)] = 6573, + [SMALL_STATE(318)] = 6657, + [SMALL_STATE(319)] = 6743, + [SMALL_STATE(320)] = 6829, + [SMALL_STATE(321)] = 6891, + [SMALL_STATE(322)] = 6955, + [SMALL_STATE(323)] = 7017, + [SMALL_STATE(324)] = 7103, + [SMALL_STATE(325)] = 7189, + [SMALL_STATE(326)] = 7275, + [SMALL_STATE(327)] = 7339, + [SMALL_STATE(328)] = 7423, + [SMALL_STATE(329)] = 7507, + [SMALL_STATE(330)] = 7593, + [SMALL_STATE(331)] = 7676, + [SMALL_STATE(332)] = 7735, [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(336)] = 7987, + [SMALL_STATE(337)] = 8050, + [SMALL_STATE(338)] = 8113, + [SMALL_STATE(339)] = 8176, + [SMALL_STATE(340)] = 8259, + [SMALL_STATE(341)] = 8322, + [SMALL_STATE(342)] = 8385, + [SMALL_STATE(343)] = 8466, + [SMALL_STATE(344)] = 8547, + [SMALL_STATE(345)] = 8610, + [SMALL_STATE(346)] = 8691, [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, + [SMALL_STATE(349)] = 8876, + [SMALL_STATE(350)] = 8939, + [SMALL_STATE(351)] = 9002, + [SMALL_STATE(352)] = 9061, + [SMALL_STATE(353)] = 9126, + [SMALL_STATE(354)] = 9209, + [SMALL_STATE(355)] = 9292, + [SMALL_STATE(356)] = 9351, + [SMALL_STATE(357)] = 9410, + [SMALL_STATE(358)] = 9471, + [SMALL_STATE(359)] = 9554, + [SMALL_STATE(360)] = 9619, + [SMALL_STATE(361)] = 9702, + [SMALL_STATE(362)] = 9761, + [SMALL_STATE(363)] = 9820, + [SMALL_STATE(364)] = 9882, + [SMALL_STATE(365)] = 9942, + [SMALL_STATE(366)] = 10024, + [SMALL_STATE(367)] = 10106, + [SMALL_STATE(368)] = 10188, + [SMALL_STATE(369)] = 10250, + [SMALL_STATE(370)] = 10312, + [SMALL_STATE(371)] = 10394, + [SMALL_STATE(372)] = 10476, + [SMALL_STATE(373)] = 10558, + [SMALL_STATE(374)] = 10638, + [SMALL_STATE(375)] = 10720, + [SMALL_STATE(376)] = 10800, + [SMALL_STATE(377)] = 10862, + [SMALL_STATE(378)] = 10924, + [SMALL_STATE(379)] = 11006, + [SMALL_STATE(380)] = 11068, + [SMALL_STATE(381)] = 11130, + [SMALL_STATE(382)] = 11210, + [SMALL_STATE(383)] = 11272, + [SMALL_STATE(384)] = 11334, + [SMALL_STATE(385)] = 11396, + [SMALL_STATE(386)] = 11478, + [SMALL_STATE(387)] = 11540, + [SMALL_STATE(388)] = 11622, + [SMALL_STATE(389)] = 11684, + [SMALL_STATE(390)] = 11745, + [SMALL_STATE(391)] = 11824, + [SMALL_STATE(392)] = 11903, + [SMALL_STATE(393)] = 11982, + [SMALL_STATE(394)] = 12043, + [SMALL_STATE(395)] = 12106, + [SMALL_STATE(396)] = 12185, + [SMALL_STATE(397)] = 12246, + [SMALL_STATE(398)] = 12325, + [SMALL_STATE(399)] = 12404, + [SMALL_STATE(400)] = 12465, + [SMALL_STATE(401)] = 12528, + [SMALL_STATE(402)] = 12607, + [SMALL_STATE(403)] = 12668, + [SMALL_STATE(404)] = 12729, + [SMALL_STATE(405)] = 12808, + [SMALL_STATE(406)] = 12869, + [SMALL_STATE(407)] = 12930, + [SMALL_STATE(408)] = 12991, + [SMALL_STATE(409)] = 13070, + [SMALL_STATE(410)] = 13149, + [SMALL_STATE(411)] = 13212, + [SMALL_STATE(412)] = 13275, + [SMALL_STATE(413)] = 13336, + [SMALL_STATE(414)] = 13438, + [SMALL_STATE(415)] = 13498, + [SMALL_STATE(416)] = 13558, + [SMALL_STATE(417)] = 13612, + [SMALL_STATE(418)] = 13688, + [SMALL_STATE(419)] = 13742, + [SMALL_STATE(420)] = 13844, + [SMALL_STATE(421)] = 13904, + [SMALL_STATE(422)] = 13964, + [SMALL_STATE(423)] = 14016, + [SMALL_STATE(424)] = 14118, + [SMALL_STATE(425)] = 14220, + [SMALL_STATE(426)] = 14322, + [SMALL_STATE(427)] = 14398, + [SMALL_STATE(428)] = 14452, + [SMALL_STATE(429)] = 14506, + [SMALL_STATE(430)] = 14558, + [SMALL_STATE(431)] = 14611, + [SMALL_STATE(432)] = 14664, + [SMALL_STATE(433)] = 14715, + [SMALL_STATE(434)] = 14768, + [SMALL_STATE(435)] = 14819, + [SMALL_STATE(436)] = 14872, + [SMALL_STATE(437)] = 14924, + [SMALL_STATE(438)] = 14975, + [SMALL_STATE(439)] = 15030, + [SMALL_STATE(440)] = 15095, + [SMALL_STATE(441)] = 15150, + [SMALL_STATE(442)] = 15201, + [SMALL_STATE(443)] = 15252, + [SMALL_STATE(444)] = 15303, + [SMALL_STATE(445)] = 15354, + [SMALL_STATE(446)] = 15409, + [SMALL_STATE(447)] = 15460, + [SMALL_STATE(448)] = 15525, + [SMALL_STATE(449)] = 15577, + [SMALL_STATE(450)] = 15625, + [SMALL_STATE(451)] = 15677, + [SMALL_STATE(452)] = 15729, + [SMALL_STATE(453)] = 15781, + [SMALL_STATE(454)] = 15833, + [SMALL_STATE(455)] = 15885, + [SMALL_STATE(456)] = 15937, + [SMALL_STATE(457)] = 15989, + [SMALL_STATE(458)] = 16041, + [SMALL_STATE(459)] = 16093, + [SMALL_STATE(460)] = 16145, + [SMALL_STATE(461)] = 16193, + [SMALL_STATE(462)] = 16257, + [SMALL_STATE(463)] = 16321, + [SMALL_STATE(464)] = 16375, + [SMALL_STATE(465)] = 16429, + [SMALL_STATE(466)] = 16481, + [SMALL_STATE(467)] = 16533, + [SMALL_STATE(468)] = 16585, + [SMALL_STATE(469)] = 16633, + [SMALL_STATE(470)] = 16685, + [SMALL_STATE(471)] = 16733, + [SMALL_STATE(472)] = 16785, + [SMALL_STATE(473)] = 16833, + [SMALL_STATE(474)] = 16881, + [SMALL_STATE(475)] = 16933, + [SMALL_STATE(476)] = 16981, + [SMALL_STATE(477)] = 17029, + [SMALL_STATE(478)] = 17081, + [SMALL_STATE(479)] = 17135, + [SMALL_STATE(480)] = 17183, + [SMALL_STATE(481)] = 17235, + [SMALL_STATE(482)] = 17283, + [SMALL_STATE(483)] = 17331, + [SMALL_STATE(484)] = 17377, + [SMALL_STATE(485)] = 17429, + [SMALL_STATE(486)] = 17481, + [SMALL_STATE(487)] = 17533, + [SMALL_STATE(488)] = 17581, + [SMALL_STATE(489)] = 17629, + [SMALL_STATE(490)] = 17677, + [SMALL_STATE(491)] = 17725, + [SMALL_STATE(492)] = 17773, + [SMALL_STATE(493)] = 17821, + [SMALL_STATE(494)] = 17873, + [SMALL_STATE(495)] = 17921, + [SMALL_STATE(496)] = 17969, + [SMALL_STATE(497)] = 18017, + [SMALL_STATE(498)] = 18065, + [SMALL_STATE(499)] = 18113, + [SMALL_STATE(500)] = 18161, + [SMALL_STATE(501)] = 18209, + [SMALL_STATE(502)] = 18257, + [SMALL_STATE(503)] = 18305, + [SMALL_STATE(504)] = 18353, + [SMALL_STATE(505)] = 18401, + [SMALL_STATE(506)] = 18464, + [SMALL_STATE(507)] = 18543, + [SMALL_STATE(508)] = 18622, + [SMALL_STATE(509)] = 18701, + [SMALL_STATE(510)] = 18780, + [SMALL_STATE(511)] = 18859, + [SMALL_STATE(512)] = 18938, + [SMALL_STATE(513)] = 19017, + [SMALL_STATE(514)] = 19096, + [SMALL_STATE(515)] = 19175, + [SMALL_STATE(516)] = 19254, + [SMALL_STATE(517)] = 19333, + [SMALL_STATE(518)] = 19412, + [SMALL_STATE(519)] = 19491, + [SMALL_STATE(520)] = 19570, + [SMALL_STATE(521)] = 19649, + [SMALL_STATE(522)] = 19728, + [SMALL_STATE(523)] = 19807, + [SMALL_STATE(524)] = 19886, + [SMALL_STATE(525)] = 19965, + [SMALL_STATE(526)] = 20044, + [SMALL_STATE(527)] = 20123, + [SMALL_STATE(528)] = 20202, + [SMALL_STATE(529)] = 20281, + [SMALL_STATE(530)] = 20360, + [SMALL_STATE(531)] = 20439, + [SMALL_STATE(532)] = 20518, + [SMALL_STATE(533)] = 20597, + [SMALL_STATE(534)] = 20676, + [SMALL_STATE(535)] = 20755, + [SMALL_STATE(536)] = 20834, + [SMALL_STATE(537)] = 20913, + [SMALL_STATE(538)] = 20992, + [SMALL_STATE(539)] = 21071, + [SMALL_STATE(540)] = 21150, + [SMALL_STATE(541)] = 21229, + [SMALL_STATE(542)] = 21308, + [SMALL_STATE(543)] = 21387, + [SMALL_STATE(544)] = 21466, + [SMALL_STATE(545)] = 21545, + [SMALL_STATE(546)] = 21624, + [SMALL_STATE(547)] = 21703, + [SMALL_STATE(548)] = 21782, + [SMALL_STATE(549)] = 21835, + [SMALL_STATE(550)] = 21914, + [SMALL_STATE(551)] = 21969, + [SMALL_STATE(552)] = 22048, + [SMALL_STATE(553)] = 22127, + [SMALL_STATE(554)] = 22206, + [SMALL_STATE(555)] = 22285, + [SMALL_STATE(556)] = 22364, + [SMALL_STATE(557)] = 22443, + [SMALL_STATE(558)] = 22522, + [SMALL_STATE(559)] = 22601, + [SMALL_STATE(560)] = 22680, + [SMALL_STATE(561)] = 22759, + [SMALL_STATE(562)] = 22838, + [SMALL_STATE(563)] = 22917, + [SMALL_STATE(564)] = 22996, + [SMALL_STATE(565)] = 23075, + [SMALL_STATE(566)] = 23154, + [SMALL_STATE(567)] = 23233, + [SMALL_STATE(568)] = 23312, + [SMALL_STATE(569)] = 23391, + [SMALL_STATE(570)] = 23470, + [SMALL_STATE(571)] = 23549, + [SMALL_STATE(572)] = 23628, + [SMALL_STATE(573)] = 23707, + [SMALL_STATE(574)] = 23786, + [SMALL_STATE(575)] = 23865, + [SMALL_STATE(576)] = 23944, + [SMALL_STATE(577)] = 24023, + [SMALL_STATE(578)] = 24102, + [SMALL_STATE(579)] = 24181, + [SMALL_STATE(580)] = 24260, + [SMALL_STATE(581)] = 24339, + [SMALL_STATE(582)] = 24418, + [SMALL_STATE(583)] = 24497, + [SMALL_STATE(584)] = 24576, + [SMALL_STATE(585)] = 24655, + [SMALL_STATE(586)] = 24734, + [SMALL_STATE(587)] = 24813, + [SMALL_STATE(588)] = 24892, + [SMALL_STATE(589)] = 24971, + [SMALL_STATE(590)] = 25050, + [SMALL_STATE(591)] = 25129, + [SMALL_STATE(592)] = 25208, + [SMALL_STATE(593)] = 25287, + [SMALL_STATE(594)] = 25366, + [SMALL_STATE(595)] = 25445, + [SMALL_STATE(596)] = 25524, + [SMALL_STATE(597)] = 25603, + [SMALL_STATE(598)] = 25682, + [SMALL_STATE(599)] = 25761, + [SMALL_STATE(600)] = 25812, + [SMALL_STATE(601)] = 25891, + [SMALL_STATE(602)] = 25970, + [SMALL_STATE(603)] = 26049, + [SMALL_STATE(604)] = 26128, + [SMALL_STATE(605)] = 26207, + [SMALL_STATE(606)] = 26260, + [SMALL_STATE(607)] = 26339, + [SMALL_STATE(608)] = 26418, + [SMALL_STATE(609)] = 26497, + [SMALL_STATE(610)] = 26576, + [SMALL_STATE(611)] = 26655, + [SMALL_STATE(612)] = 26734, + [SMALL_STATE(613)] = 26813, + [SMALL_STATE(614)] = 26876, + [SMALL_STATE(615)] = 26955, + [SMALL_STATE(616)] = 27034, + [SMALL_STATE(617)] = 27113, + [SMALL_STATE(618)] = 27192, + [SMALL_STATE(619)] = 27271, + [SMALL_STATE(620)] = 27350, + [SMALL_STATE(621)] = 27429, + [SMALL_STATE(622)] = 27508, + [SMALL_STATE(623)] = 27555, + [SMALL_STATE(624)] = 27602, + [SMALL_STATE(625)] = 27681, + [SMALL_STATE(626)] = 27760, + [SMALL_STATE(627)] = 27839, + [SMALL_STATE(628)] = 27886, + [SMALL_STATE(629)] = 27933, + [SMALL_STATE(630)] = 27980, + [SMALL_STATE(631)] = 28059, + [SMALL_STATE(632)] = 28138, + [SMALL_STATE(633)] = 28217, + [SMALL_STATE(634)] = 28296, + [SMALL_STATE(635)] = 28343, + [SMALL_STATE(636)] = 28390, + [SMALL_STATE(637)] = 28437, + [SMALL_STATE(638)] = 28490, + [SMALL_STATE(639)] = 28537, + [SMALL_STATE(640)] = 28584, + [SMALL_STATE(641)] = 28631, + [SMALL_STATE(642)] = 28710, + [SMALL_STATE(643)] = 28789, + [SMALL_STATE(644)] = 28836, + [SMALL_STATE(645)] = 28915, + [SMALL_STATE(646)] = 28962, + [SMALL_STATE(647)] = 29041, + [SMALL_STATE(648)] = 29120, + [SMALL_STATE(649)] = 29199, + [SMALL_STATE(650)] = 29278, + [SMALL_STATE(651)] = 29357, + [SMALL_STATE(652)] = 29436, + [SMALL_STATE(653)] = 29515, + [SMALL_STATE(654)] = 29578, + [SMALL_STATE(655)] = 29657, + [SMALL_STATE(656)] = 29736, + [SMALL_STATE(657)] = 29787, + [SMALL_STATE(658)] = 29866, + [SMALL_STATE(659)] = 29945, + [SMALL_STATE(660)] = 30024, + [SMALL_STATE(661)] = 30103, + [SMALL_STATE(662)] = 30182, + [SMALL_STATE(663)] = 30261, + [SMALL_STATE(664)] = 30308, + [SMALL_STATE(665)] = 30359, + [SMALL_STATE(666)] = 30410, + [SMALL_STATE(667)] = 30457, + [SMALL_STATE(668)] = 30536, + [SMALL_STATE(669)] = 30615, + [SMALL_STATE(670)] = 30694, + [SMALL_STATE(671)] = 30773, + [SMALL_STATE(672)] = 30852, + [SMALL_STATE(673)] = 30931, + [SMALL_STATE(674)] = 31010, + [SMALL_STATE(675)] = 31061, + [SMALL_STATE(676)] = 31140, + [SMALL_STATE(677)] = 31219, + [SMALL_STATE(678)] = 31298, + [SMALL_STATE(679)] = 31377, + [SMALL_STATE(680)] = 31456, + [SMALL_STATE(681)] = 31535, + [SMALL_STATE(682)] = 31614, + [SMALL_STATE(683)] = 31693, + [SMALL_STATE(684)] = 31740, + [SMALL_STATE(685)] = 31787, + [SMALL_STATE(686)] = 31834, + [SMALL_STATE(687)] = 31881, + [SMALL_STATE(688)] = 31928, + [SMALL_STATE(689)] = 32007, + [SMALL_STATE(690)] = 32086, + [SMALL_STATE(691)] = 32133, + [SMALL_STATE(692)] = 32180, + [SMALL_STATE(693)] = 32227, + [SMALL_STATE(694)] = 32274, + [SMALL_STATE(695)] = 32321, + [SMALL_STATE(696)] = 32400, + [SMALL_STATE(697)] = 32479, + [SMALL_STATE(698)] = 32558, + [SMALL_STATE(699)] = 32637, + [SMALL_STATE(700)] = 32690, + [SMALL_STATE(701)] = 32769, + [SMALL_STATE(702)] = 32822, + [SMALL_STATE(703)] = 32901, + [SMALL_STATE(704)] = 32948, + [SMALL_STATE(705)] = 32995, + [SMALL_STATE(706)] = 33042, + [SMALL_STATE(707)] = 33089, + [SMALL_STATE(708)] = 33168, + [SMALL_STATE(709)] = 33247, + [SMALL_STATE(710)] = 33326, + [SMALL_STATE(711)] = 33405, + [SMALL_STATE(712)] = 33484, + [SMALL_STATE(713)] = 33563, + [SMALL_STATE(714)] = 33642, + [SMALL_STATE(715)] = 33721, + [SMALL_STATE(716)] = 33800, + [SMALL_STATE(717)] = 33879, + [SMALL_STATE(718)] = 33958, + [SMALL_STATE(719)] = 34037, + [SMALL_STATE(720)] = 34116, + [SMALL_STATE(721)] = 34195, + [SMALL_STATE(722)] = 34274, + [SMALL_STATE(723)] = 34321, + [SMALL_STATE(724)] = 34368, + [SMALL_STATE(725)] = 34419, + [SMALL_STATE(726)] = 34466, + [SMALL_STATE(727)] = 34545, + [SMALL_STATE(728)] = 34596, + [SMALL_STATE(729)] = 34647, + [SMALL_STATE(730)] = 34726, + [SMALL_STATE(731)] = 34773, + [SMALL_STATE(732)] = 34824, + [SMALL_STATE(733)] = 34871, + [SMALL_STATE(734)] = 34918, + [SMALL_STATE(735)] = 34965, + [SMALL_STATE(736)] = 35012, + [SMALL_STATE(737)] = 35091, + [SMALL_STATE(738)] = 35170, + [SMALL_STATE(739)] = 35217, + [SMALL_STATE(740)] = 35296, + [SMALL_STATE(741)] = 35347, + [SMALL_STATE(742)] = 35426, + [SMALL_STATE(743)] = 35505, + [SMALL_STATE(744)] = 35584, + [SMALL_STATE(745)] = 35663, + [SMALL_STATE(746)] = 35742, + [SMALL_STATE(747)] = 35789, + [SMALL_STATE(748)] = 35868, + [SMALL_STATE(749)] = 35947, + [SMALL_STATE(750)] = 35994, + [SMALL_STATE(751)] = 36073, + [SMALL_STATE(752)] = 36120, + [SMALL_STATE(753)] = 36199, + [SMALL_STATE(754)] = 36246, + [SMALL_STATE(755)] = 36293, + [SMALL_STATE(756)] = 36340, + [SMALL_STATE(757)] = 36387, + [SMALL_STATE(758)] = 36434, + [SMALL_STATE(759)] = 36481, + [SMALL_STATE(760)] = 36528, + [SMALL_STATE(761)] = 36575, + [SMALL_STATE(762)] = 36622, + [SMALL_STATE(763)] = 36669, + [SMALL_STATE(764)] = 36716, + [SMALL_STATE(765)] = 36763, + [SMALL_STATE(766)] = 36810, + [SMALL_STATE(767)] = 36857, + [SMALL_STATE(768)] = 36904, + [SMALL_STATE(769)] = 36983, + [SMALL_STATE(770)] = 37030, + [SMALL_STATE(771)] = 37077, + [SMALL_STATE(772)] = 37156, + [SMALL_STATE(773)] = 37203, + [SMALL_STATE(774)] = 37250, + [SMALL_STATE(775)] = 37297, + [SMALL_STATE(776)] = 37344, + [SMALL_STATE(777)] = 37391, + [SMALL_STATE(778)] = 37442, + [SMALL_STATE(779)] = 37489, + [SMALL_STATE(780)] = 37536, + [SMALL_STATE(781)] = 37615, + [SMALL_STATE(782)] = 37694, + [SMALL_STATE(783)] = 37745, + [SMALL_STATE(784)] = 37824, + [SMALL_STATE(785)] = 37871, + [SMALL_STATE(786)] = 37918, + [SMALL_STATE(787)] = 37965, + [SMALL_STATE(788)] = 38044, + [SMALL_STATE(789)] = 38095, + [SMALL_STATE(790)] = 38174, + [SMALL_STATE(791)] = 38253, + [SMALL_STATE(792)] = 38300, + [SMALL_STATE(793)] = 38351, + [SMALL_STATE(794)] = 38402, + [SMALL_STATE(795)] = 38453, + [SMALL_STATE(796)] = 38500, + [SMALL_STATE(797)] = 38547, + [SMALL_STATE(798)] = 38594, + [SMALL_STATE(799)] = 38673, + [SMALL_STATE(800)] = 38720, + [SMALL_STATE(801)] = 38767, + [SMALL_STATE(802)] = 38814, + [SMALL_STATE(803)] = 38893, + [SMALL_STATE(804)] = 38944, + [SMALL_STATE(805)] = 39023, + [SMALL_STATE(806)] = 39070, + [SMALL_STATE(807)] = 39117, + [SMALL_STATE(808)] = 39164, + [SMALL_STATE(809)] = 39211, + [SMALL_STATE(810)] = 39258, + [SMALL_STATE(811)] = 39305, + [SMALL_STATE(812)] = 39356, + [SMALL_STATE(813)] = 39403, + [SMALL_STATE(814)] = 39450, + [SMALL_STATE(815)] = 39495, + [SMALL_STATE(816)] = 39542, + [SMALL_STATE(817)] = 39589, + [SMALL_STATE(818)] = 39668, + [SMALL_STATE(819)] = 39719, + [SMALL_STATE(820)] = 39798, + [SMALL_STATE(821)] = 39877, + [SMALL_STATE(822)] = 39956, + [SMALL_STATE(823)] = 40035, + [SMALL_STATE(824)] = 40086, + [SMALL_STATE(825)] = 40137, + [SMALL_STATE(826)] = 40188, + [SMALL_STATE(827)] = 40235, + [SMALL_STATE(828)] = 40314, + [SMALL_STATE(829)] = 40393, + [SMALL_STATE(830)] = 40444, + [SMALL_STATE(831)] = 40495, + [SMALL_STATE(832)] = 40574, + [SMALL_STATE(833)] = 40653, + [SMALL_STATE(834)] = 40732, + [SMALL_STATE(835)] = 40783, + [SMALL_STATE(836)] = 40862, + [SMALL_STATE(837)] = 40913, + [SMALL_STATE(838)] = 40992, + [SMALL_STATE(839)] = 41043, + [SMALL_STATE(840)] = 41122, + [SMALL_STATE(841)] = 41173, + [SMALL_STATE(842)] = 41252, + [SMALL_STATE(843)] = 41303, + [SMALL_STATE(844)] = 41382, + [SMALL_STATE(845)] = 41461, + [SMALL_STATE(846)] = 41512, + [SMALL_STATE(847)] = 41591, + [SMALL_STATE(848)] = 41670, + [SMALL_STATE(849)] = 41721, + [SMALL_STATE(850)] = 41800, + [SMALL_STATE(851)] = 41879, + [SMALL_STATE(852)] = 41958, + [SMALL_STATE(853)] = 42037, + [SMALL_STATE(854)] = 42116, + [SMALL_STATE(855)] = 42195, + [SMALL_STATE(856)] = 42244, + [SMALL_STATE(857)] = 42323, + [SMALL_STATE(858)] = 42402, + [SMALL_STATE(859)] = 42481, + [SMALL_STATE(860)] = 42532, + [SMALL_STATE(861)] = 42611, + [SMALL_STATE(862)] = 42690, + [SMALL_STATE(863)] = 42739, + [SMALL_STATE(864)] = 42788, + [SMALL_STATE(865)] = 42867, + [SMALL_STATE(866)] = 42946, + [SMALL_STATE(867)] = 43025, + [SMALL_STATE(868)] = 43070, + [SMALL_STATE(869)] = 43133, + [SMALL_STATE(870)] = 43212, + [SMALL_STATE(871)] = 43291, + [SMALL_STATE(872)] = 43370, + [SMALL_STATE(873)] = 43417, + [SMALL_STATE(874)] = 43496, + [SMALL_STATE(875)] = 43547, + [SMALL_STATE(876)] = 43626, + [SMALL_STATE(877)] = 43705, + [SMALL_STATE(878)] = 43756, + [SMALL_STATE(879)] = 43835, + [SMALL_STATE(880)] = 43914, + [SMALL_STATE(881)] = 43993, + [SMALL_STATE(882)] = 44072, + [SMALL_STATE(883)] = 44151, + [SMALL_STATE(884)] = 44230, + [SMALL_STATE(885)] = 44309, + [SMALL_STATE(886)] = 44356, + [SMALL_STATE(887)] = 44435, + [SMALL_STATE(888)] = 44514, + [SMALL_STATE(889)] = 44593, + [SMALL_STATE(890)] = 44672, + [SMALL_STATE(891)] = 44723, + [SMALL_STATE(892)] = 44802, + [SMALL_STATE(893)] = 44881, + [SMALL_STATE(894)] = 44960, + [SMALL_STATE(895)] = 45011, + [SMALL_STATE(896)] = 45062, + [SMALL_STATE(897)] = 45109, + [SMALL_STATE(898)] = 45188, + [SMALL_STATE(899)] = 45267, + [SMALL_STATE(900)] = 45346, + [SMALL_STATE(901)] = 45397, + [SMALL_STATE(902)] = 45448, + [SMALL_STATE(903)] = 45499, + [SMALL_STATE(904)] = 45578, + [SMALL_STATE(905)] = 45625, + [SMALL_STATE(906)] = 45704, + [SMALL_STATE(907)] = 45783, + [SMALL_STATE(908)] = 45828, + [SMALL_STATE(909)] = 45873, + [SMALL_STATE(910)] = 45918, + [SMALL_STATE(911)] = 45997, + [SMALL_STATE(912)] = 46076, + [SMALL_STATE(913)] = 46155, + [SMALL_STATE(914)] = 46206, + [SMALL_STATE(915)] = 46285, + [SMALL_STATE(916)] = 46364, + [SMALL_STATE(917)] = 46443, + [SMALL_STATE(918)] = 46522, + [SMALL_STATE(919)] = 46601, + [SMALL_STATE(920)] = 46652, + [SMALL_STATE(921)] = 46731, + [SMALL_STATE(922)] = 46810, + [SMALL_STATE(923)] = 46889, + [SMALL_STATE(924)] = 46968, + [SMALL_STATE(925)] = 47047, + [SMALL_STATE(926)] = 47126, + [SMALL_STATE(927)] = 47205, + [SMALL_STATE(928)] = 47251, + [SMALL_STATE(929)] = 47327, + [SMALL_STATE(930)] = 47403, + [SMALL_STATE(931)] = 47479, + [SMALL_STATE(932)] = 47555, + [SMALL_STATE(933)] = 47631, + [SMALL_STATE(934)] = 47707, + [SMALL_STATE(935)] = 47757, + [SMALL_STATE(936)] = 47803, + [SMALL_STATE(937)] = 47849, + [SMALL_STATE(938)] = 47895, + [SMALL_STATE(939)] = 47971, + [SMALL_STATE(940)] = 48017, + [SMALL_STATE(941)] = 48093, + [SMALL_STATE(942)] = 48139, + [SMALL_STATE(943)] = 48185, + [SMALL_STATE(944)] = 48231, + [SMALL_STATE(945)] = 48277, + [SMALL_STATE(946)] = 48353, + [SMALL_STATE(947)] = 48399, + [SMALL_STATE(948)] = 48445, + [SMALL_STATE(949)] = 48521, + [SMALL_STATE(950)] = 48567, + [SMALL_STATE(951)] = 48613, + [SMALL_STATE(952)] = 48659, + [SMALL_STATE(953)] = 48705, + [SMALL_STATE(954)] = 48751, + [SMALL_STATE(955)] = 48827, + [SMALL_STATE(956)] = 48903, + [SMALL_STATE(957)] = 48949, + [SMALL_STATE(958)] = 49025, + [SMALL_STATE(959)] = 49101, + [SMALL_STATE(960)] = 49177, + [SMALL_STATE(961)] = 49227, + [SMALL_STATE(962)] = 49303, + [SMALL_STATE(963)] = 49349, + [SMALL_STATE(964)] = 49399, + [SMALL_STATE(965)] = 49475, + [SMALL_STATE(966)] = 49551, + [SMALL_STATE(967)] = 49627, + [SMALL_STATE(968)] = 49703, + [SMALL_STATE(969)] = 49779, + [SMALL_STATE(970)] = 49825, + [SMALL_STATE(971)] = 49875, + [SMALL_STATE(972)] = 49951, + [SMALL_STATE(973)] = 50027, + [SMALL_STATE(974)] = 50103, + [SMALL_STATE(975)] = 50179, + [SMALL_STATE(976)] = 50225, + [SMALL_STATE(977)] = 50301, + [SMALL_STATE(978)] = 50377, + [SMALL_STATE(979)] = 50423, + [SMALL_STATE(980)] = 50473, + [SMALL_STATE(981)] = 50549, + [SMALL_STATE(982)] = 50595, + [SMALL_STATE(983)] = 50641, + [SMALL_STATE(984)] = 50687, + [SMALL_STATE(985)] = 50733, + [SMALL_STATE(986)] = 50779, + [SMALL_STATE(987)] = 50825, + [SMALL_STATE(988)] = 50875, + [SMALL_STATE(989)] = 50925, + [SMALL_STATE(990)] = 50971, + [SMALL_STATE(991)] = 51017, + [SMALL_STATE(992)] = 51063, + [SMALL_STATE(993)] = 51109, + [SMALL_STATE(994)] = 51185, + [SMALL_STATE(995)] = 51261, + [SMALL_STATE(996)] = 51343, + [SMALL_STATE(997)] = 51393, + [SMALL_STATE(998)] = 51443, + [SMALL_STATE(999)] = 51493, + [SMALL_STATE(1000)] = 51539, + [SMALL_STATE(1001)] = 51585, + [SMALL_STATE(1002)] = 51631, + [SMALL_STATE(1003)] = 51677, + [SMALL_STATE(1004)] = 51753, + [SMALL_STATE(1005)] = 51813, + [SMALL_STATE(1006)] = 51889, + [SMALL_STATE(1007)] = 51965, + [SMALL_STATE(1008)] = 52041, + [SMALL_STATE(1009)] = 52117, + [SMALL_STATE(1010)] = 52193, + [SMALL_STATE(1011)] = 52269, + [SMALL_STATE(1012)] = 52345, + [SMALL_STATE(1013)] = 52391, + [SMALL_STATE(1014)] = 52437, + [SMALL_STATE(1015)] = 52483, + [SMALL_STATE(1016)] = 52529, + [SMALL_STATE(1017)] = 52605, + [SMALL_STATE(1018)] = 52681, + [SMALL_STATE(1019)] = 52731, + [SMALL_STATE(1020)] = 52807, + [SMALL_STATE(1021)] = 52857, + [SMALL_STATE(1022)] = 52903, + [SMALL_STATE(1023)] = 52953, + [SMALL_STATE(1024)] = 53003, + [SMALL_STATE(1025)] = 53079, + [SMALL_STATE(1026)] = 53155, + [SMALL_STATE(1027)] = 53201, + [SMALL_STATE(1028)] = 53251, + [SMALL_STATE(1029)] = 53327, + [SMALL_STATE(1030)] = 53373, + [SMALL_STATE(1031)] = 53449, + [SMALL_STATE(1032)] = 53495, + [SMALL_STATE(1033)] = 53545, + [SMALL_STATE(1034)] = 53597, + [SMALL_STATE(1035)] = 53649, + [SMALL_STATE(1036)] = 53725, + [SMALL_STATE(1037)] = 53801, + [SMALL_STATE(1038)] = 53877, + [SMALL_STATE(1039)] = 53953, + [SMALL_STATE(1040)] = 54029, + [SMALL_STATE(1041)] = 54105, + [SMALL_STATE(1042)] = 54181, + [SMALL_STATE(1043)] = 54257, + [SMALL_STATE(1044)] = 54333, + [SMALL_STATE(1045)] = 54409, + [SMALL_STATE(1046)] = 54485, + [SMALL_STATE(1047)] = 54561, + [SMALL_STATE(1048)] = 54637, + [SMALL_STATE(1049)] = 54713, + [SMALL_STATE(1050)] = 54789, + [SMALL_STATE(1051)] = 54865, + [SMALL_STATE(1052)] = 54941, + [SMALL_STATE(1053)] = 55017, + [SMALL_STATE(1054)] = 55093, + [SMALL_STATE(1055)] = 55169, + [SMALL_STATE(1056)] = 55245, + [SMALL_STATE(1057)] = 55321, + [SMALL_STATE(1058)] = 55371, + [SMALL_STATE(1059)] = 55447, + [SMALL_STATE(1060)] = 55497, + [SMALL_STATE(1061)] = 55573, + [SMALL_STATE(1062)] = 55619, + [SMALL_STATE(1063)] = 55665, + [SMALL_STATE(1064)] = 55741, + [SMALL_STATE(1065)] = 55795, + [SMALL_STATE(1066)] = 55871, + [SMALL_STATE(1067)] = 55947, + [SMALL_STATE(1068)] = 56023, + [SMALL_STATE(1069)] = 56099, + [SMALL_STATE(1070)] = 56175, + [SMALL_STATE(1071)] = 56251, + [SMALL_STATE(1072)] = 56327, + [SMALL_STATE(1073)] = 56403, + [SMALL_STATE(1074)] = 56479, + [SMALL_STATE(1075)] = 56555, + [SMALL_STATE(1076)] = 56601, + [SMALL_STATE(1077)] = 56677, + [SMALL_STATE(1078)] = 56727, + [SMALL_STATE(1079)] = 56803, + [SMALL_STATE(1080)] = 56879, + [SMALL_STATE(1081)] = 56929, + [SMALL_STATE(1082)] = 57005, + [SMALL_STATE(1083)] = 57081, + [SMALL_STATE(1084)] = 57127, + [SMALL_STATE(1085)] = 57203, + [SMALL_STATE(1086)] = 57279, + [SMALL_STATE(1087)] = 57355, + [SMALL_STATE(1088)] = 57431, + [SMALL_STATE(1089)] = 57477, + [SMALL_STATE(1090)] = 57539, + [SMALL_STATE(1091)] = 57615, + [SMALL_STATE(1092)] = 57665, + [SMALL_STATE(1093)] = 57711, + [SMALL_STATE(1094)] = 57787, + [SMALL_STATE(1095)] = 57863, + [SMALL_STATE(1096)] = 57939, + [SMALL_STATE(1097)] = 58015, + [SMALL_STATE(1098)] = 58061, + [SMALL_STATE(1099)] = 58111, + [SMALL_STATE(1100)] = 58187, + [SMALL_STATE(1101)] = 58263, + [SMALL_STATE(1102)] = 58309, + [SMALL_STATE(1103)] = 58385, + [SMALL_STATE(1104)] = 58461, + [SMALL_STATE(1105)] = 58507, + [SMALL_STATE(1106)] = 58557, + [SMALL_STATE(1107)] = 58603, + [SMALL_STATE(1108)] = 58649, + [SMALL_STATE(1109)] = 58699, + [SMALL_STATE(1110)] = 58745, + [SMALL_STATE(1111)] = 58791, + [SMALL_STATE(1112)] = 58837, + [SMALL_STATE(1113)] = 58883, + [SMALL_STATE(1114)] = 58959, + [SMALL_STATE(1115)] = 59035, + [SMALL_STATE(1116)] = 59081, + [SMALL_STATE(1117)] = 59131, + [SMALL_STATE(1118)] = 59207, + [SMALL_STATE(1119)] = 59283, + [SMALL_STATE(1120)] = 59359, + [SMALL_STATE(1121)] = 59435, + [SMALL_STATE(1122)] = 59481, + [SMALL_STATE(1123)] = 59527, + [SMALL_STATE(1124)] = 59573, + [SMALL_STATE(1125)] = 59619, + [SMALL_STATE(1126)] = 59665, + [SMALL_STATE(1127)] = 59741, + [SMALL_STATE(1128)] = 59791, + [SMALL_STATE(1129)] = 59837, + [SMALL_STATE(1130)] = 59913, + [SMALL_STATE(1131)] = 59989, + [SMALL_STATE(1132)] = 60035, + [SMALL_STATE(1133)] = 60081, + [SMALL_STATE(1134)] = 60157, + [SMALL_STATE(1135)] = 60203, + [SMALL_STATE(1136)] = 60249, + [SMALL_STATE(1137)] = 60295, + [SMALL_STATE(1138)] = 60371, + [SMALL_STATE(1139)] = 60447, + [SMALL_STATE(1140)] = 60523, + [SMALL_STATE(1141)] = 60569, + [SMALL_STATE(1142)] = 60615, + [SMALL_STATE(1143)] = 60661, + [SMALL_STATE(1144)] = 60737, + [SMALL_STATE(1145)] = 60787, + [SMALL_STATE(1146)] = 60833, + [SMALL_STATE(1147)] = 60879, + [SMALL_STATE(1148)] = 60955, + [SMALL_STATE(1149)] = 61031, + [SMALL_STATE(1150)] = 61077, + [SMALL_STATE(1151)] = 61123, + [SMALL_STATE(1152)] = 61169, + [SMALL_STATE(1153)] = 61215, + [SMALL_STATE(1154)] = 61261, + [SMALL_STATE(1155)] = 61307, + [SMALL_STATE(1156)] = 61353, + [SMALL_STATE(1157)] = 61399, + [SMALL_STATE(1158)] = 61445, + [SMALL_STATE(1159)] = 61491, + [SMALL_STATE(1160)] = 61537, + [SMALL_STATE(1161)] = 61613, + [SMALL_STATE(1162)] = 61659, + [SMALL_STATE(1163)] = 61705, + [SMALL_STATE(1164)] = 61751, + [SMALL_STATE(1165)] = 61797, + [SMALL_STATE(1166)] = 61847, + [SMALL_STATE(1167)] = 61893, + [SMALL_STATE(1168)] = 61969, + [SMALL_STATE(1169)] = 62019, + [SMALL_STATE(1170)] = 62065, + [SMALL_STATE(1171)] = 62115, + [SMALL_STATE(1172)] = 62191, + [SMALL_STATE(1173)] = 62241, + [SMALL_STATE(1174)] = 62291, + [SMALL_STATE(1175)] = 62367, + [SMALL_STATE(1176)] = 62413, + [SMALL_STATE(1177)] = 62459, + [SMALL_STATE(1178)] = 62505, + [SMALL_STATE(1179)] = 62581, + [SMALL_STATE(1180)] = 62657, + [SMALL_STATE(1181)] = 62733, + [SMALL_STATE(1182)] = 62783, + [SMALL_STATE(1183)] = 62859, + [SMALL_STATE(1184)] = 62909, + [SMALL_STATE(1185)] = 62955, + [SMALL_STATE(1186)] = 63005, + [SMALL_STATE(1187)] = 63051, + [SMALL_STATE(1188)] = 63127, + [SMALL_STATE(1189)] = 63203, + [SMALL_STATE(1190)] = 63279, + [SMALL_STATE(1191)] = 63355, + [SMALL_STATE(1192)] = 63401, + [SMALL_STATE(1193)] = 63447, + [SMALL_STATE(1194)] = 63523, + [SMALL_STATE(1195)] = 63599, + [SMALL_STATE(1196)] = 63675, + [SMALL_STATE(1197)] = 63751, + [SMALL_STATE(1198)] = 63801, + [SMALL_STATE(1199)] = 63877, + [SMALL_STATE(1200)] = 63953, + [SMALL_STATE(1201)] = 64029, + [SMALL_STATE(1202)] = 64105, + [SMALL_STATE(1203)] = 64151, + [SMALL_STATE(1204)] = 64213, + [SMALL_STATE(1205)] = 64289, + [SMALL_STATE(1206)] = 64365, + [SMALL_STATE(1207)] = 64441, + [SMALL_STATE(1208)] = 64491, + [SMALL_STATE(1209)] = 64567, + [SMALL_STATE(1210)] = 64617, + [SMALL_STATE(1211)] = 64663, + [SMALL_STATE(1212)] = 64717, + [SMALL_STATE(1213)] = 64763, + [SMALL_STATE(1214)] = 64839, + [SMALL_STATE(1215)] = 64885, + [SMALL_STATE(1216)] = 64961, + [SMALL_STATE(1217)] = 65037, + [SMALL_STATE(1218)] = 65113, + [SMALL_STATE(1219)] = 65159, + [SMALL_STATE(1220)] = 65235, + [SMALL_STATE(1221)] = 65311, + [SMALL_STATE(1222)] = 65387, + [SMALL_STATE(1223)] = 65437, + [SMALL_STATE(1224)] = 65513, + [SMALL_STATE(1225)] = 65559, + [SMALL_STATE(1226)] = 65605, + [SMALL_STATE(1227)] = 65681, + [SMALL_STATE(1228)] = 65757, + [SMALL_STATE(1229)] = 65807, + [SMALL_STATE(1230)] = 65883, + [SMALL_STATE(1231)] = 65959, + [SMALL_STATE(1232)] = 66005, + [SMALL_STATE(1233)] = 66081, + [SMALL_STATE(1234)] = 66157, + [SMALL_STATE(1235)] = 66203, + [SMALL_STATE(1236)] = 66279, + [SMALL_STATE(1237)] = 66355, + [SMALL_STATE(1238)] = 66431, + [SMALL_STATE(1239)] = 66507, + [SMALL_STATE(1240)] = 66583, + [SMALL_STATE(1241)] = 66659, + [SMALL_STATE(1242)] = 66735, + [SMALL_STATE(1243)] = 66811, + [SMALL_STATE(1244)] = 66887, + [SMALL_STATE(1245)] = 66963, + [SMALL_STATE(1246)] = 67039, + [SMALL_STATE(1247)] = 67115, + [SMALL_STATE(1248)] = 67191, + [SMALL_STATE(1249)] = 67267, + [SMALL_STATE(1250)] = 67343, + [SMALL_STATE(1251)] = 67419, + [SMALL_STATE(1252)] = 67465, + [SMALL_STATE(1253)] = 67523, + [SMALL_STATE(1254)] = 67599, + [SMALL_STATE(1255)] = 67675, + [SMALL_STATE(1256)] = 67721, + [SMALL_STATE(1257)] = 67797, + [SMALL_STATE(1258)] = 67873, + [SMALL_STATE(1259)] = 67949, + [SMALL_STATE(1260)] = 67995, + [SMALL_STATE(1261)] = 68071, + [SMALL_STATE(1262)] = 68147, + [SMALL_STATE(1263)] = 68193, + [SMALL_STATE(1264)] = 68239, + [SMALL_STATE(1265)] = 68285, + [SMALL_STATE(1266)] = 68361, + [SMALL_STATE(1267)] = 68437, + [SMALL_STATE(1268)] = 68513, + [SMALL_STATE(1269)] = 68559, + [SMALL_STATE(1270)] = 68635, + [SMALL_STATE(1271)] = 68711, + [SMALL_STATE(1272)] = 68787, + [SMALL_STATE(1273)] = 68833, + [SMALL_STATE(1274)] = 68909, + [SMALL_STATE(1275)] = 68955, + [SMALL_STATE(1276)] = 69031, + [SMALL_STATE(1277)] = 69085, + [SMALL_STATE(1278)] = 69161, + [SMALL_STATE(1279)] = 69221, + [SMALL_STATE(1280)] = 69297, + [SMALL_STATE(1281)] = 69373, + [SMALL_STATE(1282)] = 69449, + [SMALL_STATE(1283)] = 69525, + [SMALL_STATE(1284)] = 69601, + [SMALL_STATE(1285)] = 69677, + [SMALL_STATE(1286)] = 69753, + [SMALL_STATE(1287)] = 69829, + [SMALL_STATE(1288)] = 69905, + [SMALL_STATE(1289)] = 69955, + [SMALL_STATE(1290)] = 70005, + [SMALL_STATE(1291)] = 70081, + [SMALL_STATE(1292)] = 70157, + [SMALL_STATE(1293)] = 70233, + [SMALL_STATE(1294)] = 70309, + [SMALL_STATE(1295)] = 70385, + [SMALL_STATE(1296)] = 70461, + [SMALL_STATE(1297)] = 70537, + [SMALL_STATE(1298)] = 70613, + [SMALL_STATE(1299)] = 70689, + [SMALL_STATE(1300)] = 70765, + [SMALL_STATE(1301)] = 70841, + [SMALL_STATE(1302)] = 70917, + [SMALL_STATE(1303)] = 70967, + [SMALL_STATE(1304)] = 71043, + [SMALL_STATE(1305)] = 71119, + [SMALL_STATE(1306)] = 71195, + [SMALL_STATE(1307)] = 71271, + [SMALL_STATE(1308)] = 71347, + [SMALL_STATE(1309)] = 71397, + [SMALL_STATE(1310)] = 71447, + [SMALL_STATE(1311)] = 71523, + [SMALL_STATE(1312)] = 71599, + [SMALL_STATE(1313)] = 71675, + [SMALL_STATE(1314)] = 71751, + [SMALL_STATE(1315)] = 71827, + [SMALL_STATE(1316)] = 71903, + [SMALL_STATE(1317)] = 71979, + [SMALL_STATE(1318)] = 72055, + [SMALL_STATE(1319)] = 72131, + [SMALL_STATE(1320)] = 72207, + [SMALL_STATE(1321)] = 72283, + [SMALL_STATE(1322)] = 72359, + [SMALL_STATE(1323)] = 72405, + [SMALL_STATE(1324)] = 72481, + [SMALL_STATE(1325)] = 72557, + [SMALL_STATE(1326)] = 72633, + [SMALL_STATE(1327)] = 72709, + [SMALL_STATE(1328)] = 72785, + [SMALL_STATE(1329)] = 72861, + [SMALL_STATE(1330)] = 72937, + [SMALL_STATE(1331)] = 72983, + [SMALL_STATE(1332)] = 73059, + [SMALL_STATE(1333)] = 73135, + [SMALL_STATE(1334)] = 73211, + [SMALL_STATE(1335)] = 73287, + [SMALL_STATE(1336)] = 73363, + [SMALL_STATE(1337)] = 73439, + [SMALL_STATE(1338)] = 73515, + [SMALL_STATE(1339)] = 73591, + [SMALL_STATE(1340)] = 73667, + [SMALL_STATE(1341)] = 73743, + [SMALL_STATE(1342)] = 73819, + [SMALL_STATE(1343)] = 73895, + [SMALL_STATE(1344)] = 73971, + [SMALL_STATE(1345)] = 74017, + [SMALL_STATE(1346)] = 74067, + [SMALL_STATE(1347)] = 74143, + [SMALL_STATE(1348)] = 74219, + [SMALL_STATE(1349)] = 74295, + [SMALL_STATE(1350)] = 74371, + [SMALL_STATE(1351)] = 74447, + [SMALL_STATE(1352)] = 74493, + [SMALL_STATE(1353)] = 74569, + [SMALL_STATE(1354)] = 74645, + [SMALL_STATE(1355)] = 74695, + [SMALL_STATE(1356)] = 74771, + [SMALL_STATE(1357)] = 74847, + [SMALL_STATE(1358)] = 74923, + [SMALL_STATE(1359)] = 74999, + [SMALL_STATE(1360)] = 75075, + [SMALL_STATE(1361)] = 75151, + [SMALL_STATE(1362)] = 75227, + [SMALL_STATE(1363)] = 75303, + [SMALL_STATE(1364)] = 75379, + [SMALL_STATE(1365)] = 75455, + [SMALL_STATE(1366)] = 75531, + [SMALL_STATE(1367)] = 75607, + [SMALL_STATE(1368)] = 75683, + [SMALL_STATE(1369)] = 75759, + [SMALL_STATE(1370)] = 75835, + [SMALL_STATE(1371)] = 75911, + [SMALL_STATE(1372)] = 75957, + [SMALL_STATE(1373)] = 76033, + [SMALL_STATE(1374)] = 76109, + [SMALL_STATE(1375)] = 76185, + [SMALL_STATE(1376)] = 76261, + [SMALL_STATE(1377)] = 76337, + [SMALL_STATE(1378)] = 76413, + [SMALL_STATE(1379)] = 76489, + [SMALL_STATE(1380)] = 76565, + [SMALL_STATE(1381)] = 76641, + [SMALL_STATE(1382)] = 76717, + [SMALL_STATE(1383)] = 76793, + [SMALL_STATE(1384)] = 76843, + [SMALL_STATE(1385)] = 76919, + [SMALL_STATE(1386)] = 76995, + [SMALL_STATE(1387)] = 77045, + [SMALL_STATE(1388)] = 77121, + [SMALL_STATE(1389)] = 77197, + [SMALL_STATE(1390)] = 77273, + [SMALL_STATE(1391)] = 77349, + [SMALL_STATE(1392)] = 77425, + [SMALL_STATE(1393)] = 77501, + [SMALL_STATE(1394)] = 77577, + [SMALL_STATE(1395)] = 77653, + [SMALL_STATE(1396)] = 77729, + [SMALL_STATE(1397)] = 77805, + [SMALL_STATE(1398)] = 77881, + [SMALL_STATE(1399)] = 77957, + [SMALL_STATE(1400)] = 78033, + [SMALL_STATE(1401)] = 78077, + [SMALL_STATE(1402)] = 78153, + [SMALL_STATE(1403)] = 78229, + [SMALL_STATE(1404)] = 78279, + [SMALL_STATE(1405)] = 78333, + [SMALL_STATE(1406)] = 78409, + [SMALL_STATE(1407)] = 78459, + [SMALL_STATE(1408)] = 78535, + [SMALL_STATE(1409)] = 78611, + [SMALL_STATE(1410)] = 78687, + [SMALL_STATE(1411)] = 78741, + [SMALL_STATE(1412)] = 78791, + [SMALL_STATE(1413)] = 78867, + [SMALL_STATE(1414)] = 78943, + [SMALL_STATE(1415)] = 79019, + [SMALL_STATE(1416)] = 79069, + [SMALL_STATE(1417)] = 79119, + [SMALL_STATE(1418)] = 79195, + [SMALL_STATE(1419)] = 79249, + [SMALL_STATE(1420)] = 79299, + [SMALL_STATE(1421)] = 79375, + [SMALL_STATE(1422)] = 79425, + [SMALL_STATE(1423)] = 79501, + [SMALL_STATE(1424)] = 79551, + [SMALL_STATE(1425)] = 79627, + [SMALL_STATE(1426)] = 79703, + [SMALL_STATE(1427)] = 79753, + [SMALL_STATE(1428)] = 79829, + [SMALL_STATE(1429)] = 79905, + [SMALL_STATE(1430)] = 79955, + [SMALL_STATE(1431)] = 80005, + [SMALL_STATE(1432)] = 80081, + [SMALL_STATE(1433)] = 80131, + [SMALL_STATE(1434)] = 80207, + [SMALL_STATE(1435)] = 80283, + [SMALL_STATE(1436)] = 80365, + [SMALL_STATE(1437)] = 80441, + [SMALL_STATE(1438)] = 80517, + [SMALL_STATE(1439)] = 80593, + [SMALL_STATE(1440)] = 80643, + [SMALL_STATE(1441)] = 80719, + [SMALL_STATE(1442)] = 80795, + [SMALL_STATE(1443)] = 80871, + [SMALL_STATE(1444)] = 80947, + [SMALL_STATE(1445)] = 81023, + [SMALL_STATE(1446)] = 81099, + [SMALL_STATE(1447)] = 81175, + [SMALL_STATE(1448)] = 81225, + [SMALL_STATE(1449)] = 81301, + [SMALL_STATE(1450)] = 81377, + [SMALL_STATE(1451)] = 81427, + [SMALL_STATE(1452)] = 81503, + [SMALL_STATE(1453)] = 81579, + [SMALL_STATE(1454)] = 81655, + [SMALL_STATE(1455)] = 81731, + [SMALL_STATE(1456)] = 81807, + [SMALL_STATE(1457)] = 81883, + [SMALL_STATE(1458)] = 81959, + [SMALL_STATE(1459)] = 82035, + [SMALL_STATE(1460)] = 82111, + [SMALL_STATE(1461)] = 82157, + [SMALL_STATE(1462)] = 82203, + [SMALL_STATE(1463)] = 82249, + [SMALL_STATE(1464)] = 82325, + [SMALL_STATE(1465)] = 82375, + [SMALL_STATE(1466)] = 82451, + [SMALL_STATE(1467)] = 82527, + [SMALL_STATE(1468)] = 82577, + [SMALL_STATE(1469)] = 82653, + [SMALL_STATE(1470)] = 82729, + [SMALL_STATE(1471)] = 82779, + [SMALL_STATE(1472)] = 82855, + [SMALL_STATE(1473)] = 82905, + [SMALL_STATE(1474)] = 82981, + [SMALL_STATE(1475)] = 83035, + [SMALL_STATE(1476)] = 83089, + [SMALL_STATE(1477)] = 83165, + [SMALL_STATE(1478)] = 83215, + [SMALL_STATE(1479)] = 83291, + [SMALL_STATE(1480)] = 83367, + [SMALL_STATE(1481)] = 83443, + [SMALL_STATE(1482)] = 83519, + [SMALL_STATE(1483)] = 83595, + [SMALL_STATE(1484)] = 83671, + [SMALL_STATE(1485)] = 83747, + [SMALL_STATE(1486)] = 83823, + [SMALL_STATE(1487)] = 83899, + [SMALL_STATE(1488)] = 83975, + [SMALL_STATE(1489)] = 84051, + [SMALL_STATE(1490)] = 84127, + [SMALL_STATE(1491)] = 84203, + [SMALL_STATE(1492)] = 84279, + [SMALL_STATE(1493)] = 84355, + [SMALL_STATE(1494)] = 84431, + [SMALL_STATE(1495)] = 84507, + [SMALL_STATE(1496)] = 84583, + [SMALL_STATE(1497)] = 84659, + [SMALL_STATE(1498)] = 84735, + [SMALL_STATE(1499)] = 84811, + [SMALL_STATE(1500)] = 84887, + [SMALL_STATE(1501)] = 84963, + [SMALL_STATE(1502)] = 85013, + [SMALL_STATE(1503)] = 85089, + [SMALL_STATE(1504)] = 85165, + [SMALL_STATE(1505)] = 85241, + [SMALL_STATE(1506)] = 85317, + [SMALL_STATE(1507)] = 85393, + [SMALL_STATE(1508)] = 85469, + [SMALL_STATE(1509)] = 85545, + [SMALL_STATE(1510)] = 85621, + [SMALL_STATE(1511)] = 85697, + [SMALL_STATE(1512)] = 85773, + [SMALL_STATE(1513)] = 85849, + [SMALL_STATE(1514)] = 85925, + [SMALL_STATE(1515)] = 86001, + [SMALL_STATE(1516)] = 86077, + [SMALL_STATE(1517)] = 86153, + [SMALL_STATE(1518)] = 86229, + [SMALL_STATE(1519)] = 86305, + [SMALL_STATE(1520)] = 86381, + [SMALL_STATE(1521)] = 86457, + [SMALL_STATE(1522)] = 86533, + [SMALL_STATE(1523)] = 86609, + [SMALL_STATE(1524)] = 86685, + [SMALL_STATE(1525)] = 86761, + [SMALL_STATE(1526)] = 86843, + [SMALL_STATE(1527)] = 86919, + [SMALL_STATE(1528)] = 86995, + [SMALL_STATE(1529)] = 87049, + [SMALL_STATE(1530)] = 87125, + [SMALL_STATE(1531)] = 87201, + [SMALL_STATE(1532)] = 87277, + [SMALL_STATE(1533)] = 87353, + [SMALL_STATE(1534)] = 87429, + [SMALL_STATE(1535)] = 87505, + [SMALL_STATE(1536)] = 87581, + [SMALL_STATE(1537)] = 87657, + [SMALL_STATE(1538)] = 87733, + [SMALL_STATE(1539)] = 87809, + [SMALL_STATE(1540)] = 87885, + [SMALL_STATE(1541)] = 87961, + [SMALL_STATE(1542)] = 88037, + [SMALL_STATE(1543)] = 88113, + [SMALL_STATE(1544)] = 88189, + [SMALL_STATE(1545)] = 88249, + [SMALL_STATE(1546)] = 88325, + [SMALL_STATE(1547)] = 88401, + [SMALL_STATE(1548)] = 88477, + [SMALL_STATE(1549)] = 88553, + [SMALL_STATE(1550)] = 88629, + [SMALL_STATE(1551)] = 88679, + [SMALL_STATE(1552)] = 88729, + [SMALL_STATE(1553)] = 88805, + [SMALL_STATE(1554)] = 88881, + [SMALL_STATE(1555)] = 88957, + [SMALL_STATE(1556)] = 89033, + [SMALL_STATE(1557)] = 89109, + [SMALL_STATE(1558)] = 89185, + [SMALL_STATE(1559)] = 89261, + [SMALL_STATE(1560)] = 89337, + [SMALL_STATE(1561)] = 89413, + [SMALL_STATE(1562)] = 89489, + [SMALL_STATE(1563)] = 89565, + [SMALL_STATE(1564)] = 89641, + [SMALL_STATE(1565)] = 89717, + [SMALL_STATE(1566)] = 89793, + [SMALL_STATE(1567)] = 89869, + [SMALL_STATE(1568)] = 89945, + [SMALL_STATE(1569)] = 90021, + [SMALL_STATE(1570)] = 90097, + [SMALL_STATE(1571)] = 90173, + [SMALL_STATE(1572)] = 90249, + [SMALL_STATE(1573)] = 90325, + [SMALL_STATE(1574)] = 90401, + [SMALL_STATE(1575)] = 90477, + [SMALL_STATE(1576)] = 90553, + [SMALL_STATE(1577)] = 90629, + [SMALL_STATE(1578)] = 90705, + [SMALL_STATE(1579)] = 90781, + [SMALL_STATE(1580)] = 90857, + [SMALL_STATE(1581)] = 90933, + [SMALL_STATE(1582)] = 91009, + [SMALL_STATE(1583)] = 91085, + [SMALL_STATE(1584)] = 91161, + [SMALL_STATE(1585)] = 91237, + [SMALL_STATE(1586)] = 91313, + [SMALL_STATE(1587)] = 91389, + [SMALL_STATE(1588)] = 91465, + [SMALL_STATE(1589)] = 91541, + [SMALL_STATE(1590)] = 91617, + [SMALL_STATE(1591)] = 91693, + [SMALL_STATE(1592)] = 91769, + [SMALL_STATE(1593)] = 91845, + [SMALL_STATE(1594)] = 91921, + [SMALL_STATE(1595)] = 91997, + [SMALL_STATE(1596)] = 92073, + [SMALL_STATE(1597)] = 92149, + [SMALL_STATE(1598)] = 92225, + [SMALL_STATE(1599)] = 92301, + [SMALL_STATE(1600)] = 92377, + [SMALL_STATE(1601)] = 92453, + [SMALL_STATE(1602)] = 92529, + [SMALL_STATE(1603)] = 92605, + [SMALL_STATE(1604)] = 92681, + [SMALL_STATE(1605)] = 92757, + [SMALL_STATE(1606)] = 92833, + [SMALL_STATE(1607)] = 92883, + [SMALL_STATE(1608)] = 92959, + [SMALL_STATE(1609)] = 93035, + [SMALL_STATE(1610)] = 93111, + [SMALL_STATE(1611)] = 93187, + [SMALL_STATE(1612)] = 93263, + [SMALL_STATE(1613)] = 93339, + [SMALL_STATE(1614)] = 93385, + [SMALL_STATE(1615)] = 93461, + [SMALL_STATE(1616)] = 93537, + [SMALL_STATE(1617)] = 93613, + [SMALL_STATE(1618)] = 93689, + [SMALL_STATE(1619)] = 93765, + [SMALL_STATE(1620)] = 93841, + [SMALL_STATE(1621)] = 93917, + [SMALL_STATE(1622)] = 93993, + [SMALL_STATE(1623)] = 94069, + [SMALL_STATE(1624)] = 94145, + [SMALL_STATE(1625)] = 94190, + [SMALL_STATE(1626)] = 94235, + [SMALL_STATE(1627)] = 94316, + [SMALL_STATE(1628)] = 94365, + [SMALL_STATE(1629)] = 94414, + [SMALL_STATE(1630)] = 94459, + [SMALL_STATE(1631)] = 94532, + [SMALL_STATE(1632)] = 94581, + [SMALL_STATE(1633)] = 94626, + [SMALL_STATE(1634)] = 94671, + [SMALL_STATE(1635)] = 94716, + [SMALL_STATE(1636)] = 94761, + [SMALL_STATE(1637)] = 94810, + [SMALL_STATE(1638)] = 94855, + [SMALL_STATE(1639)] = 94900, + [SMALL_STATE(1640)] = 94981, + [SMALL_STATE(1641)] = 95030, + [SMALL_STATE(1642)] = 95079, + [SMALL_STATE(1643)] = 95128, + [SMALL_STATE(1644)] = 95177, + [SMALL_STATE(1645)] = 95222, + [SMALL_STATE(1646)] = 95303, + [SMALL_STATE(1647)] = 95348, + [SMALL_STATE(1648)] = 95393, + [SMALL_STATE(1649)] = 95438, + [SMALL_STATE(1650)] = 95483, + [SMALL_STATE(1651)] = 95528, + [SMALL_STATE(1652)] = 95573, + [SMALL_STATE(1653)] = 95622, + [SMALL_STATE(1654)] = 95671, + [SMALL_STATE(1655)] = 95752, + [SMALL_STATE(1656)] = 95797, + [SMALL_STATE(1657)] = 95842, + [SMALL_STATE(1658)] = 95887, + [SMALL_STATE(1659)] = 95932, + [SMALL_STATE(1660)] = 95977, + [SMALL_STATE(1661)] = 96022, + [SMALL_STATE(1662)] = 96067, + [SMALL_STATE(1663)] = 96112, + [SMALL_STATE(1664)] = 96157, + [SMALL_STATE(1665)] = 96202, + [SMALL_STATE(1666)] = 96247, + [SMALL_STATE(1667)] = 96292, + [SMALL_STATE(1668)] = 96341, + [SMALL_STATE(1669)] = 96390, + [SMALL_STATE(1670)] = 96435, + [SMALL_STATE(1671)] = 96480, + [SMALL_STATE(1672)] = 96525, + [SMALL_STATE(1673)] = 96570, + [SMALL_STATE(1674)] = 96615, + [SMALL_STATE(1675)] = 96660, + [SMALL_STATE(1676)] = 96705, + [SMALL_STATE(1677)] = 96750, + [SMALL_STATE(1678)] = 96795, + [SMALL_STATE(1679)] = 96840, + [SMALL_STATE(1680)] = 96885, + [SMALL_STATE(1681)] = 96930, + [SMALL_STATE(1682)] = 96975, + [SMALL_STATE(1683)] = 97020, + [SMALL_STATE(1684)] = 97065, + [SMALL_STATE(1685)] = 97110, + [SMALL_STATE(1686)] = 97155, + [SMALL_STATE(1687)] = 97200, + [SMALL_STATE(1688)] = 97245, + [SMALL_STATE(1689)] = 97290, + [SMALL_STATE(1690)] = 97335, + [SMALL_STATE(1691)] = 97380, + [SMALL_STATE(1692)] = 97425, + [SMALL_STATE(1693)] = 97470, + [SMALL_STATE(1694)] = 97515, + [SMALL_STATE(1695)] = 97560, + [SMALL_STATE(1696)] = 97605, + [SMALL_STATE(1697)] = 97650, + [SMALL_STATE(1698)] = 97695, + [SMALL_STATE(1699)] = 97740, + [SMALL_STATE(1700)] = 97785, + [SMALL_STATE(1701)] = 97830, + [SMALL_STATE(1702)] = 97875, + [SMALL_STATE(1703)] = 97920, + [SMALL_STATE(1704)] = 97965, + [SMALL_STATE(1705)] = 98010, + [SMALL_STATE(1706)] = 98055, + [SMALL_STATE(1707)] = 98100, + [SMALL_STATE(1708)] = 98149, + [SMALL_STATE(1709)] = 98194, + [SMALL_STATE(1710)] = 98239, + [SMALL_STATE(1711)] = 98288, + [SMALL_STATE(1712)] = 98333, + [SMALL_STATE(1713)] = 98378, + [SMALL_STATE(1714)] = 98423, + [SMALL_STATE(1715)] = 98468, + [SMALL_STATE(1716)] = 98513, + [SMALL_STATE(1717)] = 98558, + [SMALL_STATE(1718)] = 98603, + [SMALL_STATE(1719)] = 98648, + [SMALL_STATE(1720)] = 98693, + [SMALL_STATE(1721)] = 98738, + [SMALL_STATE(1722)] = 98783, + [SMALL_STATE(1723)] = 98828, + [SMALL_STATE(1724)] = 98873, + [SMALL_STATE(1725)] = 98918, + [SMALL_STATE(1726)] = 98963, + [SMALL_STATE(1727)] = 99008, + [SMALL_STATE(1728)] = 99053, + [SMALL_STATE(1729)] = 99098, + [SMALL_STATE(1730)] = 99143, + [SMALL_STATE(1731)] = 99188, + [SMALL_STATE(1732)] = 99233, + [SMALL_STATE(1733)] = 99278, + [SMALL_STATE(1734)] = 99327, + [SMALL_STATE(1735)] = 99372, + [SMALL_STATE(1736)] = 99417, + [SMALL_STATE(1737)] = 99466, + [SMALL_STATE(1738)] = 99511, + [SMALL_STATE(1739)] = 99556, + [SMALL_STATE(1740)] = 99601, + [SMALL_STATE(1741)] = 99646, + [SMALL_STATE(1742)] = 99691, + [SMALL_STATE(1743)] = 99736, + [SMALL_STATE(1744)] = 99785, + [SMALL_STATE(1745)] = 99830, + [SMALL_STATE(1746)] = 99875, + [SMALL_STATE(1747)] = 99920, + [SMALL_STATE(1748)] = 99969, + [SMALL_STATE(1749)] = 100014, + [SMALL_STATE(1750)] = 100059, + [SMALL_STATE(1751)] = 100104, + [SMALL_STATE(1752)] = 100149, + [SMALL_STATE(1753)] = 100194, + [SMALL_STATE(1754)] = 100239, + [SMALL_STATE(1755)] = 100288, + [SMALL_STATE(1756)] = 100337, + [SMALL_STATE(1757)] = 100382, + [SMALL_STATE(1758)] = 100431, + [SMALL_STATE(1759)] = 100476, + [SMALL_STATE(1760)] = 100521, + [SMALL_STATE(1761)] = 100570, + [SMALL_STATE(1762)] = 100615, + [SMALL_STATE(1763)] = 100660, + [SMALL_STATE(1764)] = 100705, + [SMALL_STATE(1765)] = 100750, + [SMALL_STATE(1766)] = 100795, + [SMALL_STATE(1767)] = 100840, + [SMALL_STATE(1768)] = 100889, + [SMALL_STATE(1769)] = 100934, + [SMALL_STATE(1770)] = 100979, + [SMALL_STATE(1771)] = 101024, + [SMALL_STATE(1772)] = 101069, + [SMALL_STATE(1773)] = 101118, + [SMALL_STATE(1774)] = 101167, + [SMALL_STATE(1775)] = 101212, + [SMALL_STATE(1776)] = 101257, + [SMALL_STATE(1777)] = 101302, + [SMALL_STATE(1778)] = 101347, + [SMALL_STATE(1779)] = 101392, + [SMALL_STATE(1780)] = 101437, + [SMALL_STATE(1781)] = 101482, + [SMALL_STATE(1782)] = 101527, + [SMALL_STATE(1783)] = 101572, + [SMALL_STATE(1784)] = 101617, + [SMALL_STATE(1785)] = 101662, + [SMALL_STATE(1786)] = 101707, + [SMALL_STATE(1787)] = 101752, + [SMALL_STATE(1788)] = 101797, + [SMALL_STATE(1789)] = 101878, + [SMALL_STATE(1790)] = 101923, + [SMALL_STATE(1791)] = 101968, + [SMALL_STATE(1792)] = 102013, + [SMALL_STATE(1793)] = 102058, + [SMALL_STATE(1794)] = 102103, + [SMALL_STATE(1795)] = 102148, + [SMALL_STATE(1796)] = 102193, + [SMALL_STATE(1797)] = 102238, + [SMALL_STATE(1798)] = 102283, + [SMALL_STATE(1799)] = 102328, + [SMALL_STATE(1800)] = 102373, + [SMALL_STATE(1801)] = 102418, + [SMALL_STATE(1802)] = 102463, + [SMALL_STATE(1803)] = 102508, + [SMALL_STATE(1804)] = 102553, + [SMALL_STATE(1805)] = 102598, + [SMALL_STATE(1806)] = 102643, + [SMALL_STATE(1807)] = 102688, + [SMALL_STATE(1808)] = 102733, + [SMALL_STATE(1809)] = 102778, + [SMALL_STATE(1810)] = 102823, + [SMALL_STATE(1811)] = 102868, + [SMALL_STATE(1812)] = 102913, + [SMALL_STATE(1813)] = 102958, + [SMALL_STATE(1814)] = 103003, + [SMALL_STATE(1815)] = 103048, + [SMALL_STATE(1816)] = 103093, + [SMALL_STATE(1817)] = 103138, + [SMALL_STATE(1818)] = 103183, + [SMALL_STATE(1819)] = 103228, + [SMALL_STATE(1820)] = 103273, + [SMALL_STATE(1821)] = 103318, + [SMALL_STATE(1822)] = 103363, + [SMALL_STATE(1823)] = 103408, + [SMALL_STATE(1824)] = 103453, + [SMALL_STATE(1825)] = 103502, + [SMALL_STATE(1826)] = 103547, + [SMALL_STATE(1827)] = 103592, + [SMALL_STATE(1828)] = 103641, + [SMALL_STATE(1829)] = 103686, + [SMALL_STATE(1830)] = 103731, + [SMALL_STATE(1831)] = 103776, + [SMALL_STATE(1832)] = 103821, + [SMALL_STATE(1833)] = 103866, + [SMALL_STATE(1834)] = 103911, + [SMALL_STATE(1835)] = 103956, + [SMALL_STATE(1836)] = 104001, + [SMALL_STATE(1837)] = 104046, + [SMALL_STATE(1838)] = 104091, + [SMALL_STATE(1839)] = 104136, + [SMALL_STATE(1840)] = 104181, + [SMALL_STATE(1841)] = 104226, + [SMALL_STATE(1842)] = 104271, + [SMALL_STATE(1843)] = 104316, + [SMALL_STATE(1844)] = 104361, + [SMALL_STATE(1845)] = 104406, + [SMALL_STATE(1846)] = 104455, + [SMALL_STATE(1847)] = 104500, + [SMALL_STATE(1848)] = 104545, + [SMALL_STATE(1849)] = 104590, + [SMALL_STATE(1850)] = 104635, + [SMALL_STATE(1851)] = 104680, + [SMALL_STATE(1852)] = 104725, + [SMALL_STATE(1853)] = 104770, + [SMALL_STATE(1854)] = 104815, + [SMALL_STATE(1855)] = 104860, + [SMALL_STATE(1856)] = 104905, + [SMALL_STATE(1857)] = 104950, + [SMALL_STATE(1858)] = 104995, + [SMALL_STATE(1859)] = 105040, + [SMALL_STATE(1860)] = 105089, + [SMALL_STATE(1861)] = 105134, + [SMALL_STATE(1862)] = 105179, + [SMALL_STATE(1863)] = 105228, + [SMALL_STATE(1864)] = 105273, + [SMALL_STATE(1865)] = 105318, + [SMALL_STATE(1866)] = 105363, + [SMALL_STATE(1867)] = 105408, + [SMALL_STATE(1868)] = 105453, + [SMALL_STATE(1869)] = 105498, + [SMALL_STATE(1870)] = 105543, + [SMALL_STATE(1871)] = 105588, + [SMALL_STATE(1872)] = 105633, + [SMALL_STATE(1873)] = 105678, + [SMALL_STATE(1874)] = 105723, + [SMALL_STATE(1875)] = 105768, + [SMALL_STATE(1876)] = 105813, + [SMALL_STATE(1877)] = 105858, + [SMALL_STATE(1878)] = 105903, + [SMALL_STATE(1879)] = 105948, + [SMALL_STATE(1880)] = 105993, + [SMALL_STATE(1881)] = 106038, + [SMALL_STATE(1882)] = 106083, + [SMALL_STATE(1883)] = 106128, + [SMALL_STATE(1884)] = 106173, + [SMALL_STATE(1885)] = 106218, + [SMALL_STATE(1886)] = 106263, + [SMALL_STATE(1887)] = 106308, + [SMALL_STATE(1888)] = 106353, + [SMALL_STATE(1889)] = 106402, + [SMALL_STATE(1890)] = 106447, + [SMALL_STATE(1891)] = 106492, + [SMALL_STATE(1892)] = 106537, + [SMALL_STATE(1893)] = 106582, + [SMALL_STATE(1894)] = 106627, + [SMALL_STATE(1895)] = 106672, + [SMALL_STATE(1896)] = 106721, + [SMALL_STATE(1897)] = 106766, + [SMALL_STATE(1898)] = 106811, + [SMALL_STATE(1899)] = 106860, + [SMALL_STATE(1900)] = 106909, + [SMALL_STATE(1901)] = 106958, + [SMALL_STATE(1902)] = 107003, + [SMALL_STATE(1903)] = 107052, + [SMALL_STATE(1904)] = 107097, + [SMALL_STATE(1905)] = 107146, + [SMALL_STATE(1906)] = 107191, + [SMALL_STATE(1907)] = 107236, + [SMALL_STATE(1908)] = 107285, + [SMALL_STATE(1909)] = 107334, + [SMALL_STATE(1910)] = 107383, + [SMALL_STATE(1911)] = 107432, + [SMALL_STATE(1912)] = 107481, + [SMALL_STATE(1913)] = 107530, + [SMALL_STATE(1914)] = 107578, + [SMALL_STATE(1915)] = 107622, + [SMALL_STATE(1916)] = 107666, + [SMALL_STATE(1917)] = 107714, + [SMALL_STATE(1918)] = 107758, + [SMALL_STATE(1919)] = 107802, + [SMALL_STATE(1920)] = 107854, + [SMALL_STATE(1921)] = 107898, + [SMALL_STATE(1922)] = 107942, + [SMALL_STATE(1923)] = 107986, + [SMALL_STATE(1924)] = 108030, + [SMALL_STATE(1925)] = 108078, + [SMALL_STATE(1926)] = 108130, + [SMALL_STATE(1927)] = 108174, + [SMALL_STATE(1928)] = 108218, + [SMALL_STATE(1929)] = 108262, + [SMALL_STATE(1930)] = 108314, + [SMALL_STATE(1931)] = 108358, + [SMALL_STATE(1932)] = 108402, + [SMALL_STATE(1933)] = 108454, + [SMALL_STATE(1934)] = 108506, + [SMALL_STATE(1935)] = 108558, + [SMALL_STATE(1936)] = 108610, + [SMALL_STATE(1937)] = 108662, + [SMALL_STATE(1938)] = 108714, + [SMALL_STATE(1939)] = 108766, + [SMALL_STATE(1940)] = 108818, + [SMALL_STATE(1941)] = 108870, + [SMALL_STATE(1942)] = 108922, + [SMALL_STATE(1943)] = 108974, + [SMALL_STATE(1944)] = 109026, + [SMALL_STATE(1945)] = 109070, + [SMALL_STATE(1946)] = 109114, + [SMALL_STATE(1947)] = 109166, + [SMALL_STATE(1948)] = 109218, + [SMALL_STATE(1949)] = 109266, + [SMALL_STATE(1950)] = 109318, + [SMALL_STATE(1951)] = 109370, + [SMALL_STATE(1952)] = 109414, + [SMALL_STATE(1953)] = 109462, + [SMALL_STATE(1954)] = 109510, + [SMALL_STATE(1955)] = 109558, + [SMALL_STATE(1956)] = 109602, + [SMALL_STATE(1957)] = 109654, + [SMALL_STATE(1958)] = 109698, + [SMALL_STATE(1959)] = 109750, + [SMALL_STATE(1960)] = 109802, + [SMALL_STATE(1961)] = 109846, + [SMALL_STATE(1962)] = 109890, + [SMALL_STATE(1963)] = 109934, + [SMALL_STATE(1964)] = 109986, + [SMALL_STATE(1965)] = 110038, + [SMALL_STATE(1966)] = 110086, + [SMALL_STATE(1967)] = 110138, + [SMALL_STATE(1968)] = 110190, + [SMALL_STATE(1969)] = 110242, + [SMALL_STATE(1970)] = 110286, + [SMALL_STATE(1971)] = 110334, + [SMALL_STATE(1972)] = 110378, + [SMALL_STATE(1973)] = 110430, + [SMALL_STATE(1974)] = 110482, + [SMALL_STATE(1975)] = 110534, + [SMALL_STATE(1976)] = 110578, + [SMALL_STATE(1977)] = 110626, + [SMALL_STATE(1978)] = 110678, + [SMALL_STATE(1979)] = 110730, + [SMALL_STATE(1980)] = 110774, + [SMALL_STATE(1981)] = 110818, + [SMALL_STATE(1982)] = 110862, + [SMALL_STATE(1983)] = 110906, + [SMALL_STATE(1984)] = 110950, + [SMALL_STATE(1985)] = 110998, + [SMALL_STATE(1986)] = 111042, + [SMALL_STATE(1987)] = 111086, + [SMALL_STATE(1988)] = 111130, + [SMALL_STATE(1989)] = 111174, + [SMALL_STATE(1990)] = 111218, + [SMALL_STATE(1991)] = 111262, + [SMALL_STATE(1992)] = 111306, + [SMALL_STATE(1993)] = 111358, + [SMALL_STATE(1994)] = 111402, + [SMALL_STATE(1995)] = 111446, + [SMALL_STATE(1996)] = 111490, + [SMALL_STATE(1997)] = 111534, + [SMALL_STATE(1998)] = 111586, + [SMALL_STATE(1999)] = 111630, + [SMALL_STATE(2000)] = 111674, + [SMALL_STATE(2001)] = 111718, + [SMALL_STATE(2002)] = 111762, + [SMALL_STATE(2003)] = 111806, + [SMALL_STATE(2004)] = 111858, + [SMALL_STATE(2005)] = 111902, + [SMALL_STATE(2006)] = 111946, + [SMALL_STATE(2007)] = 111998, + [SMALL_STATE(2008)] = 112042, + [SMALL_STATE(2009)] = 112086, + [SMALL_STATE(2010)] = 112130, + [SMALL_STATE(2011)] = 112178, + [SMALL_STATE(2012)] = 112230, + [SMALL_STATE(2013)] = 112274, + [SMALL_STATE(2014)] = 112318, + [SMALL_STATE(2015)] = 112362, + [SMALL_STATE(2016)] = 112406, + [SMALL_STATE(2017)] = 112450, + [SMALL_STATE(2018)] = 112494, + [SMALL_STATE(2019)] = 112538, + [SMALL_STATE(2020)] = 112582, + [SMALL_STATE(2021)] = 112626, + [SMALL_STATE(2022)] = 112670, + [SMALL_STATE(2023)] = 112714, + [SMALL_STATE(2024)] = 112758, + [SMALL_STATE(2025)] = 112802, + [SMALL_STATE(2026)] = 112846, + [SMALL_STATE(2027)] = 112894, + [SMALL_STATE(2028)] = 112946, + [SMALL_STATE(2029)] = 112990, + [SMALL_STATE(2030)] = 113038, + [SMALL_STATE(2031)] = 113082, + [SMALL_STATE(2032)] = 113126, + [SMALL_STATE(2033)] = 113178, + [SMALL_STATE(2034)] = 113222, + [SMALL_STATE(2035)] = 113266, + [SMALL_STATE(2036)] = 113310, + [SMALL_STATE(2037)] = 113354, + [SMALL_STATE(2038)] = 113398, + [SMALL_STATE(2039)] = 113442, + [SMALL_STATE(2040)] = 113494, + [SMALL_STATE(2041)] = 113538, + [SMALL_STATE(2042)] = 113582, + [SMALL_STATE(2043)] = 113626, + [SMALL_STATE(2044)] = 113670, + [SMALL_STATE(2045)] = 113714, + [SMALL_STATE(2046)] = 113758, + [SMALL_STATE(2047)] = 113802, + [SMALL_STATE(2048)] = 113846, + [SMALL_STATE(2049)] = 113890, + [SMALL_STATE(2050)] = 113934, + [SMALL_STATE(2051)] = 113978, + [SMALL_STATE(2052)] = 114022, + [SMALL_STATE(2053)] = 114066, + [SMALL_STATE(2054)] = 114118, + [SMALL_STATE(2055)] = 114162, + [SMALL_STATE(2056)] = 114206, + [SMALL_STATE(2057)] = 114250, + [SMALL_STATE(2058)] = 114294, + [SMALL_STATE(2059)] = 114346, + [SMALL_STATE(2060)] = 114390, + [SMALL_STATE(2061)] = 114442, + [SMALL_STATE(2062)] = 114486, + [SMALL_STATE(2063)] = 114534, + [SMALL_STATE(2064)] = 114578, + [SMALL_STATE(2065)] = 114630, + [SMALL_STATE(2066)] = 114674, + [SMALL_STATE(2067)] = 114718, + [SMALL_STATE(2068)] = 114762, + [SMALL_STATE(2069)] = 114806, + [SMALL_STATE(2070)] = 114850, + [SMALL_STATE(2071)] = 114898, + [SMALL_STATE(2072)] = 114950, + [SMALL_STATE(2073)] = 115002, + [SMALL_STATE(2074)] = 115046, + [SMALL_STATE(2075)] = 115090, + [SMALL_STATE(2076)] = 115134, + [SMALL_STATE(2077)] = 115186, + [SMALL_STATE(2078)] = 115238, + [SMALL_STATE(2079)] = 115282, + [SMALL_STATE(2080)] = 115326, + [SMALL_STATE(2081)] = 115374, + [SMALL_STATE(2082)] = 115426, + [SMALL_STATE(2083)] = 115478, + [SMALL_STATE(2084)] = 115522, + [SMALL_STATE(2085)] = 115570, + [SMALL_STATE(2086)] = 115614, + [SMALL_STATE(2087)] = 115658, + [SMALL_STATE(2088)] = 115710, + [SMALL_STATE(2089)] = 115754, + [SMALL_STATE(2090)] = 115802, + [SMALL_STATE(2091)] = 115850, + [SMALL_STATE(2092)] = 115894, + [SMALL_STATE(2093)] = 115938, + [SMALL_STATE(2094)] = 115982, + [SMALL_STATE(2095)] = 116026, + [SMALL_STATE(2096)] = 116070, + [SMALL_STATE(2097)] = 116114, + [SMALL_STATE(2098)] = 116158, + [SMALL_STATE(2099)] = 116210, + [SMALL_STATE(2100)] = 116254, + [SMALL_STATE(2101)] = 116298, + [SMALL_STATE(2102)] = 116342, + [SMALL_STATE(2103)] = 116386, + [SMALL_STATE(2104)] = 116438, + [SMALL_STATE(2105)] = 116482, + [SMALL_STATE(2106)] = 116534, + [SMALL_STATE(2107)] = 116578, + [SMALL_STATE(2108)] = 116622, + [SMALL_STATE(2109)] = 116666, + [SMALL_STATE(2110)] = 116710, + [SMALL_STATE(2111)] = 116762, + [SMALL_STATE(2112)] = 116806, + [SMALL_STATE(2113)] = 116850, + [SMALL_STATE(2114)] = 116902, + [SMALL_STATE(2115)] = 116950, + [SMALL_STATE(2116)] = 116994, + [SMALL_STATE(2117)] = 117046, + [SMALL_STATE(2118)] = 117090, + [SMALL_STATE(2119)] = 117142, + [SMALL_STATE(2120)] = 117186, + [SMALL_STATE(2121)] = 117230, + [SMALL_STATE(2122)] = 117282, + [SMALL_STATE(2123)] = 117334, + [SMALL_STATE(2124)] = 117382, + [SMALL_STATE(2125)] = 117426, + [SMALL_STATE(2126)] = 117470, + [SMALL_STATE(2127)] = 117514, + [SMALL_STATE(2128)] = 117558, + [SMALL_STATE(2129)] = 117602, + [SMALL_STATE(2130)] = 117646, + [SMALL_STATE(2131)] = 117690, + [SMALL_STATE(2132)] = 117734, + [SMALL_STATE(2133)] = 117778, + [SMALL_STATE(2134)] = 117830, + [SMALL_STATE(2135)] = 117874, + [SMALL_STATE(2136)] = 117926, + [SMALL_STATE(2137)] = 117970, + [SMALL_STATE(2138)] = 118014, + [SMALL_STATE(2139)] = 118058, + [SMALL_STATE(2140)] = 118110, + [SMALL_STATE(2141)] = 118158, + [SMALL_STATE(2142)] = 118202, + [SMALL_STATE(2143)] = 118250, + [SMALL_STATE(2144)] = 118302, + [SMALL_STATE(2145)] = 118375, + [SMALL_STATE(2146)] = 118418, + [SMALL_STATE(2147)] = 118491, + [SMALL_STATE(2148)] = 118542, + [SMALL_STATE(2149)] = 118585, + [SMALL_STATE(2150)] = 118636, + [SMALL_STATE(2151)] = 118679, + [SMALL_STATE(2152)] = 118722, + [SMALL_STATE(2153)] = 118765, + [SMALL_STATE(2154)] = 118808, + [SMALL_STATE(2155)] = 118851, + [SMALL_STATE(2156)] = 118924, + [SMALL_STATE(2157)] = 118967, + [SMALL_STATE(2158)] = 119040, + [SMALL_STATE(2159)] = 119113, + [SMALL_STATE(2160)] = 119166, + [SMALL_STATE(2161)] = 119219, + [SMALL_STATE(2162)] = 119266, + [SMALL_STATE(2163)] = 119339, + [SMALL_STATE(2164)] = 119382, + [SMALL_STATE(2165)] = 119455, + [SMALL_STATE(2166)] = 119502, + [SMALL_STATE(2167)] = 119575, + [SMALL_STATE(2168)] = 119648, + [SMALL_STATE(2169)] = 119691, + [SMALL_STATE(2170)] = 119737, + [SMALL_STATE(2171)] = 119789, + [SMALL_STATE(2172)] = 119839, + [SMALL_STATE(2173)] = 119889, + [SMALL_STATE(2174)] = 119941, + [SMALL_STATE(2175)] = 119991, + [SMALL_STATE(2176)] = 120041, + [SMALL_STATE(2177)] = 120090, + [SMALL_STATE(2178)] = 120139, + [SMALL_STATE(2179)] = 120211, + [SMALL_STATE(2180)] = 120283, + [SMALL_STATE(2181)] = 120355, + [SMALL_STATE(2182)] = 120427, + [SMALL_STATE(2183)] = 120499, + [SMALL_STATE(2184)] = 120571, + [SMALL_STATE(2185)] = 120643, + [SMALL_STATE(2186)] = 120715, + [SMALL_STATE(2187)] = 120787, + [SMALL_STATE(2188)] = 120859, + [SMALL_STATE(2189)] = 120931, + [SMALL_STATE(2190)] = 121003, + [SMALL_STATE(2191)] = 121075, + [SMALL_STATE(2192)] = 121147, + [SMALL_STATE(2193)] = 121219, + [SMALL_STATE(2194)] = 121291, + [SMALL_STATE(2195)] = 121363, + [SMALL_STATE(2196)] = 121435, + [SMALL_STATE(2197)] = 121507, + [SMALL_STATE(2198)] = 121579, + [SMALL_STATE(2199)] = 121651, + [SMALL_STATE(2200)] = 121723, + [SMALL_STATE(2201)] = 121795, + [SMALL_STATE(2202)] = 121867, + [SMALL_STATE(2203)] = 121936, + [SMALL_STATE(2204)] = 122005, + [SMALL_STATE(2205)] = 122074, + [SMALL_STATE(2206)] = 122143, + [SMALL_STATE(2207)] = 122212, + [SMALL_STATE(2208)] = 122281, + [SMALL_STATE(2209)] = 122350, + [SMALL_STATE(2210)] = 122419, + [SMALL_STATE(2211)] = 122488, + [SMALL_STATE(2212)] = 122557, + [SMALL_STATE(2213)] = 122626, + [SMALL_STATE(2214)] = 122695, + [SMALL_STATE(2215)] = 122764, + [SMALL_STATE(2216)] = 122833, + [SMALL_STATE(2217)] = 122902, + [SMALL_STATE(2218)] = 122971, + [SMALL_STATE(2219)] = 123040, + [SMALL_STATE(2220)] = 123109, + [SMALL_STATE(2221)] = 123178, + [SMALL_STATE(2222)] = 123247, + [SMALL_STATE(2223)] = 123316, + [SMALL_STATE(2224)] = 123385, + [SMALL_STATE(2225)] = 123454, + [SMALL_STATE(2226)] = 123523, + [SMALL_STATE(2227)] = 123592, + [SMALL_STATE(2228)] = 123661, + [SMALL_STATE(2229)] = 123730, + [SMALL_STATE(2230)] = 123799, + [SMALL_STATE(2231)] = 123868, + [SMALL_STATE(2232)] = 123937, + [SMALL_STATE(2233)] = 124006, + [SMALL_STATE(2234)] = 124075, + [SMALL_STATE(2235)] = 124144, + [SMALL_STATE(2236)] = 124213, + [SMALL_STATE(2237)] = 124282, + [SMALL_STATE(2238)] = 124351, + [SMALL_STATE(2239)] = 124420, + [SMALL_STATE(2240)] = 124489, + [SMALL_STATE(2241)] = 124558, + [SMALL_STATE(2242)] = 124627, + [SMALL_STATE(2243)] = 124696, + [SMALL_STATE(2244)] = 124765, + [SMALL_STATE(2245)] = 124834, + [SMALL_STATE(2246)] = 124903, + [SMALL_STATE(2247)] = 124972, + [SMALL_STATE(2248)] = 125041, + [SMALL_STATE(2249)] = 125110, + [SMALL_STATE(2250)] = 125179, + [SMALL_STATE(2251)] = 125248, + [SMALL_STATE(2252)] = 125317, + [SMALL_STATE(2253)] = 125386, + [SMALL_STATE(2254)] = 125455, + [SMALL_STATE(2255)] = 125524, + [SMALL_STATE(2256)] = 125593, + [SMALL_STATE(2257)] = 125662, + [SMALL_STATE(2258)] = 125701, + [SMALL_STATE(2259)] = 125742, + [SMALL_STATE(2260)] = 125783, + [SMALL_STATE(2261)] = 125824, + [SMALL_STATE(2262)] = 125865, + [SMALL_STATE(2263)] = 125904, + [SMALL_STATE(2264)] = 125945, + [SMALL_STATE(2265)] = 125984, + [SMALL_STATE(2266)] = 126023, + [SMALL_STATE(2267)] = 126064, + [SMALL_STATE(2268)] = 126100, + [SMALL_STATE(2269)] = 126136, + [SMALL_STATE(2270)] = 126172, + [SMALL_STATE(2271)] = 126208, + [SMALL_STATE(2272)] = 126244, + [SMALL_STATE(2273)] = 126280, + [SMALL_STATE(2274)] = 126316, + [SMALL_STATE(2275)] = 126352, + [SMALL_STATE(2276)] = 126388, + [SMALL_STATE(2277)] = 126424, + [SMALL_STATE(2278)] = 126464, + [SMALL_STATE(2279)] = 126500, + [SMALL_STATE(2280)] = 126536, + [SMALL_STATE(2281)] = 126572, + [SMALL_STATE(2282)] = 126608, + [SMALL_STATE(2283)] = 126644, + [SMALL_STATE(2284)] = 126680, + [SMALL_STATE(2285)] = 126716, + [SMALL_STATE(2286)] = 126752, + [SMALL_STATE(2287)] = 126792, + [SMALL_STATE(2288)] = 126828, + [SMALL_STATE(2289)] = 126864, + [SMALL_STATE(2290)] = 126900, + [SMALL_STATE(2291)] = 126936, + [SMALL_STATE(2292)] = 126972, + [SMALL_STATE(2293)] = 127008, + [SMALL_STATE(2294)] = 127044, + [SMALL_STATE(2295)] = 127080, + [SMALL_STATE(2296)] = 127116, + [SMALL_STATE(2297)] = 127152, + [SMALL_STATE(2298)] = 127188, + [SMALL_STATE(2299)] = 127224, + [SMALL_STATE(2300)] = 127260, + [SMALL_STATE(2301)] = 127296, + [SMALL_STATE(2302)] = 127361, + [SMALL_STATE(2303)] = 127418, + [SMALL_STATE(2304)] = 127483, + [SMALL_STATE(2305)] = 127548, + [SMALL_STATE(2306)] = 127587, + [SMALL_STATE(2307)] = 127624, + [SMALL_STATE(2308)] = 127675, + [SMALL_STATE(2309)] = 127720, + [SMALL_STATE(2310)] = 127755, + [SMALL_STATE(2311)] = 127820, + [SMALL_STATE(2312)] = 127885, + [SMALL_STATE(2313)] = 127950, + [SMALL_STATE(2314)] = 128007, + [SMALL_STATE(2315)] = 128048, + [SMALL_STATE(2316)] = 128083, + [SMALL_STATE(2317)] = 128148, + [SMALL_STATE(2318)] = 128205, + [SMALL_STATE(2319)] = 128246, + [SMALL_STATE(2320)] = 128281, + [SMALL_STATE(2321)] = 128332, + [SMALL_STATE(2322)] = 128379, + [SMALL_STATE(2323)] = 128444, + [SMALL_STATE(2324)] = 128509, + [SMALL_STATE(2325)] = 128574, + [SMALL_STATE(2326)] = 128639, + [SMALL_STATE(2327)] = 128704, + [SMALL_STATE(2328)] = 128749, + [SMALL_STATE(2329)] = 128806, + [SMALL_STATE(2330)] = 128850, + [SMALL_STATE(2331)] = 128912, + [SMALL_STATE(2332)] = 128950, + [SMALL_STATE(2333)] = 129012, + [SMALL_STATE(2334)] = 129048, + [SMALL_STATE(2335)] = 129092, + [SMALL_STATE(2336)] = 129154, + [SMALL_STATE(2337)] = 129204, + [SMALL_STATE(2338)] = 129266, + [SMALL_STATE(2339)] = 129304, + [SMALL_STATE(2340)] = 129366, + [SMALL_STATE(2341)] = 129428, + [SMALL_STATE(2342)] = 129490, + [SMALL_STATE(2343)] = 129552, + [SMALL_STATE(2344)] = 129614, + [SMALL_STATE(2345)] = 129652, + [SMALL_STATE(2346)] = 129714, + [SMALL_STATE(2347)] = 129776, + [SMALL_STATE(2348)] = 129838, + [SMALL_STATE(2349)] = 129900, + [SMALL_STATE(2350)] = 129962, + [SMALL_STATE(2351)] = 130024, + [SMALL_STATE(2352)] = 130086, + [SMALL_STATE(2353)] = 130148, + [SMALL_STATE(2354)] = 130210, + [SMALL_STATE(2355)] = 130248, + [SMALL_STATE(2356)] = 130310, + [SMALL_STATE(2357)] = 130372, + [SMALL_STATE(2358)] = 130410, + [SMALL_STATE(2359)] = 130448, + [SMALL_STATE(2360)] = 130510, + [SMALL_STATE(2361)] = 130572, + [SMALL_STATE(2362)] = 130634, + [SMALL_STATE(2363)] = 130672, + [SMALL_STATE(2364)] = 130716, + [SMALL_STATE(2365)] = 130754, + [SMALL_STATE(2366)] = 130816, + [SMALL_STATE(2367)] = 130878, + [SMALL_STATE(2368)] = 130916, + [SMALL_STATE(2369)] = 130952, + [SMALL_STATE(2370)] = 130996, + [SMALL_STATE(2371)] = 131058, + [SMALL_STATE(2372)] = 131120, + [SMALL_STATE(2373)] = 131158, + [SMALL_STATE(2374)] = 131220, + [SMALL_STATE(2375)] = 131270, + [SMALL_STATE(2376)] = 131307, + [SMALL_STATE(2377)] = 131344, + [SMALL_STATE(2378)] = 131381, + [SMALL_STATE(2379)] = 131414, + [SMALL_STATE(2380)] = 131451, + [SMALL_STATE(2381)] = 131488, + [SMALL_STATE(2382)] = 131521, + [SMALL_STATE(2383)] = 131558, + [SMALL_STATE(2384)] = 131591, + [SMALL_STATE(2385)] = 131628, + [SMALL_STATE(2386)] = 131661, + [SMALL_STATE(2387)] = 131694, + [SMALL_STATE(2388)] = 131727, + [SMALL_STATE(2389)] = 131764, + [SMALL_STATE(2390)] = 131797, + [SMALL_STATE(2391)] = 131830, + [SMALL_STATE(2392)] = 131867, + [SMALL_STATE(2393)] = 131904, + [SMALL_STATE(2394)] = 131937, + [SMALL_STATE(2395)] = 131986, + [SMALL_STATE(2396)] = 132023, + [SMALL_STATE(2397)] = 132056, + [SMALL_STATE(2398)] = 132105, + [SMALL_STATE(2399)] = 132142, + [SMALL_STATE(2400)] = 132191, + [SMALL_STATE(2401)] = 132234, + [SMALL_STATE(2402)] = 132271, + [SMALL_STATE(2403)] = 132308, + [SMALL_STATE(2404)] = 132351, + [SMALL_STATE(2405)] = 132384, + [SMALL_STATE(2406)] = 132421, + [SMALL_STATE(2407)] = 132480, + [SMALL_STATE(2408)] = 132513, + [SMALL_STATE(2409)] = 132546, + [SMALL_STATE(2410)] = 132595, + [SMALL_STATE(2411)] = 132630, + [SMALL_STATE(2412)] = 132667, + [SMALL_STATE(2413)] = 132716, + [SMALL_STATE(2414)] = 132753, + [SMALL_STATE(2415)] = 132790, + [SMALL_STATE(2416)] = 132827, + [SMALL_STATE(2417)] = 132864, + [SMALL_STATE(2418)] = 132897, + [SMALL_STATE(2419)] = 132930, + [SMALL_STATE(2420)] = 132967, + [SMALL_STATE(2421)] = 133000, + [SMALL_STATE(2422)] = 133033, + [SMALL_STATE(2423)] = 133066, + [SMALL_STATE(2424)] = 133099, + [SMALL_STATE(2425)] = 133136, + [SMALL_STATE(2426)] = 133169, + [SMALL_STATE(2427)] = 133202, + [SMALL_STATE(2428)] = 133235, + [SMALL_STATE(2429)] = 133268, + [SMALL_STATE(2430)] = 133317, + [SMALL_STATE(2431)] = 133350, + [SMALL_STATE(2432)] = 133383, + [SMALL_STATE(2433)] = 133420, + [SMALL_STATE(2434)] = 133453, + [SMALL_STATE(2435)] = 133486, + [SMALL_STATE(2436)] = 133523, + [SMALL_STATE(2437)] = 133560, + [SMALL_STATE(2438)] = 133593, + [SMALL_STATE(2439)] = 133630, + [SMALL_STATE(2440)] = 133662, + [SMALL_STATE(2441)] = 133718, + [SMALL_STATE(2442)] = 133752, + [SMALL_STATE(2443)] = 133786, + [SMALL_STATE(2444)] = 133828, + [SMALL_STATE(2445)] = 133884, + [SMALL_STATE(2446)] = 133926, + [SMALL_STATE(2447)] = 133960, + [SMALL_STATE(2448)] = 133994, + [SMALL_STATE(2449)] = 134030, + [SMALL_STATE(2450)] = 134066, + [SMALL_STATE(2451)] = 134102, + [SMALL_STATE(2452)] = 134136, + [SMALL_STATE(2453)] = 134172, + [SMALL_STATE(2454)] = 134208, + [SMALL_STATE(2455)] = 134244, + [SMALL_STATE(2456)] = 134280, + [SMALL_STATE(2457)] = 134316, + [SMALL_STATE(2458)] = 134352, + [SMALL_STATE(2459)] = 134388, + [SMALL_STATE(2460)] = 134424, + [SMALL_STATE(2461)] = 134458, + [SMALL_STATE(2462)] = 134504, + [SMALL_STATE(2463)] = 134538, + [SMALL_STATE(2464)] = 134574, + [SMALL_STATE(2465)] = 134610, + [SMALL_STATE(2466)] = 134666, + [SMALL_STATE(2467)] = 134700, + [SMALL_STATE(2468)] = 134756, + [SMALL_STATE(2469)] = 134790, + [SMALL_STATE(2470)] = 134824, + [SMALL_STATE(2471)] = 134858, + [SMALL_STATE(2472)] = 134904, + [SMALL_STATE(2473)] = 134936, + [SMALL_STATE(2474)] = 134992, + [SMALL_STATE(2475)] = 135048, + [SMALL_STATE(2476)] = 135082, + [SMALL_STATE(2477)] = 135116, + [SMALL_STATE(2478)] = 135148, + [SMALL_STATE(2479)] = 135182, + [SMALL_STATE(2480)] = 135216, + [SMALL_STATE(2481)] = 135252, + [SMALL_STATE(2482)] = 135286, + [SMALL_STATE(2483)] = 135318, + [SMALL_STATE(2484)] = 135374, + [SMALL_STATE(2485)] = 135430, + [SMALL_STATE(2486)] = 135486, + [SMALL_STATE(2487)] = 135520, + [SMALL_STATE(2488)] = 135554, + [SMALL_STATE(2489)] = 135588, + [SMALL_STATE(2490)] = 135644, + [SMALL_STATE(2491)] = 135680, + [SMALL_STATE(2492)] = 135736, + [SMALL_STATE(2493)] = 135772, + [SMALL_STATE(2494)] = 135808, + [SMALL_STATE(2495)] = 135844, + [SMALL_STATE(2496)] = 135880, + [SMALL_STATE(2497)] = 135916, + [SMALL_STATE(2498)] = 135950, + [SMALL_STATE(2499)] = 135984, + [SMALL_STATE(2500)] = 136016, + [SMALL_STATE(2501)] = 136062, + [SMALL_STATE(2502)] = 136094, + [SMALL_STATE(2503)] = 136126, + [SMALL_STATE(2504)] = 136182, + [SMALL_STATE(2505)] = 136214, + [SMALL_STATE(2506)] = 136246, + [SMALL_STATE(2507)] = 136302, + [SMALL_STATE(2508)] = 136334, + [SMALL_STATE(2509)] = 136366, + [SMALL_STATE(2510)] = 136398, + [SMALL_STATE(2511)] = 136430, + [SMALL_STATE(2512)] = 136462, + [SMALL_STATE(2513)] = 136518, + [SMALL_STATE(2514)] = 136550, + [SMALL_STATE(2515)] = 136582, + [SMALL_STATE(2516)] = 136616, + [SMALL_STATE(2517)] = 136648, + [SMALL_STATE(2518)] = 136680, + [SMALL_STATE(2519)] = 136736, + [SMALL_STATE(2520)] = 136768, + [SMALL_STATE(2521)] = 136800, + [SMALL_STATE(2522)] = 136832, + [SMALL_STATE(2523)] = 136864, + [SMALL_STATE(2524)] = 136896, + [SMALL_STATE(2525)] = 136928, + [SMALL_STATE(2526)] = 136960, + [SMALL_STATE(2527)] = 136992, + [SMALL_STATE(2528)] = 137024, + [SMALL_STATE(2529)] = 137056, + [SMALL_STATE(2530)] = 137088, + [SMALL_STATE(2531)] = 137120, + [SMALL_STATE(2532)] = 137176, + [SMALL_STATE(2533)] = 137208, + [SMALL_STATE(2534)] = 137244, + [SMALL_STATE(2535)] = 137276, + [SMALL_STATE(2536)] = 137312, + [SMALL_STATE(2537)] = 137346, + [SMALL_STATE(2538)] = 137402, + [SMALL_STATE(2539)] = 137438, + [SMALL_STATE(2540)] = 137474, + [SMALL_STATE(2541)] = 137510, + [SMALL_STATE(2542)] = 137544, + [SMALL_STATE(2543)] = 137590, + [SMALL_STATE(2544)] = 137624, + [SMALL_STATE(2545)] = 137658, + [SMALL_STATE(2546)] = 137694, + [SMALL_STATE(2547)] = 137730, + [SMALL_STATE(2548)] = 137766, + [SMALL_STATE(2549)] = 137800, + [SMALL_STATE(2550)] = 137856, + [SMALL_STATE(2551)] = 137890, + [SMALL_STATE(2552)] = 137946, + [SMALL_STATE(2553)] = 138002, + [SMALL_STATE(2554)] = 138058, + [SMALL_STATE(2555)] = 138092, + [SMALL_STATE(2556)] = 138126, + [SMALL_STATE(2557)] = 138182, + [SMALL_STATE(2558)] = 138216, + [SMALL_STATE(2559)] = 138250, + [SMALL_STATE(2560)] = 138284, + [SMALL_STATE(2561)] = 138318, + [SMALL_STATE(2562)] = 138349, + [SMALL_STATE(2563)] = 138380, + [SMALL_STATE(2564)] = 138435, + [SMALL_STATE(2565)] = 138490, + [SMALL_STATE(2566)] = 138545, + [SMALL_STATE(2567)] = 138600, + [SMALL_STATE(2568)] = 138655, + [SMALL_STATE(2569)] = 138710, + [SMALL_STATE(2570)] = 138763, + [SMALL_STATE(2571)] = 138818, + [SMALL_STATE(2572)] = 138873, + [SMALL_STATE(2573)] = 138928, + [SMALL_STATE(2574)] = 138983, + [SMALL_STATE(2575)] = 139038, + [SMALL_STATE(2576)] = 139093, + [SMALL_STATE(2577)] = 139148, + [SMALL_STATE(2578)] = 139203, + [SMALL_STATE(2579)] = 139258, + [SMALL_STATE(2580)] = 139293, + [SMALL_STATE(2581)] = 139348, + [SMALL_STATE(2582)] = 139403, + [SMALL_STATE(2583)] = 139458, + [SMALL_STATE(2584)] = 139513, + [SMALL_STATE(2585)] = 139544, + [SMALL_STATE(2586)] = 139575, + [SMALL_STATE(2587)] = 139630, + [SMALL_STATE(2588)] = 139685, + [SMALL_STATE(2589)] = 139740, + [SMALL_STATE(2590)] = 139775, + [SMALL_STATE(2591)] = 139830, + [SMALL_STATE(2592)] = 139861, + [SMALL_STATE(2593)] = 139892, + [SMALL_STATE(2594)] = 139927, + [SMALL_STATE(2595)] = 139980, + [SMALL_STATE(2596)] = 140011, + [SMALL_STATE(2597)] = 140042, + [SMALL_STATE(2598)] = 140077, + [SMALL_STATE(2599)] = 140112, + [SMALL_STATE(2600)] = 140147, + [SMALL_STATE(2601)] = 140202, + [SMALL_STATE(2602)] = 140233, + [SMALL_STATE(2603)] = 140268, + [SMALL_STATE(2604)] = 140323, + [SMALL_STATE(2605)] = 140358, + [SMALL_STATE(2606)] = 140389, + [SMALL_STATE(2607)] = 140424, + [SMALL_STATE(2608)] = 140455, + [SMALL_STATE(2609)] = 140510, + [SMALL_STATE(2610)] = 140545, + [SMALL_STATE(2611)] = 140600, + [SMALL_STATE(2612)] = 140655, + [SMALL_STATE(2613)] = 140686, + [SMALL_STATE(2614)] = 140741, + [SMALL_STATE(2615)] = 140772, + [SMALL_STATE(2616)] = 140803, + [SMALL_STATE(2617)] = 140834, + [SMALL_STATE(2618)] = 140865, + [SMALL_STATE(2619)] = 140920, + [SMALL_STATE(2620)] = 140951, + [SMALL_STATE(2621)] = 141006, + [SMALL_STATE(2622)] = 141061, + [SMALL_STATE(2623)] = 141092, + [SMALL_STATE(2624)] = 141147, + [SMALL_STATE(2625)] = 141202, + [SMALL_STATE(2626)] = 141257, + [SMALL_STATE(2627)] = 141288, + [SMALL_STATE(2628)] = 141343, + [SMALL_STATE(2629)] = 141398, + [SMALL_STATE(2630)] = 141429, + [SMALL_STATE(2631)] = 141460, + [SMALL_STATE(2632)] = 141491, + [SMALL_STATE(2633)] = 141522, + [SMALL_STATE(2634)] = 141577, + [SMALL_STATE(2635)] = 141632, + [SMALL_STATE(2636)] = 141663, + [SMALL_STATE(2637)] = 141694, + [SMALL_STATE(2638)] = 141725, + [SMALL_STATE(2639)] = 141756, + [SMALL_STATE(2640)] = 141811, + [SMALL_STATE(2641)] = 141842, + [SMALL_STATE(2642)] = 141897, + [SMALL_STATE(2643)] = 141952, + [SMALL_STATE(2644)] = 142007, + [SMALL_STATE(2645)] = 142062, + [SMALL_STATE(2646)] = 142117, + [SMALL_STATE(2647)] = 142148, + [SMALL_STATE(2648)] = 142203, + [SMALL_STATE(2649)] = 142234, + [SMALL_STATE(2650)] = 142289, + [SMALL_STATE(2651)] = 142344, + [SMALL_STATE(2652)] = 142399, + [SMALL_STATE(2653)] = 142430, + [SMALL_STATE(2654)] = 142485, + [SMALL_STATE(2655)] = 142540, + [SMALL_STATE(2656)] = 142571, + [SMALL_STATE(2657)] = 142602, + [SMALL_STATE(2658)] = 142657, + [SMALL_STATE(2659)] = 142688, + [SMALL_STATE(2660)] = 142743, + [SMALL_STATE(2661)] = 142774, + [SMALL_STATE(2662)] = 142827, + [SMALL_STATE(2663)] = 142858, + [SMALL_STATE(2664)] = 142889, + [SMALL_STATE(2665)] = 142920, + [SMALL_STATE(2666)] = 142975, + [SMALL_STATE(2667)] = 143030, + [SMALL_STATE(2668)] = 143085, + [SMALL_STATE(2669)] = 143116, + [SMALL_STATE(2670)] = 143147, + [SMALL_STATE(2671)] = 143178, + [SMALL_STATE(2672)] = 143209, + [SMALL_STATE(2673)] = 143240, + [SMALL_STATE(2674)] = 143271, + [SMALL_STATE(2675)] = 143326, + [SMALL_STATE(2676)] = 143357, + [SMALL_STATE(2677)] = 143412, + [SMALL_STATE(2678)] = 143443, + [SMALL_STATE(2679)] = 143474, + [SMALL_STATE(2680)] = 143505, + [SMALL_STATE(2681)] = 143560, + [SMALL_STATE(2682)] = 143591, + [SMALL_STATE(2683)] = 143646, + [SMALL_STATE(2684)] = 143677, + [SMALL_STATE(2685)] = 143708, + [SMALL_STATE(2686)] = 143763, + [SMALL_STATE(2687)] = 143794, + [SMALL_STATE(2688)] = 143825, + [SMALL_STATE(2689)] = 143856, + [SMALL_STATE(2690)] = 143887, + [SMALL_STATE(2691)] = 143922, + [SMALL_STATE(2692)] = 143953, + [SMALL_STATE(2693)] = 143984, + [SMALL_STATE(2694)] = 144015, + [SMALL_STATE(2695)] = 144046, + [SMALL_STATE(2696)] = 144077, + [SMALL_STATE(2697)] = 144132, + [SMALL_STATE(2698)] = 144163, + [SMALL_STATE(2699)] = 144194, + [SMALL_STATE(2700)] = 144225, + [SMALL_STATE(2701)] = 144260, + [SMALL_STATE(2702)] = 144295, + [SMALL_STATE(2703)] = 144326, + [SMALL_STATE(2704)] = 144357, + [SMALL_STATE(2705)] = 144388, + [SMALL_STATE(2706)] = 144419, + [SMALL_STATE(2707)] = 144450, + [SMALL_STATE(2708)] = 144505, + [SMALL_STATE(2709)] = 144560, + [SMALL_STATE(2710)] = 144615, + [SMALL_STATE(2711)] = 144646, + [SMALL_STATE(2712)] = 144677, + [SMALL_STATE(2713)] = 144708, + [SMALL_STATE(2714)] = 144739, + [SMALL_STATE(2715)] = 144794, + [SMALL_STATE(2716)] = 144825, + [SMALL_STATE(2717)] = 144880, + [SMALL_STATE(2718)] = 144911, + [SMALL_STATE(2719)] = 144942, + [SMALL_STATE(2720)] = 144973, + [SMALL_STATE(2721)] = 145004, + [SMALL_STATE(2722)] = 145059, + [SMALL_STATE(2723)] = 145090, + [SMALL_STATE(2724)] = 145121, + [SMALL_STATE(2725)] = 145176, + [SMALL_STATE(2726)] = 145231, + [SMALL_STATE(2727)] = 145286, + [SMALL_STATE(2728)] = 145321, + [SMALL_STATE(2729)] = 145356, + [SMALL_STATE(2730)] = 145411, + [SMALL_STATE(2731)] = 145446, + [SMALL_STATE(2732)] = 145477, + [SMALL_STATE(2733)] = 145508, + [SMALL_STATE(2734)] = 145539, + [SMALL_STATE(2735)] = 145569, + [SMALL_STATE(2736)] = 145599, + [SMALL_STATE(2737)] = 145651, + [SMALL_STATE(2738)] = 145681, + [SMALL_STATE(2739)] = 145711, + [SMALL_STATE(2740)] = 145741, + [SMALL_STATE(2741)] = 145771, + [SMALL_STATE(2742)] = 145801, + [SMALL_STATE(2743)] = 145831, + [SMALL_STATE(2744)] = 145861, + [SMALL_STATE(2745)] = 145913, + [SMALL_STATE(2746)] = 145943, + [SMALL_STATE(2747)] = 145973, + [SMALL_STATE(2748)] = 146021, + [SMALL_STATE(2749)] = 146069, + [SMALL_STATE(2750)] = 146099, + [SMALL_STATE(2751)] = 146151, + [SMALL_STATE(2752)] = 146181, + [SMALL_STATE(2753)] = 146211, + [SMALL_STATE(2754)] = 146241, + [SMALL_STATE(2755)] = 146271, + [SMALL_STATE(2756)] = 146301, + [SMALL_STATE(2757)] = 146331, + [SMALL_STATE(2758)] = 146361, + [SMALL_STATE(2759)] = 146391, + [SMALL_STATE(2760)] = 146421, + [SMALL_STATE(2761)] = 146451, + [SMALL_STATE(2762)] = 146481, + [SMALL_STATE(2763)] = 146511, + [SMALL_STATE(2764)] = 146541, + [SMALL_STATE(2765)] = 146593, + [SMALL_STATE(2766)] = 146623, + [SMALL_STATE(2767)] = 146653, + [SMALL_STATE(2768)] = 146683, + [SMALL_STATE(2769)] = 146713, + [SMALL_STATE(2770)] = 146743, + [SMALL_STATE(2771)] = 146773, + [SMALL_STATE(2772)] = 146825, + [SMALL_STATE(2773)] = 146855, + [SMALL_STATE(2774)] = 146907, + [SMALL_STATE(2775)] = 146937, + [SMALL_STATE(2776)] = 146967, + [SMALL_STATE(2777)] = 146997, + [SMALL_STATE(2778)] = 147027, + [SMALL_STATE(2779)] = 147057, + [SMALL_STATE(2780)] = 147087, + [SMALL_STATE(2781)] = 147139, + [SMALL_STATE(2782)] = 147169, + [SMALL_STATE(2783)] = 147199, + [SMALL_STATE(2784)] = 147229, + [SMALL_STATE(2785)] = 147259, + [SMALL_STATE(2786)] = 147289, + [SMALL_STATE(2787)] = 147341, + [SMALL_STATE(2788)] = 147371, + [SMALL_STATE(2789)] = 147401, + [SMALL_STATE(2790)] = 147431, + [SMALL_STATE(2791)] = 147461, + [SMALL_STATE(2792)] = 147491, + [SMALL_STATE(2793)] = 147521, + [SMALL_STATE(2794)] = 147573, + [SMALL_STATE(2795)] = 147603, + [SMALL_STATE(2796)] = 147633, + [SMALL_STATE(2797)] = 147663, + [SMALL_STATE(2798)] = 147693, + [SMALL_STATE(2799)] = 147741, + [SMALL_STATE(2800)] = 147789, + [SMALL_STATE(2801)] = 147841, + [SMALL_STATE(2802)] = 147871, + [SMALL_STATE(2803)] = 147901, + [SMALL_STATE(2804)] = 147931, + [SMALL_STATE(2805)] = 147961, + [SMALL_STATE(2806)] = 148013, + [SMALL_STATE(2807)] = 148043, + [SMALL_STATE(2808)] = 148073, + [SMALL_STATE(2809)] = 148125, + [SMALL_STATE(2810)] = 148155, + [SMALL_STATE(2811)] = 148185, + [SMALL_STATE(2812)] = 148237, + [SMALL_STATE(2813)] = 148289, + [SMALL_STATE(2814)] = 148341, + [SMALL_STATE(2815)] = 148371, + [SMALL_STATE(2816)] = 148401, + [SMALL_STATE(2817)] = 148431, + [SMALL_STATE(2818)] = 148461, + [SMALL_STATE(2819)] = 148513, + [SMALL_STATE(2820)] = 148565, + [SMALL_STATE(2821)] = 148617, + [SMALL_STATE(2822)] = 148647, + [SMALL_STATE(2823)] = 148699, + [SMALL_STATE(2824)] = 148729, + [SMALL_STATE(2825)] = 148781, + [SMALL_STATE(2826)] = 148811, + [SMALL_STATE(2827)] = 148863, + [SMALL_STATE(2828)] = 148915, + [SMALL_STATE(2829)] = 148945, + [SMALL_STATE(2830)] = 148975, + [SMALL_STATE(2831)] = 149027, + [SMALL_STATE(2832)] = 149057, + [SMALL_STATE(2833)] = 149087, + [SMALL_STATE(2834)] = 149117, + [SMALL_STATE(2835)] = 149147, + [SMALL_STATE(2836)] = 149177, + [SMALL_STATE(2837)] = 149207, + [SMALL_STATE(2838)] = 149259, + [SMALL_STATE(2839)] = 149289, + [SMALL_STATE(2840)] = 149319, + [SMALL_STATE(2841)] = 149371, + [SMALL_STATE(2842)] = 149401, + [SMALL_STATE(2843)] = 149453, + [SMALL_STATE(2844)] = 149498, + [SMALL_STATE(2845)] = 149543, + [SMALL_STATE(2846)] = 149588, + [SMALL_STATE(2847)] = 149633, + [SMALL_STATE(2848)] = 149678, + [SMALL_STATE(2849)] = 149723, + [SMALL_STATE(2850)] = 149768, + [SMALL_STATE(2851)] = 149813, + [SMALL_STATE(2852)] = 149858, + [SMALL_STATE(2853)] = 149887, + [SMALL_STATE(2854)] = 149932, + [SMALL_STATE(2855)] = 149977, + [SMALL_STATE(2856)] = 150022, + [SMALL_STATE(2857)] = 150067, + [SMALL_STATE(2858)] = 150112, + [SMALL_STATE(2859)] = 150157, + [SMALL_STATE(2860)] = 150202, + [SMALL_STATE(2861)] = 150247, + [SMALL_STATE(2862)] = 150292, + [SMALL_STATE(2863)] = 150337, + [SMALL_STATE(2864)] = 150382, + [SMALL_STATE(2865)] = 150411, + [SMALL_STATE(2866)] = 150456, + [SMALL_STATE(2867)] = 150501, + [SMALL_STATE(2868)] = 150546, + [SMALL_STATE(2869)] = 150591, + [SMALL_STATE(2870)] = 150636, + [SMALL_STATE(2871)] = 150681, + [SMALL_STATE(2872)] = 150710, + [SMALL_STATE(2873)] = 150739, + [SMALL_STATE(2874)] = 150784, + [SMALL_STATE(2875)] = 150829, + [SMALL_STATE(2876)] = 150874, + [SMALL_STATE(2877)] = 150919, + [SMALL_STATE(2878)] = 150948, + [SMALL_STATE(2879)] = 150993, + [SMALL_STATE(2880)] = 151022, + [SMALL_STATE(2881)] = 151067, + [SMALL_STATE(2882)] = 151112, + [SMALL_STATE(2883)] = 151141, + [SMALL_STATE(2884)] = 151186, + [SMALL_STATE(2885)] = 151231, + [SMALL_STATE(2886)] = 151276, + [SMALL_STATE(2887)] = 151321, + [SMALL_STATE(2888)] = 151366, + [SMALL_STATE(2889)] = 151411, + [SMALL_STATE(2890)] = 151456, + [SMALL_STATE(2891)] = 151501, + [SMALL_STATE(2892)] = 151546, + [SMALL_STATE(2893)] = 151591, + [SMALL_STATE(2894)] = 151620, + [SMALL_STATE(2895)] = 151665, + [SMALL_STATE(2896)] = 151710, + [SMALL_STATE(2897)] = 151755, + [SMALL_STATE(2898)] = 151800, + [SMALL_STATE(2899)] = 151845, + [SMALL_STATE(2900)] = 151890, + [SMALL_STATE(2901)] = 151935, + [SMALL_STATE(2902)] = 151980, + [SMALL_STATE(2903)] = 152025, + [SMALL_STATE(2904)] = 152054, + [SMALL_STATE(2905)] = 152099, + [SMALL_STATE(2906)] = 152144, + [SMALL_STATE(2907)] = 152189, + [SMALL_STATE(2908)] = 152234, + [SMALL_STATE(2909)] = 152279, + [SMALL_STATE(2910)] = 152324, + [SMALL_STATE(2911)] = 152369, + [SMALL_STATE(2912)] = 152414, + [SMALL_STATE(2913)] = 152459, + [SMALL_STATE(2914)] = 152488, + [SMALL_STATE(2915)] = 152517, + [SMALL_STATE(2916)] = 152546, + [SMALL_STATE(2917)] = 152575, + [SMALL_STATE(2918)] = 152620, + [SMALL_STATE(2919)] = 152649, + [SMALL_STATE(2920)] = 152694, + [SMALL_STATE(2921)] = 152723, + [SMALL_STATE(2922)] = 152752, + [SMALL_STATE(2923)] = 152797, + [SMALL_STATE(2924)] = 152826, + [SMALL_STATE(2925)] = 152871, + [SMALL_STATE(2926)] = 152900, + [SMALL_STATE(2927)] = 152929, + [SMALL_STATE(2928)] = 152958, + [SMALL_STATE(2929)] = 153003, + [SMALL_STATE(2930)] = 153048, + [SMALL_STATE(2931)] = 153077, + [SMALL_STATE(2932)] = 153122, + [SMALL_STATE(2933)] = 153151, + [SMALL_STATE(2934)] = 153180, + [SMALL_STATE(2935)] = 153225, + [SMALL_STATE(2936)] = 153270, + [SMALL_STATE(2937)] = 153299, + [SMALL_STATE(2938)] = 153328, + [SMALL_STATE(2939)] = 153357, + [SMALL_STATE(2940)] = 153402, + [SMALL_STATE(2941)] = 153447, + [SMALL_STATE(2942)] = 153492, + [SMALL_STATE(2943)] = 153521, + [SMALL_STATE(2944)] = 153566, + [SMALL_STATE(2945)] = 153595, + [SMALL_STATE(2946)] = 153624, + [SMALL_STATE(2947)] = 153669, + [SMALL_STATE(2948)] = 153698, + [SMALL_STATE(2949)] = 153727, + [SMALL_STATE(2950)] = 153772, + [SMALL_STATE(2951)] = 153817, + [SMALL_STATE(2952)] = 153846, + [SMALL_STATE(2953)] = 153891, + [SMALL_STATE(2954)] = 153936, + [SMALL_STATE(2955)] = 153965, + [SMALL_STATE(2956)] = 154010, + [SMALL_STATE(2957)] = 154055, + [SMALL_STATE(2958)] = 154084, + [SMALL_STATE(2959)] = 154129, + [SMALL_STATE(2960)] = 154158, + [SMALL_STATE(2961)] = 154203, + [SMALL_STATE(2962)] = 154232, + [SMALL_STATE(2963)] = 154261, + [SMALL_STATE(2964)] = 154306, + [SMALL_STATE(2965)] = 154335, + [SMALL_STATE(2966)] = 154364, + [SMALL_STATE(2967)] = 154409, + [SMALL_STATE(2968)] = 154454, + [SMALL_STATE(2969)] = 154483, + [SMALL_STATE(2970)] = 154512, + [SMALL_STATE(2971)] = 154557, + [SMALL_STATE(2972)] = 154602, + [SMALL_STATE(2973)] = 154647, + [SMALL_STATE(2974)] = 154676, + [SMALL_STATE(2975)] = 154721, + [SMALL_STATE(2976)] = 154750, + [SMALL_STATE(2977)] = 154779, + [SMALL_STATE(2978)] = 154824, + [SMALL_STATE(2979)] = 154869, + [SMALL_STATE(2980)] = 154914, + [SMALL_STATE(2981)] = 154959, + [SMALL_STATE(2982)] = 154988, + [SMALL_STATE(2983)] = 155033, + [SMALL_STATE(2984)] = 155078, + [SMALL_STATE(2985)] = 155123, + [SMALL_STATE(2986)] = 155168, + [SMALL_STATE(2987)] = 155213, + [SMALL_STATE(2988)] = 155242, + [SMALL_STATE(2989)] = 155287, + [SMALL_STATE(2990)] = 155316, + [SMALL_STATE(2991)] = 155361, + [SMALL_STATE(2992)] = 155390, + [SMALL_STATE(2993)] = 155419, + [SMALL_STATE(2994)] = 155464, + [SMALL_STATE(2995)] = 155493, + [SMALL_STATE(2996)] = 155522, + [SMALL_STATE(2997)] = 155551, + [SMALL_STATE(2998)] = 155580, + [SMALL_STATE(2999)] = 155609, + [SMALL_STATE(3000)] = 155638, + [SMALL_STATE(3001)] = 155667, + [SMALL_STATE(3002)] = 155693, + [SMALL_STATE(3003)] = 155719, + [SMALL_STATE(3004)] = 155745, + [SMALL_STATE(3005)] = 155771, + [SMALL_STATE(3006)] = 155797, + [SMALL_STATE(3007)] = 155823, + [SMALL_STATE(3008)] = 155849, + [SMALL_STATE(3009)] = 155875, + [SMALL_STATE(3010)] = 155901, + [SMALL_STATE(3011)] = 155927, + [SMALL_STATE(3012)] = 155953, + [SMALL_STATE(3013)] = 155979, + [SMALL_STATE(3014)] = 156005, + [SMALL_STATE(3015)] = 156031, + [SMALL_STATE(3016)] = 156057, + [SMALL_STATE(3017)] = 156083, + [SMALL_STATE(3018)] = 156109, + [SMALL_STATE(3019)] = 156135, + [SMALL_STATE(3020)] = 156161, + [SMALL_STATE(3021)] = 156187, + [SMALL_STATE(3022)] = 156213, + [SMALL_STATE(3023)] = 156239, + [SMALL_STATE(3024)] = 156265, + [SMALL_STATE(3025)] = 156291, + [SMALL_STATE(3026)] = 156317, + [SMALL_STATE(3027)] = 156343, + [SMALL_STATE(3028)] = 156371, + [SMALL_STATE(3029)] = 156397, + [SMALL_STATE(3030)] = 156423, + [SMALL_STATE(3031)] = 156451, + [SMALL_STATE(3032)] = 156484, + [SMALL_STATE(3033)] = 156507, + [SMALL_STATE(3034)] = 156540, + [SMALL_STATE(3035)] = 156569, + [SMALL_STATE(3036)] = 156593, + [SMALL_STATE(3037)] = 156617, + [SMALL_STATE(3038)] = 156641, + [SMALL_STATE(3039)] = 156669, + [SMALL_STATE(3040)] = 156693, + [SMALL_STATE(3041)] = 156717, + [SMALL_STATE(3042)] = 156741, + [SMALL_STATE(3043)] = 156769, + [SMALL_STATE(3044)] = 156793, + [SMALL_STATE(3045)] = 156817, + [SMALL_STATE(3046)] = 156841, + [SMALL_STATE(3047)] = 156865, + [SMALL_STATE(3048)] = 156889, + [SMALL_STATE(3049)] = 156913, + [SMALL_STATE(3050)] = 156941, + [SMALL_STATE(3051)] = 156965, + [SMALL_STATE(3052)] = 156989, + [SMALL_STATE(3053)] = 157021, + [SMALL_STATE(3054)] = 157045, + [SMALL_STATE(3055)] = 157069, + [SMALL_STATE(3056)] = 157097, + [SMALL_STATE(3057)] = 157121, + [SMALL_STATE(3058)] = 157153, + [SMALL_STATE(3059)] = 157177, + [SMALL_STATE(3060)] = 157205, + [SMALL_STATE(3061)] = 157233, + [SMALL_STATE(3062)] = 157257, + [SMALL_STATE(3063)] = 157281, + [SMALL_STATE(3064)] = 157305, + [SMALL_STATE(3065)] = 157329, + [SMALL_STATE(3066)] = 157353, + [SMALL_STATE(3067)] = 157377, + [SMALL_STATE(3068)] = 157401, + [SMALL_STATE(3069)] = 157425, + [SMALL_STATE(3070)] = 157449, + [SMALL_STATE(3071)] = 157473, + [SMALL_STATE(3072)] = 157498, + [SMALL_STATE(3073)] = 157523, + [SMALL_STATE(3074)] = 157548, + [SMALL_STATE(3075)] = 157573, + [SMALL_STATE(3076)] = 157598, + [SMALL_STATE(3077)] = 157623, + [SMALL_STATE(3078)] = 157648, + [SMALL_STATE(3079)] = 157673, + [SMALL_STATE(3080)] = 157698, + [SMALL_STATE(3081)] = 157725, + [SMALL_STATE(3082)] = 157750, + [SMALL_STATE(3083)] = 157775, + [SMALL_STATE(3084)] = 157800, + [SMALL_STATE(3085)] = 157823, + [SMALL_STATE(3086)] = 157848, + [SMALL_STATE(3087)] = 157873, + [SMALL_STATE(3088)] = 157898, + [SMALL_STATE(3089)] = 157923, + [SMALL_STATE(3090)] = 157948, + [SMALL_STATE(3091)] = 157973, + [SMALL_STATE(3092)] = 157998, + [SMALL_STATE(3093)] = 158023, + [SMALL_STATE(3094)] = 158048, + [SMALL_STATE(3095)] = 158073, + [SMALL_STATE(3096)] = 158098, + [SMALL_STATE(3097)] = 158123, + [SMALL_STATE(3098)] = 158157, + [SMALL_STATE(3099)] = 158191, + [SMALL_STATE(3100)] = 158225, + [SMALL_STATE(3101)] = 158259, + [SMALL_STATE(3102)] = 158281, + [SMALL_STATE(3103)] = 158315, + [SMALL_STATE(3104)] = 158337, + [SMALL_STATE(3105)] = 158359, + [SMALL_STATE(3106)] = 158381, + [SMALL_STATE(3107)] = 158415, + [SMALL_STATE(3108)] = 158437, + [SMALL_STATE(3109)] = 158459, + [SMALL_STATE(3110)] = 158481, + [SMALL_STATE(3111)] = 158515, + [SMALL_STATE(3112)] = 158537, + [SMALL_STATE(3113)] = 158571, + [SMALL_STATE(3114)] = 158605, + [SMALL_STATE(3115)] = 158627, + [SMALL_STATE(3116)] = 158649, + [SMALL_STATE(3117)] = 158683, + [SMALL_STATE(3118)] = 158705, + [SMALL_STATE(3119)] = 158735, + [SMALL_STATE(3120)] = 158757, + [SMALL_STATE(3121)] = 158791, + [SMALL_STATE(3122)] = 158821, + [SMALL_STATE(3123)] = 158843, + [SMALL_STATE(3124)] = 158877, + [SMALL_STATE(3125)] = 158899, + [SMALL_STATE(3126)] = 158921, + [SMALL_STATE(3127)] = 158955, + [SMALL_STATE(3128)] = 158989, + [SMALL_STATE(3129)] = 159023, + [SMALL_STATE(3130)] = 159045, + [SMALL_STATE(3131)] = 159079, + [SMALL_STATE(3132)] = 159113, + [SMALL_STATE(3133)] = 159135, + [SMALL_STATE(3134)] = 159169, + [SMALL_STATE(3135)] = 159191, + [SMALL_STATE(3136)] = 159221, + [SMALL_STATE(3137)] = 159243, + [SMALL_STATE(3138)] = 159265, + [SMALL_STATE(3139)] = 159295, + [SMALL_STATE(3140)] = 159317, + [SMALL_STATE(3141)] = 159351, + [SMALL_STATE(3142)] = 159385, + [SMALL_STATE(3143)] = 159419, + [SMALL_STATE(3144)] = 159441, + [SMALL_STATE(3145)] = 159475, + [SMALL_STATE(3146)] = 159497, + [SMALL_STATE(3147)] = 159531, + [SMALL_STATE(3148)] = 159553, + [SMALL_STATE(3149)] = 159575, + [SMALL_STATE(3150)] = 159609, + [SMALL_STATE(3151)] = 159631, + [SMALL_STATE(3152)] = 159665, + [SMALL_STATE(3153)] = 159699, + [SMALL_STATE(3154)] = 159721, + [SMALL_STATE(3155)] = 159743, + [SMALL_STATE(3156)] = 159765, + [SMALL_STATE(3157)] = 159787, + [SMALL_STATE(3158)] = 159821, + [SMALL_STATE(3159)] = 159843, + [SMALL_STATE(3160)] = 159865, + [SMALL_STATE(3161)] = 159887, + [SMALL_STATE(3162)] = 159921, + [SMALL_STATE(3163)] = 159955, + [SMALL_STATE(3164)] = 159989, + [SMALL_STATE(3165)] = 160011, + [SMALL_STATE(3166)] = 160033, + [SMALL_STATE(3167)] = 160055, + [SMALL_STATE(3168)] = 160089, + [SMALL_STATE(3169)] = 160123, + [SMALL_STATE(3170)] = 160145, + [SMALL_STATE(3171)] = 160179, + [SMALL_STATE(3172)] = 160201, + [SMALL_STATE(3173)] = 160223, + [SMALL_STATE(3174)] = 160245, + [SMALL_STATE(3175)] = 160267, + [SMALL_STATE(3176)] = 160301, + [SMALL_STATE(3177)] = 160323, + [SMALL_STATE(3178)] = 160357, + [SMALL_STATE(3179)] = 160391, + [SMALL_STATE(3180)] = 160425, + [SMALL_STATE(3181)] = 160447, + [SMALL_STATE(3182)] = 160481, + [SMALL_STATE(3183)] = 160503, + [SMALL_STATE(3184)] = 160525, + [SMALL_STATE(3185)] = 160559, + [SMALL_STATE(3186)] = 160581, + [SMALL_STATE(3187)] = 160615, + [SMALL_STATE(3188)] = 160649, + [SMALL_STATE(3189)] = 160671, + [SMALL_STATE(3190)] = 160705, + [SMALL_STATE(3191)] = 160739, + [SMALL_STATE(3192)] = 160761, + [SMALL_STATE(3193)] = 160783, + [SMALL_STATE(3194)] = 160805, + [SMALL_STATE(3195)] = 160827, + [SMALL_STATE(3196)] = 160849, + [SMALL_STATE(3197)] = 160883, + [SMALL_STATE(3198)] = 160917, + [SMALL_STATE(3199)] = 160951, + [SMALL_STATE(3200)] = 160973, + [SMALL_STATE(3201)] = 160995, + [SMALL_STATE(3202)] = 161029, + [SMALL_STATE(3203)] = 161063, + [SMALL_STATE(3204)] = 161085, + [SMALL_STATE(3205)] = 161119, + [SMALL_STATE(3206)] = 161153, + [SMALL_STATE(3207)] = 161187, + [SMALL_STATE(3208)] = 161221, + [SMALL_STATE(3209)] = 161255, + [SMALL_STATE(3210)] = 161289, + [SMALL_STATE(3211)] = 161311, + [SMALL_STATE(3212)] = 161333, + [SMALL_STATE(3213)] = 161367, + [SMALL_STATE(3214)] = 161401, + [SMALL_STATE(3215)] = 161435, + [SMALL_STATE(3216)] = 161469, + [SMALL_STATE(3217)] = 161503, + [SMALL_STATE(3218)] = 161537, + [SMALL_STATE(3219)] = 161571, + [SMALL_STATE(3220)] = 161605, + [SMALL_STATE(3221)] = 161639, + [SMALL_STATE(3222)] = 161661, + [SMALL_STATE(3223)] = 161695, + [SMALL_STATE(3224)] = 161717, + [SMALL_STATE(3225)] = 161739, + [SMALL_STATE(3226)] = 161761, + [SMALL_STATE(3227)] = 161783, + [SMALL_STATE(3228)] = 161817, + [SMALL_STATE(3229)] = 161851, + [SMALL_STATE(3230)] = 161885, + [SMALL_STATE(3231)] = 161907, + [SMALL_STATE(3232)] = 161941, + [SMALL_STATE(3233)] = 161963, + [SMALL_STATE(3234)] = 161988, + [SMALL_STATE(3235)] = 162017, + [SMALL_STATE(3236)] = 162046, + [SMALL_STATE(3237)] = 162072, + [SMALL_STATE(3238)] = 162096, + [SMALL_STATE(3239)] = 162122, + [SMALL_STATE(3240)] = 162148, + [SMALL_STATE(3241)] = 162172, + [SMALL_STATE(3242)] = 162198, + [SMALL_STATE(3243)] = 162222, + [SMALL_STATE(3244)] = 162246, + [SMALL_STATE(3245)] = 162272, + [SMALL_STATE(3246)] = 162296, + [SMALL_STATE(3247)] = 162320, + [SMALL_STATE(3248)] = 162346, + [SMALL_STATE(3249)] = 162370, + [SMALL_STATE(3250)] = 162394, + [SMALL_STATE(3251)] = 162420, + [SMALL_STATE(3252)] = 162444, + [SMALL_STATE(3253)] = 162468, + [SMALL_STATE(3254)] = 162494, + [SMALL_STATE(3255)] = 162518, + [SMALL_STATE(3256)] = 162544, + [SMALL_STATE(3257)] = 162568, + [SMALL_STATE(3258)] = 162592, + [SMALL_STATE(3259)] = 162618, + [SMALL_STATE(3260)] = 162642, + [SMALL_STATE(3261)] = 162666, + [SMALL_STATE(3262)] = 162690, + [SMALL_STATE(3263)] = 162714, + [SMALL_STATE(3264)] = 162738, + [SMALL_STATE(3265)] = 162762, + [SMALL_STATE(3266)] = 162788, + [SMALL_STATE(3267)] = 162814, + [SMALL_STATE(3268)] = 162838, + [SMALL_STATE(3269)] = 162862, + [SMALL_STATE(3270)] = 162886, + [SMALL_STATE(3271)] = 162912, + [SMALL_STATE(3272)] = 162936, + [SMALL_STATE(3273)] = 162960, + [SMALL_STATE(3274)] = 162984, + [SMALL_STATE(3275)] = 163008, + [SMALL_STATE(3276)] = 163032, + [SMALL_STATE(3277)] = 163056, + [SMALL_STATE(3278)] = 163082, + [SMALL_STATE(3279)] = 163106, + [SMALL_STATE(3280)] = 163130, + [SMALL_STATE(3281)] = 163156, + [SMALL_STATE(3282)] = 163182, + [SMALL_STATE(3283)] = 163208, + [SMALL_STATE(3284)] = 163232, + [SMALL_STATE(3285)] = 163256, + [SMALL_STATE(3286)] = 163280, + [SMALL_STATE(3287)] = 163304, + [SMALL_STATE(3288)] = 163330, + [SMALL_STATE(3289)] = 163354, + [SMALL_STATE(3290)] = 163378, + [SMALL_STATE(3291)] = 163402, + [SMALL_STATE(3292)] = 163426, + [SMALL_STATE(3293)] = 163450, + [SMALL_STATE(3294)] = 163474, + [SMALL_STATE(3295)] = 163500, + [SMALL_STATE(3296)] = 163526, + [SMALL_STATE(3297)] = 163550, + [SMALL_STATE(3298)] = 163574, + [SMALL_STATE(3299)] = 163598, + [SMALL_STATE(3300)] = 163622, + [SMALL_STATE(3301)] = 163648, + [SMALL_STATE(3302)] = 163672, + [SMALL_STATE(3303)] = 163696, + [SMALL_STATE(3304)] = 163720, + [SMALL_STATE(3305)] = 163744, + [SMALL_STATE(3306)] = 163770, + [SMALL_STATE(3307)] = 163794, + [SMALL_STATE(3308)] = 163818, + [SMALL_STATE(3309)] = 163842, + [SMALL_STATE(3310)] = 163866, + [SMALL_STATE(3311)] = 163890, + [SMALL_STATE(3312)] = 163916, + [SMALL_STATE(3313)] = 163942, + [SMALL_STATE(3314)] = 163966, + [SMALL_STATE(3315)] = 163990, + [SMALL_STATE(3316)] = 164016, + [SMALL_STATE(3317)] = 164040, + [SMALL_STATE(3318)] = 164064, + [SMALL_STATE(3319)] = 164090, + [SMALL_STATE(3320)] = 164114, + [SMALL_STATE(3321)] = 164138, + [SMALL_STATE(3322)] = 164164, + [SMALL_STATE(3323)] = 164188, + [SMALL_STATE(3324)] = 164214, + [SMALL_STATE(3325)] = 164238, + [SMALL_STATE(3326)] = 164262, + [SMALL_STATE(3327)] = 164288, + [SMALL_STATE(3328)] = 164314, + [SMALL_STATE(3329)] = 164340, + [SMALL_STATE(3330)] = 164364, + [SMALL_STATE(3331)] = 164388, + [SMALL_STATE(3332)] = 164414, + [SMALL_STATE(3333)] = 164445, + [SMALL_STATE(3334)] = 164476, + [SMALL_STATE(3335)] = 164507, + [SMALL_STATE(3336)] = 164532, + [SMALL_STATE(3337)] = 164563, + [SMALL_STATE(3338)] = 164594, + [SMALL_STATE(3339)] = 164625, + [SMALL_STATE(3340)] = 164656, + [SMALL_STATE(3341)] = 164687, + [SMALL_STATE(3342)] = 164718, + [SMALL_STATE(3343)] = 164749, + [SMALL_STATE(3344)] = 164780, + [SMALL_STATE(3345)] = 164811, + [SMALL_STATE(3346)] = 164842, + [SMALL_STATE(3347)] = 164873, + [SMALL_STATE(3348)] = 164904, + [SMALL_STATE(3349)] = 164935, + [SMALL_STATE(3350)] = 164966, + [SMALL_STATE(3351)] = 164997, + [SMALL_STATE(3352)] = 165028, + [SMALL_STATE(3353)] = 165059, + [SMALL_STATE(3354)] = 165090, + [SMALL_STATE(3355)] = 165121, + [SMALL_STATE(3356)] = 165152, + [SMALL_STATE(3357)] = 165183, + [SMALL_STATE(3358)] = 165208, + [SMALL_STATE(3359)] = 165239, + [SMALL_STATE(3360)] = 165270, + [SMALL_STATE(3361)] = 165301, + [SMALL_STATE(3362)] = 165332, + [SMALL_STATE(3363)] = 165363, + [SMALL_STATE(3364)] = 165388, + [SMALL_STATE(3365)] = 165419, + [SMALL_STATE(3366)] = 165450, + [SMALL_STATE(3367)] = 165481, + [SMALL_STATE(3368)] = 165512, + [SMALL_STATE(3369)] = 165543, + [SMALL_STATE(3370)] = 165574, + [SMALL_STATE(3371)] = 165605, + [SMALL_STATE(3372)] = 165636, + [SMALL_STATE(3373)] = 165657, + [SMALL_STATE(3374)] = 165688, + [SMALL_STATE(3375)] = 165719, + [SMALL_STATE(3376)] = 165750, + [SMALL_STATE(3377)] = 165781, + [SMALL_STATE(3378)] = 165812, + [SMALL_STATE(3379)] = 165843, + [SMALL_STATE(3380)] = 165874, + [SMALL_STATE(3381)] = 165905, + [SMALL_STATE(3382)] = 165936, + [SMALL_STATE(3383)] = 165967, + [SMALL_STATE(3384)] = 165998, + [SMALL_STATE(3385)] = 166029, + [SMALL_STATE(3386)] = 166060, + [SMALL_STATE(3387)] = 166091, + [SMALL_STATE(3388)] = 166122, + [SMALL_STATE(3389)] = 166153, + [SMALL_STATE(3390)] = 166184, + [SMALL_STATE(3391)] = 166209, + [SMALL_STATE(3392)] = 166240, + [SMALL_STATE(3393)] = 166271, + [SMALL_STATE(3394)] = 166302, + [SMALL_STATE(3395)] = 166333, + [SMALL_STATE(3396)] = 166364, + [SMALL_STATE(3397)] = 166395, + [SMALL_STATE(3398)] = 166426, + [SMALL_STATE(3399)] = 166457, + [SMALL_STATE(3400)] = 166488, + [SMALL_STATE(3401)] = 166519, + [SMALL_STATE(3402)] = 166550, + [SMALL_STATE(3403)] = 166578, + [SMALL_STATE(3404)] = 166606, + [SMALL_STATE(3405)] = 166634, + [SMALL_STATE(3406)] = 166654, + [SMALL_STATE(3407)] = 166682, + [SMALL_STATE(3408)] = 166710, + [SMALL_STATE(3409)] = 166738, + [SMALL_STATE(3410)] = 166766, + [SMALL_STATE(3411)] = 166790, + [SMALL_STATE(3412)] = 166814, + [SMALL_STATE(3413)] = 166838, + [SMALL_STATE(3414)] = 166862, + [SMALL_STATE(3415)] = 166886, + [SMALL_STATE(3416)] = 166902, + [SMALL_STATE(3417)] = 166926, + [SMALL_STATE(3418)] = 166950, + [SMALL_STATE(3419)] = 166974, + [SMALL_STATE(3420)] = 166998, + [SMALL_STATE(3421)] = 167018, + [SMALL_STATE(3422)] = 167033, + [SMALL_STATE(3423)] = 167048, + [SMALL_STATE(3424)] = 167063, + [SMALL_STATE(3425)] = 167078, + [SMALL_STATE(3426)] = 167093, + [SMALL_STATE(3427)] = 167108, + [SMALL_STATE(3428)] = 167129, + [SMALL_STATE(3429)] = 167144, + [SMALL_STATE(3430)] = 167159, + [SMALL_STATE(3431)] = 167180, + [SMALL_STATE(3432)] = 167201, + [SMALL_STATE(3433)] = 167216, + [SMALL_STATE(3434)] = 167231, + [SMALL_STATE(3435)] = 167246, + [SMALL_STATE(3436)] = 167261, + [SMALL_STATE(3437)] = 167276, + [SMALL_STATE(3438)] = 167295, + [SMALL_STATE(3439)] = 167310, + [SMALL_STATE(3440)] = 167325, + [SMALL_STATE(3441)] = 167340, + [SMALL_STATE(3442)] = 167359, + [SMALL_STATE(3443)] = 167378, + [SMALL_STATE(3444)] = 167393, + [SMALL_STATE(3445)] = 167408, + [SMALL_STATE(3446)] = 167425, + [SMALL_STATE(3447)] = 167446, + [SMALL_STATE(3448)] = 167467, + [SMALL_STATE(3449)] = 167488, + [SMALL_STATE(3450)] = 167509, + [SMALL_STATE(3451)] = 167530, + [SMALL_STATE(3452)] = 167545, + [SMALL_STATE(3453)] = 167560, + [SMALL_STATE(3454)] = 167577, + [SMALL_STATE(3455)] = 167592, + [SMALL_STATE(3456)] = 167613, + [SMALL_STATE(3457)] = 167632, + [SMALL_STATE(3458)] = 167651, + [SMALL_STATE(3459)] = 167666, + [SMALL_STATE(3460)] = 167681, + [SMALL_STATE(3461)] = 167696, + [SMALL_STATE(3462)] = 167711, + [SMALL_STATE(3463)] = 167726, + [SMALL_STATE(3464)] = 167738, + [SMALL_STATE(3465)] = 167756, + [SMALL_STATE(3466)] = 167770, + [SMALL_STATE(3467)] = 167784, + [SMALL_STATE(3468)] = 167798, + [SMALL_STATE(3469)] = 167812, + [SMALL_STATE(3470)] = 167826, + [SMALL_STATE(3471)] = 167840, + [SMALL_STATE(3472)] = 167860, + [SMALL_STATE(3473)] = 167874, + [SMALL_STATE(3474)] = 167888, + [SMALL_STATE(3475)] = 167902, + [SMALL_STATE(3476)] = 167916, + [SMALL_STATE(3477)] = 167936, + [SMALL_STATE(3478)] = 167956, + [SMALL_STATE(3479)] = 167968, + [SMALL_STATE(3480)] = 167982, + [SMALL_STATE(3481)] = 167996, + [SMALL_STATE(3482)] = 168010, + [SMALL_STATE(3483)] = 168024, + [SMALL_STATE(3484)] = 168038, + [SMALL_STATE(3485)] = 168052, + [SMALL_STATE(3486)] = 168066, + [SMALL_STATE(3487)] = 168080, + [SMALL_STATE(3488)] = 168094, + [SMALL_STATE(3489)] = 168108, + [SMALL_STATE(3490)] = 168122, + [SMALL_STATE(3491)] = 168138, + [SMALL_STATE(3492)] = 168152, + [SMALL_STATE(3493)] = 168172, + [SMALL_STATE(3494)] = 168192, + [SMALL_STATE(3495)] = 168206, + [SMALL_STATE(3496)] = 168220, + [SMALL_STATE(3497)] = 168234, + [SMALL_STATE(3498)] = 168248, + [SMALL_STATE(3499)] = 168262, + [SMALL_STATE(3500)] = 168276, + [SMALL_STATE(3501)] = 168290, + [SMALL_STATE(3502)] = 168306, + [SMALL_STATE(3503)] = 168320, + [SMALL_STATE(3504)] = 168334, + [SMALL_STATE(3505)] = 168348, + [SMALL_STATE(3506)] = 168362, + [SMALL_STATE(3507)] = 168376, + [SMALL_STATE(3508)] = 168394, + [SMALL_STATE(3509)] = 168408, + [SMALL_STATE(3510)] = 168426, + [SMALL_STATE(3511)] = 168440, + [SMALL_STATE(3512)] = 168454, + [SMALL_STATE(3513)] = 168468, + [SMALL_STATE(3514)] = 168482, + [SMALL_STATE(3515)] = 168496, + [SMALL_STATE(3516)] = 168516, + [SMALL_STATE(3517)] = 168530, + [SMALL_STATE(3518)] = 168544, + [SMALL_STATE(3519)] = 168558, + [SMALL_STATE(3520)] = 168572, + [SMALL_STATE(3521)] = 168586, + [SMALL_STATE(3522)] = 168600, + [SMALL_STATE(3523)] = 168614, + [SMALL_STATE(3524)] = 168628, + [SMALL_STATE(3525)] = 168642, + [SMALL_STATE(3526)] = 168656, + [SMALL_STATE(3527)] = 168670, + [SMALL_STATE(3528)] = 168684, + [SMALL_STATE(3529)] = 168702, + [SMALL_STATE(3530)] = 168720, + [SMALL_STATE(3531)] = 168737, + [SMALL_STATE(3532)] = 168754, + [SMALL_STATE(3533)] = 168773, + [SMALL_STATE(3534)] = 168788, + [SMALL_STATE(3535)] = 168807, + [SMALL_STATE(3536)] = 168822, + [SMALL_STATE(3537)] = 168841, + [SMALL_STATE(3538)] = 168860, + [SMALL_STATE(3539)] = 168879, + [SMALL_STATE(3540)] = 168896, + [SMALL_STATE(3541)] = 168913, + [SMALL_STATE(3542)] = 168930, + [SMALL_STATE(3543)] = 168949, + [SMALL_STATE(3544)] = 168964, + [SMALL_STATE(3545)] = 168983, + [SMALL_STATE(3546)] = 169000, + [SMALL_STATE(3547)] = 169017, + [SMALL_STATE(3548)] = 169032, + [SMALL_STATE(3549)] = 169047, + [SMALL_STATE(3550)] = 169064, + [SMALL_STATE(3551)] = 169081, + [SMALL_STATE(3552)] = 169094, + [SMALL_STATE(3553)] = 169109, + [SMALL_STATE(3554)] = 169126, + [SMALL_STATE(3555)] = 169143, + [SMALL_STATE(3556)] = 169160, + [SMALL_STATE(3557)] = 169177, + [SMALL_STATE(3558)] = 169196, + [SMALL_STATE(3559)] = 169209, + [SMALL_STATE(3560)] = 169222, + [SMALL_STATE(3561)] = 169237, + [SMALL_STATE(3562)] = 169252, + [SMALL_STATE(3563)] = 169269, + [SMALL_STATE(3564)] = 169284, + [SMALL_STATE(3565)] = 169303, + [SMALL_STATE(3566)] = 169320, + [SMALL_STATE(3567)] = 169337, + [SMALL_STATE(3568)] = 169354, + [SMALL_STATE(3569)] = 169369, + [SMALL_STATE(3570)] = 169386, + [SMALL_STATE(3571)] = 169401, + [SMALL_STATE(3572)] = 169418, + [SMALL_STATE(3573)] = 169435, + [SMALL_STATE(3574)] = 169452, + [SMALL_STATE(3575)] = 169467, + [SMALL_STATE(3576)] = 169484, + [SMALL_STATE(3577)] = 169499, + [SMALL_STATE(3578)] = 169516, + [SMALL_STATE(3579)] = 169533, + [SMALL_STATE(3580)] = 169548, + [SMALL_STATE(3581)] = 169567, + [SMALL_STATE(3582)] = 169586, + [SMALL_STATE(3583)] = 169605, + [SMALL_STATE(3584)] = 169617, + [SMALL_STATE(3585)] = 169631, + [SMALL_STATE(3586)] = 169645, + [SMALL_STATE(3587)] = 169659, + [SMALL_STATE(3588)] = 169673, + [SMALL_STATE(3589)] = 169687, + [SMALL_STATE(3590)] = 169703, + [SMALL_STATE(3591)] = 169715, + [SMALL_STATE(3592)] = 169731, + [SMALL_STATE(3593)] = 169745, + [SMALL_STATE(3594)] = 169761, + [SMALL_STATE(3595)] = 169775, + [SMALL_STATE(3596)] = 169789, + [SMALL_STATE(3597)] = 169805, + [SMALL_STATE(3598)] = 169819, + [SMALL_STATE(3599)] = 169833, + [SMALL_STATE(3600)] = 169847, + [SMALL_STATE(3601)] = 169863, + [SMALL_STATE(3602)] = 169877, + [SMALL_STATE(3603)] = 169891, + [SMALL_STATE(3604)] = 169905, + [SMALL_STATE(3605)] = 169919, + [SMALL_STATE(3606)] = 169935, + [SMALL_STATE(3607)] = 169949, + [SMALL_STATE(3608)] = 169963, + [SMALL_STATE(3609)] = 169979, + [SMALL_STATE(3610)] = 169995, + [SMALL_STATE(3611)] = 170009, + [SMALL_STATE(3612)] = 170023, + [SMALL_STATE(3613)] = 170039, + [SMALL_STATE(3614)] = 170053, + [SMALL_STATE(3615)] = 170067, + [SMALL_STATE(3616)] = 170081, + [SMALL_STATE(3617)] = 170095, + [SMALL_STATE(3618)] = 170107, + [SMALL_STATE(3619)] = 170119, + [SMALL_STATE(3620)] = 170133, + [SMALL_STATE(3621)] = 170145, + [SMALL_STATE(3622)] = 170161, + [SMALL_STATE(3623)] = 170175, + [SMALL_STATE(3624)] = 170189, + [SMALL_STATE(3625)] = 170201, + [SMALL_STATE(3626)] = 170215, + [SMALL_STATE(3627)] = 170229, + [SMALL_STATE(3628)] = 170243, + [SMALL_STATE(3629)] = 170259, + [SMALL_STATE(3630)] = 170273, + [SMALL_STATE(3631)] = 170287, + [SMALL_STATE(3632)] = 170301, + [SMALL_STATE(3633)] = 170315, + [SMALL_STATE(3634)] = 170327, + [SMALL_STATE(3635)] = 170339, + [SMALL_STATE(3636)] = 170353, + [SMALL_STATE(3637)] = 170367, + [SMALL_STATE(3638)] = 170379, + [SMALL_STATE(3639)] = 170392, + [SMALL_STATE(3640)] = 170405, + [SMALL_STATE(3641)] = 170418, + [SMALL_STATE(3642)] = 170431, + [SMALL_STATE(3643)] = 170444, + [SMALL_STATE(3644)] = 170457, + [SMALL_STATE(3645)] = 170470, + [SMALL_STATE(3646)] = 170481, + [SMALL_STATE(3647)] = 170494, + [SMALL_STATE(3648)] = 170507, + [SMALL_STATE(3649)] = 170520, + [SMALL_STATE(3650)] = 170531, + [SMALL_STATE(3651)] = 170544, + [SMALL_STATE(3652)] = 170557, + [SMALL_STATE(3653)] = 170570, + [SMALL_STATE(3654)] = 170583, + [SMALL_STATE(3655)] = 170596, + [SMALL_STATE(3656)] = 170609, + [SMALL_STATE(3657)] = 170622, + [SMALL_STATE(3658)] = 170635, + [SMALL_STATE(3659)] = 170648, + [SMALL_STATE(3660)] = 170661, + [SMALL_STATE(3661)] = 170674, + [SMALL_STATE(3662)] = 170687, + [SMALL_STATE(3663)] = 170700, + [SMALL_STATE(3664)] = 170713, + [SMALL_STATE(3665)] = 170726, + [SMALL_STATE(3666)] = 170739, + [SMALL_STATE(3667)] = 170752, + [SMALL_STATE(3668)] = 170765, + [SMALL_STATE(3669)] = 170778, + [SMALL_STATE(3670)] = 170791, + [SMALL_STATE(3671)] = 170804, + [SMALL_STATE(3672)] = 170817, + [SMALL_STATE(3673)] = 170830, + [SMALL_STATE(3674)] = 170843, + [SMALL_STATE(3675)] = 170856, + [SMALL_STATE(3676)] = 170869, + [SMALL_STATE(3677)] = 170882, + [SMALL_STATE(3678)] = 170895, + [SMALL_STATE(3679)] = 170908, + [SMALL_STATE(3680)] = 170921, + [SMALL_STATE(3681)] = 170934, + [SMALL_STATE(3682)] = 170947, + [SMALL_STATE(3683)] = 170960, + [SMALL_STATE(3684)] = 170973, + [SMALL_STATE(3685)] = 170986, + [SMALL_STATE(3686)] = 170999, + [SMALL_STATE(3687)] = 171012, + [SMALL_STATE(3688)] = 171025, + [SMALL_STATE(3689)] = 171038, + [SMALL_STATE(3690)] = 171051, + [SMALL_STATE(3691)] = 171064, + [SMALL_STATE(3692)] = 171077, + [SMALL_STATE(3693)] = 171090, + [SMALL_STATE(3694)] = 171103, + [SMALL_STATE(3695)] = 171116, + [SMALL_STATE(3696)] = 171127, + [SMALL_STATE(3697)] = 171140, + [SMALL_STATE(3698)] = 171153, + [SMALL_STATE(3699)] = 171164, + [SMALL_STATE(3700)] = 171177, + [SMALL_STATE(3701)] = 171190, + [SMALL_STATE(3702)] = 171203, + [SMALL_STATE(3703)] = 171216, + [SMALL_STATE(3704)] = 171229, + [SMALL_STATE(3705)] = 171242, + [SMALL_STATE(3706)] = 171255, + [SMALL_STATE(3707)] = 171268, + [SMALL_STATE(3708)] = 171279, + [SMALL_STATE(3709)] = 171290, + [SMALL_STATE(3710)] = 171303, + [SMALL_STATE(3711)] = 171316, + [SMALL_STATE(3712)] = 171329, + [SMALL_STATE(3713)] = 171342, + [SMALL_STATE(3714)] = 171355, + [SMALL_STATE(3715)] = 171368, + [SMALL_STATE(3716)] = 171381, + [SMALL_STATE(3717)] = 171394, + [SMALL_STATE(3718)] = 171407, + [SMALL_STATE(3719)] = 171420, + [SMALL_STATE(3720)] = 171433, + [SMALL_STATE(3721)] = 171446, + [SMALL_STATE(3722)] = 171459, + [SMALL_STATE(3723)] = 171472, + [SMALL_STATE(3724)] = 171485, + [SMALL_STATE(3725)] = 171498, + [SMALL_STATE(3726)] = 171511, + [SMALL_STATE(3727)] = 171524, + [SMALL_STATE(3728)] = 171537, + [SMALL_STATE(3729)] = 171550, + [SMALL_STATE(3730)] = 171563, + [SMALL_STATE(3731)] = 171576, + [SMALL_STATE(3732)] = 171589, + [SMALL_STATE(3733)] = 171602, + [SMALL_STATE(3734)] = 171615, + [SMALL_STATE(3735)] = 171628, + [SMALL_STATE(3736)] = 171641, + [SMALL_STATE(3737)] = 171654, + [SMALL_STATE(3738)] = 171667, + [SMALL_STATE(3739)] = 171680, + [SMALL_STATE(3740)] = 171693, + [SMALL_STATE(3741)] = 171706, + [SMALL_STATE(3742)] = 171719, + [SMALL_STATE(3743)] = 171732, + [SMALL_STATE(3744)] = 171745, + [SMALL_STATE(3745)] = 171758, + [SMALL_STATE(3746)] = 171771, + [SMALL_STATE(3747)] = 171784, + [SMALL_STATE(3748)] = 171797, + [SMALL_STATE(3749)] = 171810, + [SMALL_STATE(3750)] = 171823, + [SMALL_STATE(3751)] = 171836, + [SMALL_STATE(3752)] = 171849, + [SMALL_STATE(3753)] = 171862, + [SMALL_STATE(3754)] = 171875, + [SMALL_STATE(3755)] = 171888, + [SMALL_STATE(3756)] = 171901, + [SMALL_STATE(3757)] = 171914, + [SMALL_STATE(3758)] = 171925, + [SMALL_STATE(3759)] = 171938, + [SMALL_STATE(3760)] = 171951, + [SMALL_STATE(3761)] = 171964, + [SMALL_STATE(3762)] = 171977, + [SMALL_STATE(3763)] = 171990, + [SMALL_STATE(3764)] = 172003, + [SMALL_STATE(3765)] = 172016, + [SMALL_STATE(3766)] = 172029, + [SMALL_STATE(3767)] = 172040, + [SMALL_STATE(3768)] = 172053, + [SMALL_STATE(3769)] = 172066, + [SMALL_STATE(3770)] = 172079, + [SMALL_STATE(3771)] = 172092, + [SMALL_STATE(3772)] = 172105, + [SMALL_STATE(3773)] = 172118, + [SMALL_STATE(3774)] = 172131, + [SMALL_STATE(3775)] = 172142, + [SMALL_STATE(3776)] = 172155, + [SMALL_STATE(3777)] = 172168, + [SMALL_STATE(3778)] = 172181, + [SMALL_STATE(3779)] = 172194, + [SMALL_STATE(3780)] = 172205, + [SMALL_STATE(3781)] = 172218, + [SMALL_STATE(3782)] = 172231, + [SMALL_STATE(3783)] = 172244, + [SMALL_STATE(3784)] = 172257, + [SMALL_STATE(3785)] = 172268, + [SMALL_STATE(3786)] = 172281, + [SMALL_STATE(3787)] = 172292, + [SMALL_STATE(3788)] = 172303, + [SMALL_STATE(3789)] = 172316, + [SMALL_STATE(3790)] = 172329, + [SMALL_STATE(3791)] = 172342, + [SMALL_STATE(3792)] = 172355, + [SMALL_STATE(3793)] = 172368, + [SMALL_STATE(3794)] = 172381, + [SMALL_STATE(3795)] = 172394, + [SMALL_STATE(3796)] = 172405, + [SMALL_STATE(3797)] = 172418, + [SMALL_STATE(3798)] = 172431, + [SMALL_STATE(3799)] = 172444, + [SMALL_STATE(3800)] = 172455, + [SMALL_STATE(3801)] = 172468, + [SMALL_STATE(3802)] = 172481, + [SMALL_STATE(3803)] = 172494, + [SMALL_STATE(3804)] = 172507, + [SMALL_STATE(3805)] = 172520, + [SMALL_STATE(3806)] = 172533, + [SMALL_STATE(3807)] = 172546, + [SMALL_STATE(3808)] = 172559, + [SMALL_STATE(3809)] = 172572, + [SMALL_STATE(3810)] = 172585, + [SMALL_STATE(3811)] = 172598, + [SMALL_STATE(3812)] = 172611, + [SMALL_STATE(3813)] = 172624, + [SMALL_STATE(3814)] = 172637, + [SMALL_STATE(3815)] = 172650, + [SMALL_STATE(3816)] = 172663, + [SMALL_STATE(3817)] = 172676, + [SMALL_STATE(3818)] = 172689, + [SMALL_STATE(3819)] = 172702, + [SMALL_STATE(3820)] = 172715, + [SMALL_STATE(3821)] = 172728, + [SMALL_STATE(3822)] = 172741, + [SMALL_STATE(3823)] = 172754, + [SMALL_STATE(3824)] = 172767, + [SMALL_STATE(3825)] = 172780, + [SMALL_STATE(3826)] = 172793, + [SMALL_STATE(3827)] = 172806, + [SMALL_STATE(3828)] = 172819, + [SMALL_STATE(3829)] = 172832, + [SMALL_STATE(3830)] = 172845, + [SMALL_STATE(3831)] = 172858, + [SMALL_STATE(3832)] = 172871, + [SMALL_STATE(3833)] = 172884, + [SMALL_STATE(3834)] = 172897, + [SMALL_STATE(3835)] = 172910, + [SMALL_STATE(3836)] = 172923, + [SMALL_STATE(3837)] = 172936, + [SMALL_STATE(3838)] = 172949, + [SMALL_STATE(3839)] = 172962, + [SMALL_STATE(3840)] = 172975, + [SMALL_STATE(3841)] = 172988, + [SMALL_STATE(3842)] = 173001, + [SMALL_STATE(3843)] = 173014, + [SMALL_STATE(3844)] = 173027, + [SMALL_STATE(3845)] = 173040, + [SMALL_STATE(3846)] = 173053, + [SMALL_STATE(3847)] = 173066, + [SMALL_STATE(3848)] = 173079, + [SMALL_STATE(3849)] = 173092, + [SMALL_STATE(3850)] = 173105, + [SMALL_STATE(3851)] = 173118, + [SMALL_STATE(3852)] = 173131, + [SMALL_STATE(3853)] = 173144, + [SMALL_STATE(3854)] = 173157, + [SMALL_STATE(3855)] = 173170, + [SMALL_STATE(3856)] = 173183, + [SMALL_STATE(3857)] = 173196, + [SMALL_STATE(3858)] = 173207, + [SMALL_STATE(3859)] = 173218, + [SMALL_STATE(3860)] = 173231, + [SMALL_STATE(3861)] = 173244, + [SMALL_STATE(3862)] = 173257, + [SMALL_STATE(3863)] = 173270, + [SMALL_STATE(3864)] = 173283, + [SMALL_STATE(3865)] = 173296, + [SMALL_STATE(3866)] = 173309, + [SMALL_STATE(3867)] = 173322, + [SMALL_STATE(3868)] = 173335, + [SMALL_STATE(3869)] = 173348, + [SMALL_STATE(3870)] = 173361, + [SMALL_STATE(3871)] = 173374, + [SMALL_STATE(3872)] = 173387, + [SMALL_STATE(3873)] = 173400, + [SMALL_STATE(3874)] = 173413, + [SMALL_STATE(3875)] = 173426, + [SMALL_STATE(3876)] = 173439, + [SMALL_STATE(3877)] = 173452, + [SMALL_STATE(3878)] = 173465, + [SMALL_STATE(3879)] = 173478, + [SMALL_STATE(3880)] = 173491, + [SMALL_STATE(3881)] = 173504, + [SMALL_STATE(3882)] = 173517, + [SMALL_STATE(3883)] = 173530, + [SMALL_STATE(3884)] = 173543, + [SMALL_STATE(3885)] = 173556, + [SMALL_STATE(3886)] = 173569, + [SMALL_STATE(3887)] = 173582, + [SMALL_STATE(3888)] = 173593, + [SMALL_STATE(3889)] = 173606, + [SMALL_STATE(3890)] = 173617, + [SMALL_STATE(3891)] = 173630, + [SMALL_STATE(3892)] = 173643, + [SMALL_STATE(3893)] = 173656, + [SMALL_STATE(3894)] = 173669, + [SMALL_STATE(3895)] = 173682, + [SMALL_STATE(3896)] = 173695, + [SMALL_STATE(3897)] = 173708, + [SMALL_STATE(3898)] = 173721, + [SMALL_STATE(3899)] = 173734, + [SMALL_STATE(3900)] = 173747, + [SMALL_STATE(3901)] = 173760, + [SMALL_STATE(3902)] = 173768, + [SMALL_STATE(3903)] = 173776, + [SMALL_STATE(3904)] = 173784, + [SMALL_STATE(3905)] = 173792, + [SMALL_STATE(3906)] = 173800, + [SMALL_STATE(3907)] = 173810, + [SMALL_STATE(3908)] = 173818, + [SMALL_STATE(3909)] = 173828, + [SMALL_STATE(3910)] = 173838, + [SMALL_STATE(3911)] = 173846, + [SMALL_STATE(3912)] = 173854, + [SMALL_STATE(3913)] = 173862, + [SMALL_STATE(3914)] = 173872, + [SMALL_STATE(3915)] = 173880, + [SMALL_STATE(3916)] = 173890, + [SMALL_STATE(3917)] = 173898, + [SMALL_STATE(3918)] = 173908, + [SMALL_STATE(3919)] = 173918, + [SMALL_STATE(3920)] = 173928, + [SMALL_STATE(3921)] = 173936, + [SMALL_STATE(3922)] = 173946, + [SMALL_STATE(3923)] = 173956, + [SMALL_STATE(3924)] = 173964, + [SMALL_STATE(3925)] = 173974, + [SMALL_STATE(3926)] = 173982, + [SMALL_STATE(3927)] = 173992, + [SMALL_STATE(3928)] = 174000, + [SMALL_STATE(3929)] = 174008, + [SMALL_STATE(3930)] = 174018, + [SMALL_STATE(3931)] = 174028, + [SMALL_STATE(3932)] = 174036, + [SMALL_STATE(3933)] = 174046, + [SMALL_STATE(3934)] = 174054, + [SMALL_STATE(3935)] = 174064, + [SMALL_STATE(3936)] = 174074, + [SMALL_STATE(3937)] = 174082, + [SMALL_STATE(3938)] = 174092, + [SMALL_STATE(3939)] = 174102, + [SMALL_STATE(3940)] = 174110, + [SMALL_STATE(3941)] = 174120, + [SMALL_STATE(3942)] = 174128, + [SMALL_STATE(3943)] = 174138, + [SMALL_STATE(3944)] = 174148, + [SMALL_STATE(3945)] = 174156, + [SMALL_STATE(3946)] = 174164, + [SMALL_STATE(3947)] = 174172, + [SMALL_STATE(3948)] = 174180, + [SMALL_STATE(3949)] = 174190, + [SMALL_STATE(3950)] = 174198, + [SMALL_STATE(3951)] = 174208, + [SMALL_STATE(3952)] = 174218, + [SMALL_STATE(3953)] = 174228, + [SMALL_STATE(3954)] = 174238, + [SMALL_STATE(3955)] = 174248, + [SMALL_STATE(3956)] = 174256, + [SMALL_STATE(3957)] = 174266, + [SMALL_STATE(3958)] = 174274, + [SMALL_STATE(3959)] = 174282, + [SMALL_STATE(3960)] = 174292, + [SMALL_STATE(3961)] = 174300, + [SMALL_STATE(3962)] = 174308, + [SMALL_STATE(3963)] = 174318, + [SMALL_STATE(3964)] = 174328, + [SMALL_STATE(3965)] = 174338, + [SMALL_STATE(3966)] = 174346, + [SMALL_STATE(3967)] = 174354, + [SMALL_STATE(3968)] = 174362, + [SMALL_STATE(3969)] = 174370, + [SMALL_STATE(3970)] = 174380, + [SMALL_STATE(3971)] = 174390, + [SMALL_STATE(3972)] = 174398, + [SMALL_STATE(3973)] = 174408, + [SMALL_STATE(3974)] = 174418, + [SMALL_STATE(3975)] = 174426, + [SMALL_STATE(3976)] = 174436, + [SMALL_STATE(3977)] = 174446, + [SMALL_STATE(3978)] = 174454, + [SMALL_STATE(3979)] = 174464, + [SMALL_STATE(3980)] = 174474, + [SMALL_STATE(3981)] = 174482, + [SMALL_STATE(3982)] = 174492, + [SMALL_STATE(3983)] = 174500, + [SMALL_STATE(3984)] = 174508, + [SMALL_STATE(3985)] = 174516, + [SMALL_STATE(3986)] = 174524, + [SMALL_STATE(3987)] = 174534, + [SMALL_STATE(3988)] = 174544, + [SMALL_STATE(3989)] = 174552, + [SMALL_STATE(3990)] = 174562, + [SMALL_STATE(3991)] = 174572, + [SMALL_STATE(3992)] = 174582, + [SMALL_STATE(3993)] = 174590, + [SMALL_STATE(3994)] = 174600, + [SMALL_STATE(3995)] = 174610, + [SMALL_STATE(3996)] = 174620, + [SMALL_STATE(3997)] = 174628, + [SMALL_STATE(3998)] = 174638, + [SMALL_STATE(3999)] = 174648, + [SMALL_STATE(4000)] = 174658, + [SMALL_STATE(4001)] = 174666, + [SMALL_STATE(4002)] = 174676, + [SMALL_STATE(4003)] = 174686, + [SMALL_STATE(4004)] = 174694, + [SMALL_STATE(4005)] = 174704, + [SMALL_STATE(4006)] = 174714, + [SMALL_STATE(4007)] = 174724, + [SMALL_STATE(4008)] = 174734, + [SMALL_STATE(4009)] = 174744, + [SMALL_STATE(4010)] = 174754, + [SMALL_STATE(4011)] = 174762, + [SMALL_STATE(4012)] = 174772, + [SMALL_STATE(4013)] = 174780, + [SMALL_STATE(4014)] = 174790, + [SMALL_STATE(4015)] = 174800, + [SMALL_STATE(4016)] = 174808, + [SMALL_STATE(4017)] = 174816, + [SMALL_STATE(4018)] = 174826, + [SMALL_STATE(4019)] = 174836, + [SMALL_STATE(4020)] = 174844, + [SMALL_STATE(4021)] = 174854, + [SMALL_STATE(4022)] = 174862, + [SMALL_STATE(4023)] = 174870, + [SMALL_STATE(4024)] = 174880, + [SMALL_STATE(4025)] = 174888, + [SMALL_STATE(4026)] = 174898, + [SMALL_STATE(4027)] = 174906, + [SMALL_STATE(4028)] = 174914, + [SMALL_STATE(4029)] = 174924, + [SMALL_STATE(4030)] = 174934, + [SMALL_STATE(4031)] = 174942, + [SMALL_STATE(4032)] = 174950, + [SMALL_STATE(4033)] = 174958, + [SMALL_STATE(4034)] = 174968, + [SMALL_STATE(4035)] = 174978, + [SMALL_STATE(4036)] = 174988, + [SMALL_STATE(4037)] = 174998, + [SMALL_STATE(4038)] = 175008, + [SMALL_STATE(4039)] = 175016, + [SMALL_STATE(4040)] = 175024, + [SMALL_STATE(4041)] = 175034, + [SMALL_STATE(4042)] = 175042, + [SMALL_STATE(4043)] = 175052, + [SMALL_STATE(4044)] = 175060, + [SMALL_STATE(4045)] = 175068, + [SMALL_STATE(4046)] = 175078, + [SMALL_STATE(4047)] = 175088, + [SMALL_STATE(4048)] = 175096, + [SMALL_STATE(4049)] = 175104, + [SMALL_STATE(4050)] = 175112, + [SMALL_STATE(4051)] = 175120, + [SMALL_STATE(4052)] = 175128, + [SMALL_STATE(4053)] = 175136, + [SMALL_STATE(4054)] = 175146, + [SMALL_STATE(4055)] = 175156, + [SMALL_STATE(4056)] = 175166, + [SMALL_STATE(4057)] = 175173, + [SMALL_STATE(4058)] = 175180, + [SMALL_STATE(4059)] = 175187, + [SMALL_STATE(4060)] = 175194, + [SMALL_STATE(4061)] = 175201, + [SMALL_STATE(4062)] = 175208, + [SMALL_STATE(4063)] = 175215, + [SMALL_STATE(4064)] = 175222, + [SMALL_STATE(4065)] = 175229, + [SMALL_STATE(4066)] = 175236, + [SMALL_STATE(4067)] = 175243, + [SMALL_STATE(4068)] = 175250, + [SMALL_STATE(4069)] = 175257, + [SMALL_STATE(4070)] = 175264, + [SMALL_STATE(4071)] = 175271, + [SMALL_STATE(4072)] = 175278, + [SMALL_STATE(4073)] = 175285, + [SMALL_STATE(4074)] = 175292, + [SMALL_STATE(4075)] = 175299, + [SMALL_STATE(4076)] = 175306, + [SMALL_STATE(4077)] = 175313, + [SMALL_STATE(4078)] = 175320, + [SMALL_STATE(4079)] = 175327, + [SMALL_STATE(4080)] = 175334, + [SMALL_STATE(4081)] = 175341, + [SMALL_STATE(4082)] = 175348, + [SMALL_STATE(4083)] = 175355, + [SMALL_STATE(4084)] = 175362, + [SMALL_STATE(4085)] = 175369, + [SMALL_STATE(4086)] = 175376, + [SMALL_STATE(4087)] = 175383, + [SMALL_STATE(4088)] = 175390, + [SMALL_STATE(4089)] = 175397, + [SMALL_STATE(4090)] = 175404, + [SMALL_STATE(4091)] = 175411, + [SMALL_STATE(4092)] = 175418, + [SMALL_STATE(4093)] = 175425, + [SMALL_STATE(4094)] = 175432, + [SMALL_STATE(4095)] = 175439, + [SMALL_STATE(4096)] = 175446, + [SMALL_STATE(4097)] = 175453, + [SMALL_STATE(4098)] = 175460, + [SMALL_STATE(4099)] = 175467, + [SMALL_STATE(4100)] = 175474, + [SMALL_STATE(4101)] = 175481, + [SMALL_STATE(4102)] = 175488, + [SMALL_STATE(4103)] = 175495, + [SMALL_STATE(4104)] = 175502, + [SMALL_STATE(4105)] = 175509, + [SMALL_STATE(4106)] = 175516, + [SMALL_STATE(4107)] = 175523, + [SMALL_STATE(4108)] = 175530, + [SMALL_STATE(4109)] = 175537, + [SMALL_STATE(4110)] = 175544, + [SMALL_STATE(4111)] = 175551, + [SMALL_STATE(4112)] = 175558, + [SMALL_STATE(4113)] = 175565, + [SMALL_STATE(4114)] = 175572, + [SMALL_STATE(4115)] = 175579, + [SMALL_STATE(4116)] = 175586, + [SMALL_STATE(4117)] = 175593, + [SMALL_STATE(4118)] = 175600, + [SMALL_STATE(4119)] = 175607, + [SMALL_STATE(4120)] = 175614, + [SMALL_STATE(4121)] = 175621, + [SMALL_STATE(4122)] = 175628, + [SMALL_STATE(4123)] = 175635, + [SMALL_STATE(4124)] = 175642, + [SMALL_STATE(4125)] = 175649, + [SMALL_STATE(4126)] = 175656, + [SMALL_STATE(4127)] = 175663, + [SMALL_STATE(4128)] = 175670, + [SMALL_STATE(4129)] = 175677, + [SMALL_STATE(4130)] = 175684, + [SMALL_STATE(4131)] = 175691, + [SMALL_STATE(4132)] = 175698, + [SMALL_STATE(4133)] = 175705, + [SMALL_STATE(4134)] = 175712, + [SMALL_STATE(4135)] = 175719, + [SMALL_STATE(4136)] = 175726, + [SMALL_STATE(4137)] = 175733, + [SMALL_STATE(4138)] = 175740, + [SMALL_STATE(4139)] = 175747, + [SMALL_STATE(4140)] = 175754, + [SMALL_STATE(4141)] = 175761, + [SMALL_STATE(4142)] = 175768, + [SMALL_STATE(4143)] = 175775, + [SMALL_STATE(4144)] = 175782, + [SMALL_STATE(4145)] = 175789, + [SMALL_STATE(4146)] = 175796, + [SMALL_STATE(4147)] = 175803, + [SMALL_STATE(4148)] = 175810, + [SMALL_STATE(4149)] = 175817, + [SMALL_STATE(4150)] = 175824, + [SMALL_STATE(4151)] = 175831, + [SMALL_STATE(4152)] = 175838, + [SMALL_STATE(4153)] = 175845, + [SMALL_STATE(4154)] = 175852, + [SMALL_STATE(4155)] = 175859, + [SMALL_STATE(4156)] = 175866, + [SMALL_STATE(4157)] = 175873, + [SMALL_STATE(4158)] = 175880, + [SMALL_STATE(4159)] = 175887, + [SMALL_STATE(4160)] = 175894, + [SMALL_STATE(4161)] = 175901, + [SMALL_STATE(4162)] = 175908, + [SMALL_STATE(4163)] = 175915, + [SMALL_STATE(4164)] = 175922, + [SMALL_STATE(4165)] = 175929, + [SMALL_STATE(4166)] = 175936, + [SMALL_STATE(4167)] = 175943, + [SMALL_STATE(4168)] = 175950, + [SMALL_STATE(4169)] = 175957, + [SMALL_STATE(4170)] = 175964, + [SMALL_STATE(4171)] = 175971, + [SMALL_STATE(4172)] = 175978, + [SMALL_STATE(4173)] = 175985, + [SMALL_STATE(4174)] = 175992, + [SMALL_STATE(4175)] = 175999, + [SMALL_STATE(4176)] = 176006, + [SMALL_STATE(4177)] = 176013, + [SMALL_STATE(4178)] = 176020, + [SMALL_STATE(4179)] = 176027, + [SMALL_STATE(4180)] = 176034, + [SMALL_STATE(4181)] = 176041, + [SMALL_STATE(4182)] = 176048, + [SMALL_STATE(4183)] = 176055, + [SMALL_STATE(4184)] = 176062, + [SMALL_STATE(4185)] = 176069, + [SMALL_STATE(4186)] = 176076, + [SMALL_STATE(4187)] = 176083, + [SMALL_STATE(4188)] = 176090, + [SMALL_STATE(4189)] = 176097, + [SMALL_STATE(4190)] = 176104, + [SMALL_STATE(4191)] = 176111, + [SMALL_STATE(4192)] = 176118, + [SMALL_STATE(4193)] = 176125, + [SMALL_STATE(4194)] = 176132, + [SMALL_STATE(4195)] = 176139, + [SMALL_STATE(4196)] = 176146, + [SMALL_STATE(4197)] = 176153, + [SMALL_STATE(4198)] = 176160, + [SMALL_STATE(4199)] = 176167, + [SMALL_STATE(4200)] = 176174, + [SMALL_STATE(4201)] = 176181, + [SMALL_STATE(4202)] = 176188, + [SMALL_STATE(4203)] = 176195, + [SMALL_STATE(4204)] = 176202, + [SMALL_STATE(4205)] = 176209, + [SMALL_STATE(4206)] = 176216, + [SMALL_STATE(4207)] = 176223, + [SMALL_STATE(4208)] = 176230, + [SMALL_STATE(4209)] = 176237, + [SMALL_STATE(4210)] = 176244, + [SMALL_STATE(4211)] = 176251, + [SMALL_STATE(4212)] = 176258, + [SMALL_STATE(4213)] = 176265, + [SMALL_STATE(4214)] = 176272, + [SMALL_STATE(4215)] = 176279, + [SMALL_STATE(4216)] = 176286, + [SMALL_STATE(4217)] = 176293, + [SMALL_STATE(4218)] = 176300, + [SMALL_STATE(4219)] = 176307, + [SMALL_STATE(4220)] = 176314, + [SMALL_STATE(4221)] = 176321, + [SMALL_STATE(4222)] = 176328, + [SMALL_STATE(4223)] = 176335, + [SMALL_STATE(4224)] = 176342, + [SMALL_STATE(4225)] = 176349, + [SMALL_STATE(4226)] = 176356, + [SMALL_STATE(4227)] = 176363, + [SMALL_STATE(4228)] = 176370, + [SMALL_STATE(4229)] = 176377, + [SMALL_STATE(4230)] = 176384, + [SMALL_STATE(4231)] = 176391, + [SMALL_STATE(4232)] = 176398, + [SMALL_STATE(4233)] = 176405, + [SMALL_STATE(4234)] = 176412, + [SMALL_STATE(4235)] = 176419, + [SMALL_STATE(4236)] = 176426, + [SMALL_STATE(4237)] = 176433, + [SMALL_STATE(4238)] = 176440, + [SMALL_STATE(4239)] = 176447, + [SMALL_STATE(4240)] = 176454, + [SMALL_STATE(4241)] = 176461, + [SMALL_STATE(4242)] = 176468, + [SMALL_STATE(4243)] = 176475, + [SMALL_STATE(4244)] = 176482, + [SMALL_STATE(4245)] = 176489, + [SMALL_STATE(4246)] = 176496, + [SMALL_STATE(4247)] = 176503, + [SMALL_STATE(4248)] = 176510, + [SMALL_STATE(4249)] = 176517, + [SMALL_STATE(4250)] = 176524, + [SMALL_STATE(4251)] = 176531, + [SMALL_STATE(4252)] = 176538, + [SMALL_STATE(4253)] = 176545, + [SMALL_STATE(4254)] = 176552, + [SMALL_STATE(4255)] = 176559, + [SMALL_STATE(4256)] = 176566, + [SMALL_STATE(4257)] = 176573, + [SMALL_STATE(4258)] = 176580, + [SMALL_STATE(4259)] = 176587, + [SMALL_STATE(4260)] = 176594, + [SMALL_STATE(4261)] = 176601, + [SMALL_STATE(4262)] = 176608, + [SMALL_STATE(4263)] = 176615, + [SMALL_STATE(4264)] = 176622, + [SMALL_STATE(4265)] = 176629, + [SMALL_STATE(4266)] = 176636, + [SMALL_STATE(4267)] = 176643, + [SMALL_STATE(4268)] = 176650, + [SMALL_STATE(4269)] = 176657, + [SMALL_STATE(4270)] = 176664, + [SMALL_STATE(4271)] = 176671, + [SMALL_STATE(4272)] = 176678, + [SMALL_STATE(4273)] = 176685, + [SMALL_STATE(4274)] = 176692, + [SMALL_STATE(4275)] = 176699, + [SMALL_STATE(4276)] = 176706, + [SMALL_STATE(4277)] = 176713, + [SMALL_STATE(4278)] = 176720, + [SMALL_STATE(4279)] = 176727, + [SMALL_STATE(4280)] = 176734, + [SMALL_STATE(4281)] = 176741, + [SMALL_STATE(4282)] = 176748, + [SMALL_STATE(4283)] = 176755, + [SMALL_STATE(4284)] = 176762, + [SMALL_STATE(4285)] = 176769, + [SMALL_STATE(4286)] = 176776, + [SMALL_STATE(4287)] = 176783, + [SMALL_STATE(4288)] = 176790, + [SMALL_STATE(4289)] = 176797, + [SMALL_STATE(4290)] = 176804, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -181533,4814 +181864,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(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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), [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), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), [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), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), [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), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), [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), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), [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), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), [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), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), [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), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), [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), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 33), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 46), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 42), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 57), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), [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), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 27), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 28), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 34), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), [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), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(605), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3930), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4254), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2238), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(204), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(193), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2800), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(135), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4079), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(154), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(423), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2239), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2240), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(329), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(390), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2736), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2736), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(94), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3326), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1207), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3400), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1450), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1450), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3099), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(96), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(99), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1447), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3415), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3774), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), [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), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), [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), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), [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), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(605), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3930), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4254), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2238), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(204), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(193), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2800), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(135), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4079), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(154), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(423), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2239), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2240), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(329), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(390), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2736), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2736), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(94), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3326), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1207), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3400), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1450), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1450), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3099), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(96), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(99), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1447), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3415), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3774), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), [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), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), [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), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), [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), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), [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), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), [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), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2881), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 5), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 5), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 17), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 17), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2869), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7, .production_id = 29), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7, .production_id = 29), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 29), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 29), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 47), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 47), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 5), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 5), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 29), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 29), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(271), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 5), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 5), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 5), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 5), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 29), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 29), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 36), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 36), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(301), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(477), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(134), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3265), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(480), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3374), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3227), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(127), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(141), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(306), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(471), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3695), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(902), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(90), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3315), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(890), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3347), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3204), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(77), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(93), [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), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(901), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3887), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(457), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2674), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(146), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3277), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(458), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3346), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3212), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(132), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(153), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(456), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 21), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 21), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1345), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(125), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3247), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1209), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3348), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3216), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(128), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(133), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(323), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1464), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3784), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1416), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(188), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3327), + [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1501), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3398), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3141), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(189), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(181), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(324), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1411), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3889), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 10), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 10), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 9), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 9), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(895), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2666), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(97), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3280), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(838), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3392), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3162), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(88), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(98), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(894), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 4), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 4), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 4), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 4), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 4), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 5), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 5), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(824), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(129), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3250), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(777), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3387), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3097), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(105), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(131), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(342), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(825), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1421), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2654), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(187), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3270), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1406), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3362), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3209), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(182), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(177), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1423), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1386), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2621), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(94), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3326), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1207), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3400), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3099), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(96), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(99), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1383), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(997), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(79), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3294), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(979), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3361), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3213), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(118), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(81), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(381), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(998), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1631), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(173), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3236), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1668), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3339), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3196), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(124), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(190), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(392), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1636), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1895), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(136), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3241), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1904), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3355), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3220), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(137), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(138), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(397), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1888), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(483), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2888), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 8), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 8), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2873), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2993), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2940), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1371), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1344), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1268), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2982), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [3434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2892), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2939), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 39), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2953), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [4079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2970), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2978), + [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1785), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2980), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1794), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1801), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [4309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2922), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1861), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2851), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [4348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1874), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1903), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2934), + [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(2259), + [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(1443), + [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(1630), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(1443), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(86), + [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(3238), + [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(2261), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(3384), + [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(2259), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(3110), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(87), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(84), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(2266), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1624), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2979), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2845), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 1), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 1), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1969), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [5142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2066), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2863), + [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2949), + [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2093), + [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2095), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [5175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2065), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [5184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2012), + [5187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2946), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2846), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), [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), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 39), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2152), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2145), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2150), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2156), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), [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), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 23), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 23), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 22), + [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 22), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2977), + [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 23), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 23), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 22), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 22), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 1, .production_id = 1), + [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 1, .production_id = 1), + [5586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2319), + [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 23), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 23), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 22), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 22), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [5609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2997), + [5612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [5614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(120), + [5617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3311), + [5620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3000), + [5623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3396), + [5626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3140), + [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(126), + [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(109), + [5635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2996), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2820), + [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4285), + [5654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2744), + [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3363), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), + [5698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2736), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2736), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), + [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3415), + [5709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3649), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), + [5716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [5754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2812), + [5757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2819), + [5760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3357), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 3), + [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 3), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 12), + [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 12), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2950), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 11), + [5990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 11), + [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2793), + [5995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4142), + [5998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2826), + [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3335), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 32), + [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 32), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), + [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), + [6042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2508), + [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), + [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), + [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 31), + [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 31), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2827), + [6068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4216), + [6071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2837), + [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3390), + [6077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2896), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [6082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3580), + [6085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2824), + [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(104), + [6091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3318), + [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3533), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3377), + [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3580), + [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3131), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(106), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(100), + [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3581), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2472), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2847), + [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2612), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [6226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3060), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(104), + [6234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3318), + [6237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3055), + [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3377), + [6243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3060), + [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3131), + [6249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(106), + [6252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(100), + [6255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3059), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2774), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2929), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 24), + [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 24), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 92), + [6672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 92), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 87), + [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 87), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 86), + [6680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 86), + [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 85), + [6684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 85), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 84), + [6708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 84), + [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 28), + [6712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 28), + [6714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 27), + [6716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 27), + [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 71), + [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 71), + [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 70), + [6724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 70), + [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 69), + [6728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 69), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 68), + [6740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 68), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 67), + [6750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 67), + [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 66), + [6754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 66), + [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 28), + [6758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 28), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 27), + [6768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 27), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 26), + [6778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 26), + [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 51), + [6782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 51), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 50), + [6792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 50), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 49), + [6796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 49), + [6798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 48), + [6800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 48), + [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 28), + [6804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 28), + [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 27), + [6808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 27), + [6810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 26), + [6812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 26), + [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 38), + [6816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 38), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 37), + [6820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 37), + [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 35), + [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 35), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 28), + [6834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 28), + [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 27), + [6838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 27), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 26), + [6842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 26), + [6844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), + [6846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), + [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 3, .production_id = 31), + [6850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 3, .production_id = 31), + [6852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 30), + [6854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 30), + [6856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 28), + [6858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 28), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 27), + [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 27), + [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 26), + [6884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 26), + [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), + [6888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [6898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2), + [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2), + [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [6912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), + [6916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 15), + [6926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 15), + [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), + [6930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [6958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), [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), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [7558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2875), + [7569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3032), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2886), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3084), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), [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), + [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 90), + [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 57), + [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 90), + [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 76), + [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 28), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 76), + [7614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 74), + [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 54), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 74), + [7620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 78), + [7622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 57), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 78), + [7626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 80), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 42), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 80), + [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 72), + [7634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 27), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 72), + [7638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 64), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 46), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 64), + [7644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 82), + [7646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 46), + [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 82), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 62), + [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 34), + [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 62), + [7658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 88), + [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 54), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 88), + [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 58), + [7666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 33), + [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 58), + [7670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 44), + [7672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 34), + [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 44), + [7676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 40), + [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 33), + [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 40), + [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 52), + [7684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 27), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 52), + [7688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 55), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 28), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 55), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 41), + [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 41), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 45), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 45), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [7894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 91), + [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 91), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 89), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 89), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 53), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 53), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 56), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 56), + [7986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 59), + [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 59), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 61), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 61), + [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 75), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 75), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [8042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 63), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 63), + [8046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 65), + [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 65), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 83), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 83), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [8162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 81), + [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 81), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [8294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 79), + [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 79), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 73), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 73), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 77), + [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 77), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), + [8448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(3233), + [8451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), [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), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [8651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(149), + [8654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3372), + [8657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [8659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3435), + [8662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3190), + [8665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(76), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [8926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(143), + [8929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3405), + [8932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3197), + [8935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(142), + [8938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3408), + [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [8971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2870), + [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), + [8982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 1), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [9010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [9016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3), + [9018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 3), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [9024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [9026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3472), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [9041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [9127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [9129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(202), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 27), + [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 33), + [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [9188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 28), + [9190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 42), [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), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [9198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 54), + [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), [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), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [9214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 57), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 27), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 34), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 28), + [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [9264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3857), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [9355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4028), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [9430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2902), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [9473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2935), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [9520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 43), SHIFT_REPEAT(2805), + [9523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 43), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), [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), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [9681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), [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), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [9933] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), }; #ifdef __cplusplus diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 43395a60..f73a2f56 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -400,6 +400,131 @@ fi (word)) (number)))) +================================================================================ +If statements with negated command +================================================================================ + +if ! command -v echo; then + echo 'hello' +fi + +-------------------------------------------------------------------------------- + +(program + (if_statement + condition: (negated_command + (command + name: (command_name + (word)) + argument: (word) + argument: (word))) + (command + name: (command_name (word)) + argument: (raw_string)))) + +================================================================================ +If statements with command +================================================================================ + +if command -v echo; then + echo 'hello' +fi + +-------------------------------------------------------------------------------- + +(program + (if_statement + condition: (command + name: (command_name + (word)) + argument: (word) + argument: (word)) + (command + name: (command_name (word)) + argument: (raw_string)))) + +================================================================================ +If statements with variable assignment by command substitution +================================================================================ + +if result=$(echo 'hello'); then + echo 'hello' +fi + +-------------------------------------------------------------------------------- + +(program + (if_statement + condition: (variable_assignment + name: (variable_name) + value: (command_substitution (command name: (command_name (word)) argument: (raw_string)))) + (command + name: (command_name (word)) + argument: (raw_string)))) + +================================================================================ +If statements with negated variable assignment by command substitution +================================================================================ + +if ! result=$(echo 'hello'); then + echo 'hello' +fi + +-------------------------------------------------------------------------------- + +(program + (if_statement + condition: (negated_command + (variable_assignment + name: (variable_name) + value: (command_substitution + (command + name: (command_name + (word)) + argument: (raw_string))))) + (command + name: (command_name (word)) + argument: (raw_string)))) + +================================================================================ +If statements with variable assignment +================================================================================ + +if foo=1; then + echo 'hello' +fi + +-------------------------------------------------------------------------------- + +(program + (if_statement + condition: (variable_assignment + name: (variable_name) + value: (number)) + (command + name: (command_name (word)) + argument: (raw_string)))) + +================================================================================ +If statements with negated variable assignment +================================================================================ + +if ! foo=1; then + echo 'hello' +fi + +-------------------------------------------------------------------------------- + +(program + (if_statement + condition: (negated_command + (variable_assignment + name: (variable_name) + value: (number))) + (command + name: (command_name (word)) + argument: (raw_string)))) + ================================================================================ Case statements ================================================================================