diff --git a/corpus/literals.txt b/corpus/literals.txt index dca1c6c..ca3d706 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -153,6 +153,7 @@ Command substitutions ============================= echo `echo hi` +echo `echo hi; echo there` echo $(echo $(echo hi)) --- @@ -161,6 +162,9 @@ echo $(echo $(echo hi)) (command (command_name (word)) (command_substitution (command (command_name (word)) (word)))) + (command + (command_name (word)) + (command_substitution (command (command_name (word)) (word)) (command (command_name (word)) (word)))) (command (command_name (word)) (command_substitution (command @@ -174,6 +178,7 @@ Process substitutions ============================= wc -c <(echo abc && echo def) +wc -c <(echo abc; echo def) echo abc > >(wc -c) --- @@ -185,6 +190,12 @@ echo abc > >(wc -c) (process_substitution (list (command (command_name (word)) (word)) (command (command_name (word)) (word))))) + (command + (command_name (word)) + (word) + (process_substitution + (command (command_name (word)) (word)) + (command (command_name (word)) (word)))) (command (command_name (word)) (word) diff --git a/corpus/statements.txt b/corpus/statements.txt index 417d507..eaf15c3 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -377,6 +377,27 @@ export FOOBAR PATH="$PATH:/usr/foobar/bin" (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 =========================================== diff --git a/grammar.js b/grammar.js index f5f204a..4cdc7a2 100644 --- a/grammar.js +++ b/grammar.js @@ -16,6 +16,7 @@ module.exports = grammar({ inline: $ => [ $._statement, + $._statements, $._terminator, $._literal, $._primary_expression, @@ -73,6 +74,12 @@ module.exports = grammar({ $.function_definition ), + _statements: $ => seq( + repeat($._terminated_statement), + $._statement, + optional($._terminator) + ), + for_statement: $ => seq( 'for', $._simple_variable_name, @@ -191,9 +198,7 @@ module.exports = grammar({ subshell: $ => seq( '(', - repeat($._terminated_statement), - $._statement, - optional($._terminator), + $._statements, ')' ), @@ -459,13 +464,13 @@ module.exports = grammar({ ), command_substitution: $ => choice( - seq('$(', $._statement, ')'), - prec(1, seq('`', $._statement, '`')) + seq('$(', $._statements, ')'), + prec(1, seq('`', $._statements, '`')) ), process_substitution: $ => seq( choice('<(', '>('), - $._statement, + $._statements, ')' ), diff --git a/src/grammar.json b/src/grammar.json index c21bf1a..e0bad1e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -87,6 +87,34 @@ } ] }, + "_statements": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_terminated_statement" + } + }, + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + }, "for_statement": { "type": "SEQ", "members": [ @@ -678,28 +706,9 @@ "type": "STRING", "value": "(" }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } - }, { "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_terminator" - }, - { - "type": "BLANK" - } - ] + "name": "_statements" }, { "type": "STRING", @@ -1916,7 +1925,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "_statements" }, { "type": "STRING", @@ -1936,7 +1945,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "_statements" }, { "type": "STRING", @@ -1965,7 +1974,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "_statements" }, { "type": "STRING", @@ -2184,6 +2193,7 @@ ], "inline": [ "_statement", + "_statements", "_terminator", "_literal", "_primary_expression", diff --git a/src/parser.c b/src/parser.c index 09634e2..f269602 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 3057 +#define STATE_COUNT 2725 #define SYMBOL_COUNT 147 #define ALIAS_COUNT 5 #define TOKEN_COUNT 92 @@ -2807,6 +2807,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(28); if (lookahead == '\\') ADVANCE(133); + if (lookahead == '`') + ADVANCE(50); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || @@ -2820,7 +2822,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || lookahead > ']') && - lookahead != '`' && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); @@ -3160,435 +3161,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(160); END_STATE(); case 162: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(137); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(163); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(162); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(87); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(4); - END_STATE(); - case 163: - if (lookahead == '\n') - SKIP(162); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 164: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(89); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(166); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(164); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>')) - ADVANCE(4); - END_STATE(); - case 165: - if (lookahead == '&') - ADVANCE(12); - if (lookahead == '>') - ADVANCE(13); - END_STATE(); - case 166: - if (lookahead == '\n') - SKIP(164); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 167: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(89); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(168); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(167); - if (lookahead != 0 && - (lookahead < ';' || lookahead > '>')) - ADVANCE(4); - END_STATE(); - case 168: - if (lookahead == '\n') - SKIP(167); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 169: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(170); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(169); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(4); - END_STATE(); - case 170: - if (lookahead == '\n') - SKIP(169); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 171: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(137); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(172); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(171); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(87); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(4); - END_STATE(); - case 172: - if (lookahead == '\n') - SKIP(171); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 173: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(89); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(173); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>')) - ADVANCE(4); - END_STATE(); - case 174: - if (lookahead == '\n') - SKIP(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 175: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(89); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(176); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(175); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>')) - ADVANCE(4); - END_STATE(); - case 176: - if (lookahead == '\n') - SKIP(175); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 177: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(178); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(177); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(4); - END_STATE(); - case 178: - if (lookahead == '\n') - SKIP(177); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 179: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') @@ -3606,7 +3178,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(17); if (lookahead == ';') - ADVANCE(180); + ADVANCE(163); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') @@ -3614,7 +3186,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(181); + ADVANCE(164); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -3627,18 +3199,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(179); + SKIP(162); if ((lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 180: + case 163: if (lookahead == ';') ADVANCE(29); END_STATE(); - case 181: + case 164: if (lookahead == '\n') - SKIP(179); + SKIP(162); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3646,69 +3218,305 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 182: + case 165: if (lookahead == '#') ADVANCE(57); if (lookahead == '$') - ADVANCE(183); + ADVANCE(166); if (lookahead == '\\') - SKIP(184); + SKIP(167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(182); + SKIP(165); END_STATE(); - case 183: + case 166: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '{') ADVANCE(9); END_STATE(); - case 184: + case 167: if (lookahead == '\n') - SKIP(182); + SKIP(165); END_STATE(); - case 185: + case 168: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') - ADVANCE(186); + ADVANCE(169); if (lookahead == '$') - ADVANCE(188); + ADVANCE(171); if (lookahead == '\'') - ADVANCE(193); + ADVANCE(176); if (lookahead == '<') - ADVANCE(196); + ADVANCE(179); if (lookahead == '>') - ADVANCE(198); + ADVANCE(181); if (lookahead == '[') - ADVANCE(200); + ADVANCE(183); if (lookahead == '\\') - ADVANCE(201); + ADVANCE(184); if (lookahead == ']') - ADVANCE(200); + ADVANCE(183); if (lookahead == '`') - ADVANCE(204); + ADVANCE(187); if (lookahead == '{') - ADVANCE(200); + ADVANCE(183); if (lookahead == '}') - ADVANCE(200); + ADVANCE(183); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(185); + SKIP(168); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(191); + ADVANCE(174); if (lookahead != 0) - ADVANCE(203); + ADVANCE(186); END_STATE(); - case 186: + case 169: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(187); + ADVANCE(170); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(169); + END_STATE(); + case 170: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(169); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(169); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') + ADVANCE(172); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead == '{') + ADVANCE(175); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 173: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(174); + END_STATE(); + case 174: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\'') + ADVANCE(177); + if (lookahead == '\\') + ADVANCE(178); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(15); + if (lookahead != 0) + ADVANCE(176); + END_STATE(); + case 177: + ACCEPT_TOKEN(sym_raw_string); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 178: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\n') + ADVANCE(15); + if (lookahead == '\'') + ADVANCE(177); + if (lookahead == '\\') + ADVANCE(178); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(176); + if (lookahead != 0) + ADVANCE(176); + END_STATE(); + case 179: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '(') + ADVANCE(180); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_LT_LPAREN); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 181: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '(') + ADVANCE(182); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_GT_LPAREN); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 183: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '[') + ADVANCE(183); + if (lookahead == '\\') + ADVANCE(173); + if (lookahead == ']') + ADVANCE(183); + if (lookahead == '{') + ADVANCE(183); + if (lookahead == '}') + ADVANCE(183); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(174); + END_STATE(); + case 184: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(186); + END_STATE(); + case 185: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(184); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(174); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(186); + END_STATE(); + case 186: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(184); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(174); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3717,253 +3525,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(186); END_STATE(); case 187: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(187); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(186); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') - ADVANCE(189); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead == '{') - ADVANCE(192); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 190: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(191); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(191); - END_STATE(); - case 191: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 193: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\'') - ADVANCE(194); - if (lookahead == '\\') - ADVANCE(195); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(15); - if (lookahead != 0) - ADVANCE(193); - END_STATE(); - case 194: - ACCEPT_TOKEN(sym_raw_string); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 195: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\n') - ADVANCE(15); - if (lookahead == '\'') - ADVANCE(194); - if (lookahead == '\\') - ADVANCE(195); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(193); - if (lookahead != 0) - ADVANCE(193); - END_STATE(); - case 196: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(197); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 198: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(199); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 200: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '[') - ADVANCE(200); - if (lookahead == '\\') - ADVANCE(190); - if (lookahead == ']') - ADVANCE(200); - if (lookahead == '{') - ADVANCE(200); - if (lookahead == '}') - ADVANCE(200); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(191); - END_STATE(); - case 201: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(202); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(191); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(203); - END_STATE(); - case 202: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(201); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(191); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(191); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(203); - END_STATE(); - case 203: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(201); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(191); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(203); - END_STATE(); - case 204: ACCEPT_TOKEN(anon_sym_BQUOTE); if (lookahead == '\\') - ADVANCE(190); + ADVANCE(173); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(191); + ADVANCE(174); END_STATE(); - case 205: + case 188: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -3973,37 +3545,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(206); + ADVANCE(189); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - SKIP(208); + SKIP(191); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(205); + SKIP(188); END_STATE(); - case 206: + case 189: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); if (lookahead == '<') ADVANCE(33); END_STATE(); - case 207: + case 190: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(40); if (lookahead == '>') ADVANCE(42); END_STATE(); - case 208: + case 191: if (lookahead == '\n') - SKIP(205); + SKIP(188); END_STATE(); - case 209: + case 192: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -4019,7 +3591,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(210); + ADVANCE(193); if (lookahead == ']') ADVANCE(48); if (lookahead == '`') @@ -4032,7 +3604,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(209); + SKIP(192); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4040,9 +3612,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 210: + case 193: if (lookahead == '\n') - SKIP(209); + SKIP(192); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4050,7 +3622,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 211: + case 194: + if (lookahead == '\"') + ADVANCE(5); + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(7); + if (lookahead == '\'') + ADVANCE(15); + if (lookahead == ')') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(80); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '[') + ADVANCE(61); + if (lookahead == '\\') + ADVANCE(195); + if (lookahead == ']') + ADVANCE(61); + if (lookahead == '`') + ADVANCE(50); + if (lookahead == '{') + ADVANCE(61); + if (lookahead == '}') + ADVANCE(61); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(194); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(4); + END_STATE(); + case 195: + if (lookahead == '\n') + SKIP(194); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(4); + END_STATE(); + case 196: if (lookahead == '\n') ADVANCE(84); if (lookahead == '!') @@ -4070,19 +3691,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(144); if (lookahead == '\\') - SKIP(212); + SKIP(197); if (lookahead == '|') ADVANCE(146); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(211); + SKIP(196); END_STATE(); - case 212: + case 197: if (lookahead == '\n') - SKIP(211); + SKIP(196); END_STATE(); - case 213: + case 198: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -4104,7 +3725,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(214); + ADVANCE(199); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4117,7 +3738,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(213); + SKIP(198); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4125,9 +3746,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 214: + case 199: if (lookahead == '\n') - SKIP(213); + SKIP(198); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4135,7 +3756,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 215: + case 200: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4145,28 +3766,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(216); + ADVANCE(201); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - SKIP(217); + SKIP(202); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(215); + SKIP(200); END_STATE(); - case 216: + case 201: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); END_STATE(); - case 217: + case 202: if (lookahead == '\n') - SKIP(215); + SKIP(200); END_STATE(); - case 218: + case 203: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -4190,7 +3811,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(219); + ADVANCE(204); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4203,16 +3824,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(218); + SKIP(203); if (lookahead != 0 && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 219: + case 204: if (lookahead == '\n') - SKIP(218); + SKIP(203); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4220,7 +3841,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 220: + case 205: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4232,23 +3853,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(206); + ADVANCE(189); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - SKIP(221); + SKIP(206); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(220); + SKIP(205); END_STATE(); - case 221: + case 206: if (lookahead == '\n') - SKIP(220); + SKIP(205); END_STATE(); - case 222: + case 207: if (lookahead == '!') ADVANCE(135); if (lookahead == '#') @@ -4266,66 +3887,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(144); if (lookahead == '\\') - SKIP(223); + SKIP(208); if (lookahead == '|') ADVANCE(146); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(222); + SKIP(207); END_STATE(); - case 223: + case 208: if (lookahead == '\n') - SKIP(222); + SKIP(207); END_STATE(); - case 224: + case 209: if (lookahead == '!') - ADVANCE(225); + ADVANCE(210); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') - ADVANCE(186); + ADVANCE(169); if (lookahead == '$') - ADVANCE(188); + ADVANCE(171); if (lookahead == '\'') - ADVANCE(193); + ADVANCE(176); if (lookahead == '(') - ADVANCE(226); + ADVANCE(211); if (lookahead == '-') - ADVANCE(227); + ADVANCE(212); if (lookahead == '<') - ADVANCE(196); + ADVANCE(179); if (lookahead == '>') - ADVANCE(198); + ADVANCE(181); if (lookahead == '[') - ADVANCE(200); + ADVANCE(183); if (lookahead == '\\') - ADVANCE(201); + ADVANCE(184); if (lookahead == ']') - ADVANCE(200); + ADVANCE(183); if (lookahead == '`') - ADVANCE(204); + ADVANCE(187); if (lookahead == '{') - ADVANCE(200); + ADVANCE(183); if (lookahead == '}') - ADVANCE(200); + ADVANCE(183); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(224); + SKIP(209); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(191); + ADVANCE(174); if (lookahead != 0) - ADVANCE(203); + ADVANCE(186); END_STATE(); - case 225: + case 210: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '\\') - ADVANCE(201); + ADVANCE(184); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -4334,29 +3955,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(191); + ADVANCE(174); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(186); END_STATE(); - case 226: + case 211: ACCEPT_TOKEN(anon_sym_LPAREN); if (lookahead == '\\') - ADVANCE(190); + ADVANCE(173); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(191); + ADVANCE(174); END_STATE(); - case 227: + case 212: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(201); + ADVANCE(184); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -4365,24 +3986,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(191); + ADVANCE(174); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(228); + ADVANCE(213); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(186); END_STATE(); - case 228: + case 213: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(228); + ADVANCE(213); END_STATE(); - case 229: + case 214: if (lookahead == '!') ADVANCE(135); if (lookahead == '#') @@ -4400,27 +4021,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(144); if (lookahead == '\\') - SKIP(230); + SKIP(215); if (lookahead == ']') ADVANCE(149); if (lookahead == '|') - ADVANCE(231); + ADVANCE(216); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(229); + SKIP(214); END_STATE(); - case 230: + case 215: if (lookahead == '\n') - SKIP(229); + SKIP(214); END_STATE(); - case 231: + case 216: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '|') ADVANCE(54); END_STATE(); - case 232: + case 217: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -4436,7 +4057,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(233); + ADVANCE(218); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4449,7 +4070,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(232); + SKIP(217); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4457,9 +4078,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 233: + case 218: if (lookahead == '\n') - SKIP(232); + SKIP(217); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4467,7 +4088,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 234: + case 219: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -4491,7 +4112,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(235); + ADVANCE(220); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4504,16 +4125,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(234); + SKIP(219); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 235: + case 220: if (lookahead == '\n') - SKIP(234); + SKIP(219); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4521,125 +4142,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 236: + case 221: if (lookahead == '#') - ADVANCE(237); + ADVANCE(222); if (lookahead == '\\') - ADVANCE(239); + ADVANCE(224); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(236); + SKIP(221); if (lookahead != 0 && lookahead != '\"' && lookahead != '#' && lookahead != '}') - ADVANCE(240); + ADVANCE(225); END_STATE(); - case 237: + case 222: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(238); + ADVANCE(223); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '}') - ADVANCE(237); + ADVANCE(222); END_STATE(); - case 238: + case 223: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(238); + ADVANCE(223); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == '}') - ADVANCE(237); + ADVANCE(222); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(237); + ADVANCE(222); END_STATE(); - case 239: + case 224: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(239); + ADVANCE(224); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == '}') - ADVANCE(240); + ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(240); + ADVANCE(225); END_STATE(); - case 240: + case 225: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(239); + ADVANCE(224); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '}') - ADVANCE(240); + ADVANCE(225); END_STATE(); - case 241: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(206); - if (lookahead == '>') - ADVANCE(207); - if (lookahead == '\\') - SKIP(242); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(241); - END_STATE(); - case 242: + case 226: if (lookahead == '\n') - SKIP(241); - END_STATE(); - case 243: + ADVANCE(84); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(165); + ADVANCE(11); + if (lookahead == ';') + ADVANCE(28); if (lookahead == '<') - ADVANCE(206); + ADVANCE(189); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - SKIP(244); + SKIP(227); if (lookahead == '`') ADVANCE(50); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(243); + SKIP(226); END_STATE(); - case 244: + case 227: if (lookahead == '\n') - SKIP(243); + SKIP(226); END_STATE(); - case 245: + case 228: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4651,28 +4250,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(206); + ADVANCE(189); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - ADVANCE(246); + ADVANCE(229); + if (lookahead == '`') + ADVANCE(50); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(245); + SKIP(228); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && (lookahead < '[' || lookahead > ']') && - lookahead != '`' && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 246: + case 229: if (lookahead == '\n') - SKIP(245); + SKIP(228); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4680,56 +4280,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 247: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(248); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(247); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 248: - if (lookahead == '\n') - SKIP(247); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 249: + case 230: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -4743,7 +4294,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(17); if (lookahead == ')') - ADVANCE(250); + ADVANCE(231); if (lookahead == '-') ADVANCE(78); if (lookahead == '<') @@ -4753,7 +4304,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(252); + ADVANCE(233); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4766,7 +4317,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(249); + SKIP(230); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4774,16 +4325,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 250: + case 231: if (lookahead == ')') - ADVANCE(251); + ADVANCE(232); END_STATE(); - case 251: + case 232: ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); - case 252: + case 233: if (lookahead == '\n') - SKIP(249); + SKIP(230); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4791,11 +4342,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 253: + case 234: if (lookahead == '\n') ADVANCE(84); if (lookahead == '!') - ADVANCE(254); + ADVANCE(235); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') @@ -4811,13 +4362,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(144); if (lookahead == '\\') - ADVANCE(256); + ADVANCE(237); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(253); + SKIP(234); if (lookahead != 0 && (lookahead < ' ' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -4826,10 +4377,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 254: + case 235: ACCEPT_TOKEN(sym_word); if (lookahead == '=') - ADVANCE(255); + ADVANCE(236); if (lookahead == '\\') ADVANCE(3); if (lookahead != 0 && @@ -4845,7 +4396,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 255: + case 236: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == '\\') ADVANCE(3); @@ -4864,9 +4415,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 256: + case 237: if (lookahead == '\n') - SKIP(253); + SKIP(234); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4874,7 +4425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 257: + case 238: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4886,28 +4437,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(216); + ADVANCE(201); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - ADVANCE(258); + ADVANCE(239); + if (lookahead == '`') + ADVANCE(50); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(257); + SKIP(238); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && (lookahead < '[' || lookahead > ']') && - lookahead != '`' && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 258: + case 239: if (lookahead == '\n') - SKIP(257); + SKIP(238); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4915,7 +4467,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 259: + case 240: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4927,23 +4479,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(216); + ADVANCE(201); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - SKIP(260); + SKIP(241); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(259); + SKIP(240); END_STATE(); - case 260: + case 241: if (lookahead == '\n') - SKIP(259); + SKIP(240); END_STATE(); - case 261: + case 242: if (lookahead == '!') ADVANCE(135); if (lookahead == '#') @@ -4961,7 +4513,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(144); if (lookahead == '\\') - SKIP(262); + SKIP(243); if (lookahead == ']') ADVANCE(149); if (lookahead == '|') @@ -4970,101 +4522,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(261); + SKIP(242); END_STATE(); - case 262: + case 243: if (lookahead == '\n') - SKIP(261); + SKIP(242); END_STATE(); - case 263: + case 244: + if (lookahead == '\n') + ADVANCE(84); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(165); - if (lookahead == ')') - ADVANCE(18); + ADVANCE(11); + if (lookahead == ';') + ADVANCE(28); if (lookahead == '<') - ADVANCE(216); + ADVANCE(201); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - SKIP(264); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(263); - END_STATE(); - case 264: - if (lookahead == '\n') - SKIP(263); - END_STATE(); - case 265: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(206); - if (lookahead == '>') - ADVANCE(207); - if (lookahead == '\\') - SKIP(266); + SKIP(245); if (lookahead == '`') ADVANCE(50); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(265); + SKIP(244); END_STATE(); - case 266: + case 245: if (lookahead == '\n') - SKIP(265); + SKIP(244); END_STATE(); - case 267: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == '<') - ADVANCE(216); - if (lookahead == '>') - ADVANCE(207); - if (lookahead == '\\') - SKIP(268); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(267); - END_STATE(); - case 268: - if (lookahead == '\n') - SKIP(267); - END_STATE(); - case 269: + case 246: if (lookahead == '#') ADVANCE(57); if (lookahead == '\\') - ADVANCE(270); + ADVANCE(247); if (lookahead == '{') ADVANCE(51); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(269); + SKIP(246); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -5076,9 +4579,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 270: + case 247: if (lookahead == '\n') - SKIP(269); + SKIP(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5086,7 +4589,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 271: + case 248: if (lookahead == '!') ADVANCE(135); if (lookahead == '#') @@ -5094,7 +4597,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(137); if (lookahead == ')') - ADVANCE(250); + ADVANCE(231); if (lookahead == '-') ADVANCE(138); if (lookahead == '<') @@ -5104,69 +4607,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(144); if (lookahead == '\\') - SKIP(272); + SKIP(249); if (lookahead == '|') ADVANCE(146); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(271); + SKIP(248); END_STATE(); - case 272: + case 249: if (lookahead == '\n') - SKIP(271); + SKIP(248); END_STATE(); - case 273: + case 250: if (lookahead == '#') ADVANCE(57); if (lookahead == ')') ADVANCE(18); if (lookahead == '\\') - SKIP(274); + SKIP(251); if (lookahead == '|') - ADVANCE(275); + ADVANCE(252); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(273); + SKIP(250); END_STATE(); - case 274: + case 251: if (lookahead == '\n') - SKIP(273); + SKIP(250); END_STATE(); - case 275: + case 252: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 276: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(165); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(216); - if (lookahead == '>') - ADVANCE(207); - if (lookahead == '\\') - SKIP(277); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(276); - END_STATE(); - case 277: - if (lookahead == '\n') - SKIP(276); - END_STATE(); - case 278: + case 253: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -5176,17 +4652,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(206); + ADVANCE(189); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - ADVANCE(279); + ADVANCE(254); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(278); + SKIP(253); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -5195,9 +4671,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 279: + case 254: if (lookahead == '\n') - SKIP(278); + SKIP(253); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5205,7 +4681,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 280: + case 255: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -5215,17 +4691,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(216); + ADVANCE(201); if (lookahead == '>') - ADVANCE(207); + ADVANCE(190); if (lookahead == '\\') - ADVANCE(281); + ADVANCE(256); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(280); + SKIP(255); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -5234,9 +4710,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 281: + case 256: if (lookahead == '\n') - SKIP(280); + SKIP(255); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5622,80 +5098,80 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [27] = {.lex_state = 88, .external_lex_state = 7}, [28] = {.lex_state = 113, .external_lex_state = 8}, [29] = {.lex_state = 62}, - [30] = {.lex_state = 115, .external_lex_state = 7}, - [31] = {.lex_state = 56, .external_lex_state = 2}, - [32] = {.lex_state = 73, .external_lex_state = 2}, - [33] = {.lex_state = 73}, + [30] = {.lex_state = 73, .external_lex_state = 2}, + [31] = {.lex_state = 115, .external_lex_state = 7}, + [32] = {.lex_state = 56, .external_lex_state = 2}, + [33] = {.lex_state = 73, .external_lex_state = 2}, [34] = {.lex_state = 73}, - [35] = {.lex_state = 117, .external_lex_state = 9}, - [36] = {.lex_state = 119, .external_lex_state = 4}, - [37] = {.lex_state = 122, .external_lex_state = 4}, - [38] = {.lex_state = 73}, - [39] = {.lex_state = 83, .external_lex_state = 4}, - [40] = {.lex_state = 113, .external_lex_state = 8}, - [41] = {.lex_state = 73}, - [42] = {.lex_state = 122, .external_lex_state = 10}, - [43] = {.lex_state = 91}, - [44] = {.lex_state = 98}, - [45] = {.lex_state = 122, .external_lex_state = 10}, - [46] = {.lex_state = 107, .external_lex_state = 6}, - [47] = {.lex_state = 56, .external_lex_state = 2}, + [35] = {.lex_state = 73}, + [36] = {.lex_state = 117, .external_lex_state = 9}, + [37] = {.lex_state = 119, .external_lex_state = 4}, + [38] = {.lex_state = 122, .external_lex_state = 4}, + [39] = {.lex_state = 73}, + [40] = {.lex_state = 83, .external_lex_state = 4}, + [41] = {.lex_state = 113, .external_lex_state = 8}, + [42] = {.lex_state = 73}, + [43] = {.lex_state = 122, .external_lex_state = 10}, + [44] = {.lex_state = 91}, + [45] = {.lex_state = 98}, + [46] = {.lex_state = 122, .external_lex_state = 10}, + [47] = {.lex_state = 107, .external_lex_state = 6}, [48] = {.lex_state = 56, .external_lex_state = 2}, [49] = {.lex_state = 56, .external_lex_state = 2}, - [50] = {.lex_state = 122, .external_lex_state = 4}, - [51] = {.lex_state = 124}, - [52] = {.lex_state = 62}, - [53] = {.lex_state = 56, .external_lex_state = 2}, - [54] = {.lex_state = 73}, - [55] = {.lex_state = 75, .external_lex_state = 2}, - [56] = {.lex_state = 77}, + [50] = {.lex_state = 56, .external_lex_state = 2}, + [51] = {.lex_state = 122, .external_lex_state = 4}, + [52] = {.lex_state = 124}, + [53] = {.lex_state = 62}, + [54] = {.lex_state = 56, .external_lex_state = 2}, + [55] = {.lex_state = 73}, + [56] = {.lex_state = 75, .external_lex_state = 2}, [57] = {.lex_state = 77}, - [58] = {.lex_state = 126, .external_lex_state = 3}, - [59] = {.lex_state = 126, .external_lex_state = 4}, - [60] = {.lex_state = 115, .external_lex_state = 5}, + [58] = {.lex_state = 77}, + [59] = {.lex_state = 126, .external_lex_state = 3}, + [60] = {.lex_state = 126, .external_lex_state = 4}, [61] = {.lex_state = 115, .external_lex_state = 5}, - [62] = {.lex_state = 128, .external_lex_state = 5}, - [63] = {.lex_state = 126, .external_lex_state = 4}, - [64] = {.lex_state = 115, .external_lex_state = 7}, - [65] = {.lex_state = 130, .external_lex_state = 8}, - [66] = {.lex_state = 62}, - [67] = {.lex_state = 56, .external_lex_state = 2}, - [68] = {.lex_state = 73, .external_lex_state = 2}, - [69] = {.lex_state = 62}, - [70] = {.lex_state = 132, .external_lex_state = 4}, - [71] = {.lex_state = 62}, - [72] = {.lex_state = 77}, + [62] = {.lex_state = 115, .external_lex_state = 5}, + [63] = {.lex_state = 128, .external_lex_state = 5}, + [64] = {.lex_state = 126, .external_lex_state = 4}, + [65] = {.lex_state = 115, .external_lex_state = 7}, + [66] = {.lex_state = 130, .external_lex_state = 8}, + [67] = {.lex_state = 62}, + [68] = {.lex_state = 56, .external_lex_state = 2}, + [69] = {.lex_state = 73, .external_lex_state = 2}, + [70] = {.lex_state = 62}, + [71] = {.lex_state = 132, .external_lex_state = 4}, + [72] = {.lex_state = 62}, [73] = {.lex_state = 77}, - [74] = {.lex_state = 134, .external_lex_state = 11}, - [75] = {.lex_state = 91}, - [76] = {.lex_state = 98}, - [77] = {.lex_state = 134, .external_lex_state = 11}, - [78] = {.lex_state = 107, .external_lex_state = 6}, - [79] = {.lex_state = 56, .external_lex_state = 2}, + [74] = {.lex_state = 77}, + [75] = {.lex_state = 134, .external_lex_state = 11}, + [76] = {.lex_state = 91}, + [77] = {.lex_state = 98}, + [78] = {.lex_state = 134, .external_lex_state = 11}, + [79] = {.lex_state = 107, .external_lex_state = 6}, [80] = {.lex_state = 56, .external_lex_state = 2}, [81] = {.lex_state = 56, .external_lex_state = 2}, - [82] = {.lex_state = 134, .external_lex_state = 12}, - [83] = {.lex_state = 77}, + [82] = {.lex_state = 56, .external_lex_state = 2}, + [83] = {.lex_state = 134, .external_lex_state = 12}, [84] = {.lex_state = 77}, - [85] = {.lex_state = 147, .external_lex_state = 13}, - [86] = {.lex_state = 91}, - [87] = {.lex_state = 98}, - [88] = {.lex_state = 147, .external_lex_state = 13}, - [89] = {.lex_state = 107, .external_lex_state = 6}, - [90] = {.lex_state = 56, .external_lex_state = 2}, + [85] = {.lex_state = 77}, + [86] = {.lex_state = 147, .external_lex_state = 13}, + [87] = {.lex_state = 91}, + [88] = {.lex_state = 98}, + [89] = {.lex_state = 147, .external_lex_state = 13}, + [90] = {.lex_state = 107, .external_lex_state = 6}, [91] = {.lex_state = 56, .external_lex_state = 2}, [92] = {.lex_state = 56, .external_lex_state = 2}, - [93] = {.lex_state = 147}, - [94] = {.lex_state = 62}, - [95] = {.lex_state = 83, .external_lex_state = 14}, - [96] = {.lex_state = 91}, - [97] = {.lex_state = 98}, - [98] = {.lex_state = 83, .external_lex_state = 14}, - [99] = {.lex_state = 107, .external_lex_state = 6}, - [100] = {.lex_state = 56, .external_lex_state = 2}, + [93] = {.lex_state = 56, .external_lex_state = 2}, + [94] = {.lex_state = 147}, + [95] = {.lex_state = 62}, + [96] = {.lex_state = 83, .external_lex_state = 14}, + [97] = {.lex_state = 91}, + [98] = {.lex_state = 98}, + [99] = {.lex_state = 83, .external_lex_state = 14}, + [100] = {.lex_state = 107, .external_lex_state = 6}, [101] = {.lex_state = 56, .external_lex_state = 2}, [102] = {.lex_state = 56, .external_lex_state = 2}, - [103] = {.lex_state = 126, .external_lex_state = 3}, + [103] = {.lex_state = 56, .external_lex_state = 2}, [104] = {.lex_state = 126, .external_lex_state = 3}, [105] = {.lex_state = 62}, [106] = {.lex_state = 83, .external_lex_state = 3}, @@ -5735,2920 +5211,2588 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 160, .external_lex_state = 6}, [141] = {.lex_state = 157, .external_lex_state = 16}, [142] = {.lex_state = 157, .external_lex_state = 16}, - [143] = {.lex_state = 62}, - [144] = {.lex_state = 68}, + [143] = {.lex_state = 126, .external_lex_state = 4}, + [144] = {.lex_state = 130, .external_lex_state = 8}, [145] = {.lex_state = 56, .external_lex_state = 2}, [146] = {.lex_state = 56, .external_lex_state = 2}, [147] = {.lex_state = 73}, - [148] = {.lex_state = 73}, - [149] = {.lex_state = 56, .external_lex_state = 2}, - [150] = {.lex_state = 75, .external_lex_state = 2}, - [151] = {.lex_state = 77}, - [152] = {.lex_state = 77}, - [153] = {.lex_state = 162, .external_lex_state = 6}, - [154] = {.lex_state = 162}, - [155] = {.lex_state = 164, .external_lex_state = 17}, - [156] = {.lex_state = 91}, - [157] = {.lex_state = 98}, - [158] = {.lex_state = 164, .external_lex_state = 17}, - [159] = {.lex_state = 107, .external_lex_state = 6}, - [160] = {.lex_state = 56, .external_lex_state = 2}, + [148] = {.lex_state = 75, .external_lex_state = 2}, + [149] = {.lex_state = 77}, + [150] = {.lex_state = 77}, + [151] = {.lex_state = 83, .external_lex_state = 3}, + [152] = {.lex_state = 83, .external_lex_state = 4}, + [153] = {.lex_state = 109, .external_lex_state = 5}, + [154] = {.lex_state = 83, .external_lex_state = 4}, + [155] = {.lex_state = 88, .external_lex_state = 7}, + [156] = {.lex_state = 113, .external_lex_state = 8}, + [157] = {.lex_state = 56, .external_lex_state = 2}, + [158] = {.lex_state = 73, .external_lex_state = 2}, + [159] = {.lex_state = 126, .external_lex_state = 4}, + [160] = {.lex_state = 130, .external_lex_state = 8}, [161] = {.lex_state = 56, .external_lex_state = 2}, - [162] = {.lex_state = 56, .external_lex_state = 2}, - [163] = {.lex_state = 167, .external_lex_state = 17}, - [164] = {.lex_state = 162}, - [165] = {.lex_state = 164, .external_lex_state = 18}, - [166] = {.lex_state = 169, .external_lex_state = 2}, - [167] = {.lex_state = 62}, - [168] = {.lex_state = 164, .external_lex_state = 18}, - [169] = {.lex_state = 73, .external_lex_state = 2}, - [170] = {.lex_state = 62}, - [171] = {.lex_state = 56, .external_lex_state = 2}, + [162] = {.lex_state = 77}, + [163] = {.lex_state = 56, .external_lex_state = 2}, + [164] = {.lex_state = 162, .external_lex_state = 2}, + [165] = {.lex_state = 56, .external_lex_state = 2}, + [166] = {.lex_state = 132, .external_lex_state = 4}, + [167] = {.lex_state = 165, .external_lex_state = 17}, + [168] = {.lex_state = 56}, + [169] = {.lex_state = 168}, + [170] = {.lex_state = 73}, + [171] = {.lex_state = 56, .external_lex_state = 18}, [172] = {.lex_state = 73}, - [173] = {.lex_state = 75, .external_lex_state = 2}, - [174] = {.lex_state = 77}, - [175] = {.lex_state = 77}, - [176] = {.lex_state = 171, .external_lex_state = 6}, - [177] = {.lex_state = 162}, - [178] = {.lex_state = 173, .external_lex_state = 17}, - [179] = {.lex_state = 173, .external_lex_state = 17}, - [180] = {.lex_state = 175, .external_lex_state = 17}, - [181] = {.lex_state = 162}, - [182] = {.lex_state = 173, .external_lex_state = 18}, - [183] = {.lex_state = 177, .external_lex_state = 2}, - [184] = {.lex_state = 62}, - [185] = {.lex_state = 73, .external_lex_state = 2}, - [186] = {.lex_state = 162}, - [187] = {.lex_state = 169, .external_lex_state = 2}, - [188] = {.lex_state = 77}, - [189] = {.lex_state = 56, .external_lex_state = 2}, - [190] = {.lex_state = 179, .external_lex_state = 2}, - [191] = {.lex_state = 56, .external_lex_state = 2}, - [192] = {.lex_state = 132, .external_lex_state = 4}, - [193] = {.lex_state = 182, .external_lex_state = 19}, - [194] = {.lex_state = 56}, - [195] = {.lex_state = 185}, - [196] = {.lex_state = 73}, - [197] = {.lex_state = 56, .external_lex_state = 20}, - [198] = {.lex_state = 73}, - [199] = {.lex_state = 88, .external_lex_state = 5}, - [200] = {.lex_state = 88, .external_lex_state = 5}, - [201] = {.lex_state = 132, .external_lex_state = 4}, - [202] = {.lex_state = 115, .external_lex_state = 7}, - [203] = {.lex_state = 205, .external_lex_state = 7}, - [204] = {.lex_state = 88, .external_lex_state = 7}, + [173] = {.lex_state = 88, .external_lex_state = 5}, + [174] = {.lex_state = 88, .external_lex_state = 5}, + [175] = {.lex_state = 132, .external_lex_state = 4}, + [176] = {.lex_state = 188, .external_lex_state = 7}, + [177] = {.lex_state = 88, .external_lex_state = 7}, + [178] = {.lex_state = 56, .external_lex_state = 2}, + [179] = {.lex_state = 88, .external_lex_state = 7}, + [180] = {.lex_state = 73, .external_lex_state = 2}, + [181] = {.lex_state = 73, .external_lex_state = 15}, + [182] = {.lex_state = 73, .external_lex_state = 15}, + [183] = {.lex_state = 73, .external_lex_state = 2}, + [184] = {.lex_state = 192, .external_lex_state = 11}, + [185] = {.lex_state = 192, .external_lex_state = 11}, + [186] = {.lex_state = 192, .external_lex_state = 11}, + [187] = {.lex_state = 130, .external_lex_state = 8}, + [188] = {.lex_state = 194}, + [189] = {.lex_state = 113, .external_lex_state = 19}, + [190] = {.lex_state = 91}, + [191] = {.lex_state = 98}, + [192] = {.lex_state = 113, .external_lex_state = 19}, + [193] = {.lex_state = 107, .external_lex_state = 6}, + [194] = {.lex_state = 56, .external_lex_state = 2}, + [195] = {.lex_state = 56, .external_lex_state = 2}, + [196] = {.lex_state = 56, .external_lex_state = 2}, + [197] = {.lex_state = 119, .external_lex_state = 4}, + [198] = {.lex_state = 77}, + [199] = {.lex_state = 77}, + [200] = {.lex_state = 196, .external_lex_state = 10}, + [201] = {.lex_state = 91}, + [202] = {.lex_state = 98}, + [203] = {.lex_state = 196, .external_lex_state = 10}, + [204] = {.lex_state = 107, .external_lex_state = 6}, [205] = {.lex_state = 56, .external_lex_state = 2}, - [206] = {.lex_state = 88, .external_lex_state = 7}, - [207] = {.lex_state = 73, .external_lex_state = 2}, - [208] = {.lex_state = 73, .external_lex_state = 15}, - [209] = {.lex_state = 73, .external_lex_state = 15}, - [210] = {.lex_state = 73, .external_lex_state = 2}, - [211] = {.lex_state = 209, .external_lex_state = 11}, - [212] = {.lex_state = 209, .external_lex_state = 11}, - [213] = {.lex_state = 209, .external_lex_state = 11}, - [214] = {.lex_state = 130, .external_lex_state = 8}, - [215] = {.lex_state = 169}, - [216] = {.lex_state = 113, .external_lex_state = 21}, - [217] = {.lex_state = 91}, - [218] = {.lex_state = 98}, - [219] = {.lex_state = 113, .external_lex_state = 21}, - [220] = {.lex_state = 107, .external_lex_state = 6}, - [221] = {.lex_state = 56, .external_lex_state = 2}, - [222] = {.lex_state = 56, .external_lex_state = 2}, - [223] = {.lex_state = 56, .external_lex_state = 2}, - [224] = {.lex_state = 119, .external_lex_state = 4}, - [225] = {.lex_state = 77}, - [226] = {.lex_state = 77}, - [227] = {.lex_state = 211, .external_lex_state = 10}, - [228] = {.lex_state = 91}, - [229] = {.lex_state = 98}, - [230] = {.lex_state = 211, .external_lex_state = 10}, - [231] = {.lex_state = 107, .external_lex_state = 6}, - [232] = {.lex_state = 56, .external_lex_state = 2}, - [233] = {.lex_state = 56, .external_lex_state = 2}, + [206] = {.lex_state = 56, .external_lex_state = 2}, + [207] = {.lex_state = 56, .external_lex_state = 2}, + [208] = {.lex_state = 196, .external_lex_state = 4}, + [209] = {.lex_state = 73}, + [210] = {.lex_state = 73}, + [211] = {.lex_state = 56, .external_lex_state = 2}, + [212] = {.lex_state = 188, .external_lex_state = 7}, + [213] = {.lex_state = 73}, + [214] = {.lex_state = 56, .external_lex_state = 2}, + [215] = {.lex_state = 73}, + [216] = {.lex_state = 119, .external_lex_state = 4}, + [217] = {.lex_state = 73}, + [218] = {.lex_state = 122, .external_lex_state = 10}, + [219] = {.lex_state = 122, .external_lex_state = 10}, + [220] = {.lex_state = 151}, + [221] = {.lex_state = 91}, + [222] = {.lex_state = 122, .external_lex_state = 10}, + [223] = {.lex_state = 122, .external_lex_state = 10}, + [224] = {.lex_state = 122, .external_lex_state = 10}, + [225] = {.lex_state = 119, .external_lex_state = 4}, + [226] = {.lex_state = 73}, + [227] = {.lex_state = 62}, + [228] = {.lex_state = 157, .external_lex_state = 16}, + [229] = {.lex_state = 160, .external_lex_state = 6}, + [230] = {.lex_state = 157, .external_lex_state = 16}, + [231] = {.lex_state = 157, .external_lex_state = 16}, + [232] = {.lex_state = 126, .external_lex_state = 4}, + [233] = {.lex_state = 130, .external_lex_state = 8}, [234] = {.lex_state = 56, .external_lex_state = 2}, - [235] = {.lex_state = 211, .external_lex_state = 4}, - [236] = {.lex_state = 73}, - [237] = {.lex_state = 73}, - [238] = {.lex_state = 56, .external_lex_state = 2}, - [239] = {.lex_state = 205, .external_lex_state = 7}, - [240] = {.lex_state = 73}, - [241] = {.lex_state = 56, .external_lex_state = 2}, - [242] = {.lex_state = 73}, - [243] = {.lex_state = 119, .external_lex_state = 4}, - [244] = {.lex_state = 73}, - [245] = {.lex_state = 122, .external_lex_state = 10}, - [246] = {.lex_state = 122, .external_lex_state = 10}, - [247] = {.lex_state = 151}, - [248] = {.lex_state = 91}, - [249] = {.lex_state = 122, .external_lex_state = 10}, - [250] = {.lex_state = 122, .external_lex_state = 10}, - [251] = {.lex_state = 122, .external_lex_state = 10}, - [252] = {.lex_state = 119, .external_lex_state = 4}, - [253] = {.lex_state = 73}, - [254] = {.lex_state = 62}, - [255] = {.lex_state = 157, .external_lex_state = 16}, - [256] = {.lex_state = 160, .external_lex_state = 6}, - [257] = {.lex_state = 157, .external_lex_state = 16}, - [258] = {.lex_state = 157, .external_lex_state = 16}, - [259] = {.lex_state = 162}, - [260] = {.lex_state = 169, .external_lex_state = 2}, - [261] = {.lex_state = 162}, - [262] = {.lex_state = 177, .external_lex_state = 2}, - [263] = {.lex_state = 162}, - [264] = {.lex_state = 169, .external_lex_state = 2}, - [265] = {.lex_state = 77}, - [266] = {.lex_state = 213, .external_lex_state = 22}, - [267] = {.lex_state = 215, .external_lex_state = 23}, - [268] = {.lex_state = 117, .external_lex_state = 9}, - [269] = {.lex_state = 73}, - [270] = {.lex_state = 124}, - [271] = {.lex_state = 134, .external_lex_state = 12}, - [272] = {.lex_state = 147}, - [273] = {.lex_state = 62}, - [274] = {.lex_state = 126, .external_lex_state = 14}, - [275] = {.lex_state = 126, .external_lex_state = 14}, - [276] = {.lex_state = 62}, - [277] = {.lex_state = 126, .external_lex_state = 3}, - [278] = {.lex_state = 126, .external_lex_state = 10}, - [279] = {.lex_state = 126, .external_lex_state = 10}, - [280] = {.lex_state = 126, .external_lex_state = 4}, - [281] = {.lex_state = 115, .external_lex_state = 5}, - [282] = {.lex_state = 77}, - [283] = {.lex_state = 56, .external_lex_state = 2}, - [284] = {.lex_state = 132, .external_lex_state = 4}, - [285] = {.lex_state = 218, .external_lex_state = 2}, - [286] = {.lex_state = 56, .external_lex_state = 2}, - [287] = {.lex_state = 56}, - [288] = {.lex_state = 185}, - [289] = {.lex_state = 73}, - [290] = {.lex_state = 73}, - [291] = {.lex_state = 115, .external_lex_state = 5}, - [292] = {.lex_state = 115, .external_lex_state = 5}, - [293] = {.lex_state = 220, .external_lex_state = 7}, - [294] = {.lex_state = 115, .external_lex_state = 7}, - [295] = {.lex_state = 126, .external_lex_state = 4}, - [296] = {.lex_state = 130, .external_lex_state = 8}, - [297] = {.lex_state = 56, .external_lex_state = 2}, - [298] = {.lex_state = 115, .external_lex_state = 7}, - [299] = {.lex_state = 117, .external_lex_state = 9}, - [300] = {.lex_state = 77}, - [301] = {.lex_state = 222, .external_lex_state = 13}, - [302] = {.lex_state = 222, .external_lex_state = 13}, - [303] = {.lex_state = 222}, - [304] = {.lex_state = 134, .external_lex_state = 12}, - [305] = {.lex_state = 73}, - [306] = {.lex_state = 134, .external_lex_state = 11}, - [307] = {.lex_state = 134, .external_lex_state = 11}, - [308] = {.lex_state = 151}, - [309] = {.lex_state = 91}, - [310] = {.lex_state = 134, .external_lex_state = 11}, - [311] = {.lex_state = 134, .external_lex_state = 11}, - [312] = {.lex_state = 134, .external_lex_state = 11}, - [313] = {.lex_state = 62}, - [314] = {.lex_state = 157, .external_lex_state = 16}, - [315] = {.lex_state = 160, .external_lex_state = 6}, - [316] = {.lex_state = 157, .external_lex_state = 16}, + [235] = {.lex_state = 83, .external_lex_state = 4}, + [236] = {.lex_state = 113, .external_lex_state = 8}, + [237] = {.lex_state = 56, .external_lex_state = 2}, + [238] = {.lex_state = 126, .external_lex_state = 4}, + [239] = {.lex_state = 130, .external_lex_state = 8}, + [240] = {.lex_state = 56, .external_lex_state = 2}, + [241] = {.lex_state = 77}, + [242] = {.lex_state = 198, .external_lex_state = 20}, + [243] = {.lex_state = 200, .external_lex_state = 21}, + [244] = {.lex_state = 117, .external_lex_state = 9}, + [245] = {.lex_state = 73}, + [246] = {.lex_state = 124}, + [247] = {.lex_state = 134, .external_lex_state = 12}, + [248] = {.lex_state = 147}, + [249] = {.lex_state = 62}, + [250] = {.lex_state = 126, .external_lex_state = 14}, + [251] = {.lex_state = 126, .external_lex_state = 14}, + [252] = {.lex_state = 62}, + [253] = {.lex_state = 126, .external_lex_state = 3}, + [254] = {.lex_state = 126, .external_lex_state = 10}, + [255] = {.lex_state = 126, .external_lex_state = 10}, + [256] = {.lex_state = 126, .external_lex_state = 4}, + [257] = {.lex_state = 115, .external_lex_state = 5}, + [258] = {.lex_state = 77}, + [259] = {.lex_state = 56, .external_lex_state = 2}, + [260] = {.lex_state = 132, .external_lex_state = 4}, + [261] = {.lex_state = 203, .external_lex_state = 2}, + [262] = {.lex_state = 56, .external_lex_state = 2}, + [263] = {.lex_state = 56}, + [264] = {.lex_state = 168}, + [265] = {.lex_state = 73}, + [266] = {.lex_state = 73}, + [267] = {.lex_state = 115, .external_lex_state = 5}, + [268] = {.lex_state = 115, .external_lex_state = 5}, + [269] = {.lex_state = 205, .external_lex_state = 7}, + [270] = {.lex_state = 115, .external_lex_state = 7}, + [271] = {.lex_state = 126, .external_lex_state = 4}, + [272] = {.lex_state = 130, .external_lex_state = 8}, + [273] = {.lex_state = 56, .external_lex_state = 2}, + [274] = {.lex_state = 115, .external_lex_state = 7}, + [275] = {.lex_state = 117, .external_lex_state = 9}, + [276] = {.lex_state = 77}, + [277] = {.lex_state = 207, .external_lex_state = 13}, + [278] = {.lex_state = 207, .external_lex_state = 13}, + [279] = {.lex_state = 207}, + [280] = {.lex_state = 134, .external_lex_state = 12}, + [281] = {.lex_state = 73}, + [282] = {.lex_state = 134, .external_lex_state = 11}, + [283] = {.lex_state = 134, .external_lex_state = 11}, + [284] = {.lex_state = 151}, + [285] = {.lex_state = 91}, + [286] = {.lex_state = 134, .external_lex_state = 11}, + [287] = {.lex_state = 134, .external_lex_state = 11}, + [288] = {.lex_state = 134, .external_lex_state = 11}, + [289] = {.lex_state = 62}, + [290] = {.lex_state = 157, .external_lex_state = 16}, + [291] = {.lex_state = 160, .external_lex_state = 6}, + [292] = {.lex_state = 157, .external_lex_state = 16}, + [293] = {.lex_state = 157, .external_lex_state = 16}, + [294] = {.lex_state = 126, .external_lex_state = 4}, + [295] = {.lex_state = 130, .external_lex_state = 8}, + [296] = {.lex_state = 56, .external_lex_state = 2}, + [297] = {.lex_state = 83, .external_lex_state = 4}, + [298] = {.lex_state = 113, .external_lex_state = 8}, + [299] = {.lex_state = 56, .external_lex_state = 2}, + [300] = {.lex_state = 126, .external_lex_state = 4}, + [301] = {.lex_state = 130, .external_lex_state = 8}, + [302] = {.lex_state = 56, .external_lex_state = 2}, + [303] = {.lex_state = 77}, + [304] = {.lex_state = 188, .external_lex_state = 21}, + [305] = {.lex_state = 209}, + [306] = {.lex_state = 207}, + [307] = {.lex_state = 147}, + [308] = {.lex_state = 73}, + [309] = {.lex_state = 147, .external_lex_state = 13}, + [310] = {.lex_state = 214, .external_lex_state = 13}, + [311] = {.lex_state = 151}, + [312] = {.lex_state = 91}, + [313] = {.lex_state = 214, .external_lex_state = 13}, + [314] = {.lex_state = 214, .external_lex_state = 13}, + [315] = {.lex_state = 214, .external_lex_state = 13}, + [316] = {.lex_state = 62}, [317] = {.lex_state = 157, .external_lex_state = 16}, - [318] = {.lex_state = 162}, - [319] = {.lex_state = 169, .external_lex_state = 2}, - [320] = {.lex_state = 162}, - [321] = {.lex_state = 177, .external_lex_state = 2}, - [322] = {.lex_state = 162}, - [323] = {.lex_state = 169, .external_lex_state = 2}, - [324] = {.lex_state = 77}, - [325] = {.lex_state = 205, .external_lex_state = 23}, - [326] = {.lex_state = 224}, - [327] = {.lex_state = 222}, - [328] = {.lex_state = 147}, - [329] = {.lex_state = 73}, - [330] = {.lex_state = 147, .external_lex_state = 13}, - [331] = {.lex_state = 229, .external_lex_state = 13}, - [332] = {.lex_state = 151}, - [333] = {.lex_state = 91}, - [334] = {.lex_state = 229, .external_lex_state = 13}, - [335] = {.lex_state = 229, .external_lex_state = 13}, - [336] = {.lex_state = 229, .external_lex_state = 13}, - [337] = {.lex_state = 62}, - [338] = {.lex_state = 157, .external_lex_state = 16}, - [339] = {.lex_state = 160, .external_lex_state = 6}, - [340] = {.lex_state = 157, .external_lex_state = 16}, - [341] = {.lex_state = 157, .external_lex_state = 16}, - [342] = {.lex_state = 162}, - [343] = {.lex_state = 169, .external_lex_state = 2}, - [344] = {.lex_state = 162}, - [345] = {.lex_state = 177, .external_lex_state = 2}, - [346] = {.lex_state = 162}, - [347] = {.lex_state = 169, .external_lex_state = 2}, - [348] = {.lex_state = 77}, - [349] = {.lex_state = 224}, - [350] = {.lex_state = 117, .external_lex_state = 9}, - [351] = {.lex_state = 73}, - [352] = {.lex_state = 83, .external_lex_state = 14}, - [353] = {.lex_state = 126, .external_lex_state = 14}, - [354] = {.lex_state = 151}, - [355] = {.lex_state = 91}, - [356] = {.lex_state = 126, .external_lex_state = 14}, - [357] = {.lex_state = 126, .external_lex_state = 14}, - [358] = {.lex_state = 126, .external_lex_state = 14}, - [359] = {.lex_state = 62}, - [360] = {.lex_state = 157, .external_lex_state = 16}, - [361] = {.lex_state = 160, .external_lex_state = 6}, - [362] = {.lex_state = 157, .external_lex_state = 16}, - [363] = {.lex_state = 157, .external_lex_state = 16}, - [364] = {.lex_state = 162}, - [365] = {.lex_state = 169, .external_lex_state = 2}, - [366] = {.lex_state = 162}, - [367] = {.lex_state = 177, .external_lex_state = 2}, - [368] = {.lex_state = 162}, - [369] = {.lex_state = 169, .external_lex_state = 2}, - [370] = {.lex_state = 83, .external_lex_state = 3}, - [371] = {.lex_state = 73}, - [372] = {.lex_state = 83, .external_lex_state = 10}, - [373] = {.lex_state = 126, .external_lex_state = 10}, - [374] = {.lex_state = 151}, - [375] = {.lex_state = 91}, - [376] = {.lex_state = 126, .external_lex_state = 10}, - [377] = {.lex_state = 126, .external_lex_state = 10}, - [378] = {.lex_state = 126, .external_lex_state = 10}, - [379] = {.lex_state = 62}, - [380] = {.lex_state = 157, .external_lex_state = 16}, - [381] = {.lex_state = 160, .external_lex_state = 6}, - [382] = {.lex_state = 157, .external_lex_state = 16}, - [383] = {.lex_state = 157, .external_lex_state = 16}, - [384] = {.lex_state = 162}, - [385] = {.lex_state = 169, .external_lex_state = 2}, - [386] = {.lex_state = 162}, - [387] = {.lex_state = 177, .external_lex_state = 2}, - [388] = {.lex_state = 162}, - [389] = {.lex_state = 169, .external_lex_state = 2}, - [390] = {.lex_state = 83, .external_lex_state = 4}, - [391] = {.lex_state = 73}, - [392] = {.lex_state = 73, .external_lex_state = 15}, - [393] = {.lex_state = 169, .external_lex_state = 15}, - [394] = {.lex_state = 151}, - [395] = {.lex_state = 91}, - [396] = {.lex_state = 169, .external_lex_state = 15}, - [397] = {.lex_state = 169, .external_lex_state = 15}, - [398] = {.lex_state = 169, .external_lex_state = 15}, - [399] = {.lex_state = 62}, - [400] = {.lex_state = 157, .external_lex_state = 16}, - [401] = {.lex_state = 160, .external_lex_state = 6}, - [402] = {.lex_state = 157, .external_lex_state = 16}, - [403] = {.lex_state = 157, .external_lex_state = 16}, - [404] = {.lex_state = 162}, - [405] = {.lex_state = 169, .external_lex_state = 2}, - [406] = {.lex_state = 162}, - [407] = {.lex_state = 177, .external_lex_state = 2}, - [408] = {.lex_state = 162}, - [409] = {.lex_state = 169, .external_lex_state = 2}, - [410] = {.lex_state = 115, .external_lex_state = 5}, - [411] = {.lex_state = 88, .external_lex_state = 5}, - [412] = {.lex_state = 115, .external_lex_state = 5}, - [413] = {.lex_state = 91, .external_lex_state = 13}, - [414] = {.lex_state = 91, .external_lex_state = 13}, - [415] = {.lex_state = 91, .external_lex_state = 13}, - [416] = {.lex_state = 91}, - [417] = {.lex_state = 62}, - [418] = {.lex_state = 157, .external_lex_state = 16}, - [419] = {.lex_state = 160, .external_lex_state = 6}, - [420] = {.lex_state = 157, .external_lex_state = 16}, - [421] = {.lex_state = 157, .external_lex_state = 16}, - [422] = {.lex_state = 162}, - [423] = {.lex_state = 169, .external_lex_state = 2}, - [424] = {.lex_state = 162}, - [425] = {.lex_state = 177, .external_lex_state = 2}, - [426] = {.lex_state = 151}, - [427] = {.lex_state = 91}, - [428] = {.lex_state = 73}, - [429] = {.lex_state = 232, .external_lex_state = 16}, - [430] = {.lex_state = 115, .external_lex_state = 5}, - [431] = {.lex_state = 234, .external_lex_state = 24}, - [432] = {.lex_state = 91}, - [433] = {.lex_state = 98}, - [434] = {.lex_state = 234, .external_lex_state = 24}, - [435] = {.lex_state = 107, .external_lex_state = 6}, - [436] = {.lex_state = 236}, - [437] = {.lex_state = 56, .external_lex_state = 2}, - [438] = {.lex_state = 56, .external_lex_state = 2}, - [439] = {.lex_state = 56, .external_lex_state = 2}, - [440] = {.lex_state = 234, .external_lex_state = 16}, - [441] = {.lex_state = 62}, - [442] = {.lex_state = 157, .external_lex_state = 16}, - [443] = {.lex_state = 157, .external_lex_state = 16}, - [444] = {.lex_state = 157, .external_lex_state = 16}, - [445] = {.lex_state = 115, .external_lex_state = 5}, - [446] = {.lex_state = 236}, - [447] = {.lex_state = 234, .external_lex_state = 16}, - [448] = {.lex_state = 115, .external_lex_state = 5}, - [449] = {.lex_state = 236}, - [450] = {.lex_state = 234, .external_lex_state = 16}, - [451] = {.lex_state = 117, .external_lex_state = 9}, - [452] = {.lex_state = 119, .external_lex_state = 4}, - [453] = {.lex_state = 122, .external_lex_state = 4}, - [454] = {.lex_state = 73}, - [455] = {.lex_state = 73}, - [456] = {.lex_state = 122, .external_lex_state = 10}, - [457] = {.lex_state = 122, .external_lex_state = 10}, - [458] = {.lex_state = 122, .external_lex_state = 4}, - [459] = {.lex_state = 124}, - [460] = {.lex_state = 126, .external_lex_state = 4}, - [461] = {.lex_state = 130, .external_lex_state = 8}, - [462] = {.lex_state = 56, .external_lex_state = 2}, - [463] = {.lex_state = 162}, - [464] = {.lex_state = 134, .external_lex_state = 12}, - [465] = {.lex_state = 147}, - [466] = {.lex_state = 62}, - [467] = {.lex_state = 162, .external_lex_state = 25}, - [468] = {.lex_state = 91}, - [469] = {.lex_state = 98}, - [470] = {.lex_state = 162, .external_lex_state = 25}, - [471] = {.lex_state = 107, .external_lex_state = 6}, - [472] = {.lex_state = 56, .external_lex_state = 2}, - [473] = {.lex_state = 56, .external_lex_state = 2}, - [474] = {.lex_state = 56, .external_lex_state = 2}, - [475] = {.lex_state = 162, .external_lex_state = 6}, - [476] = {.lex_state = 162, .external_lex_state = 6}, - [477] = {.lex_state = 62}, - [478] = {.lex_state = 162, .external_lex_state = 6}, - [479] = {.lex_state = 162, .external_lex_state = 13}, - [480] = {.lex_state = 91}, - [481] = {.lex_state = 98}, - [482] = {.lex_state = 162, .external_lex_state = 13}, - [483] = {.lex_state = 107, .external_lex_state = 6}, - [484] = {.lex_state = 56, .external_lex_state = 2}, - [485] = {.lex_state = 56, .external_lex_state = 2}, - [486] = {.lex_state = 56, .external_lex_state = 2}, - [487] = {.lex_state = 162}, - [488] = {.lex_state = 162}, - [489] = {.lex_state = 73}, - [490] = {.lex_state = 164, .external_lex_state = 17}, - [491] = {.lex_state = 164, .external_lex_state = 17}, - [492] = {.lex_state = 151}, - [493] = {.lex_state = 91}, - [494] = {.lex_state = 164, .external_lex_state = 17}, - [495] = {.lex_state = 164, .external_lex_state = 17}, - [496] = {.lex_state = 164, .external_lex_state = 17}, - [497] = {.lex_state = 62}, - [498] = {.lex_state = 157, .external_lex_state = 16}, - [499] = {.lex_state = 160, .external_lex_state = 6}, - [500] = {.lex_state = 157, .external_lex_state = 16}, - [501] = {.lex_state = 157, .external_lex_state = 16}, - [502] = {.lex_state = 162}, - [503] = {.lex_state = 169, .external_lex_state = 2}, - [504] = {.lex_state = 162}, - [505] = {.lex_state = 177, .external_lex_state = 2}, - [506] = {.lex_state = 162}, - [507] = {.lex_state = 169, .external_lex_state = 2}, - [508] = {.lex_state = 77}, + [318] = {.lex_state = 160, .external_lex_state = 6}, + [319] = {.lex_state = 157, .external_lex_state = 16}, + [320] = {.lex_state = 157, .external_lex_state = 16}, + [321] = {.lex_state = 126, .external_lex_state = 4}, + [322] = {.lex_state = 130, .external_lex_state = 8}, + [323] = {.lex_state = 56, .external_lex_state = 2}, + [324] = {.lex_state = 83, .external_lex_state = 4}, + [325] = {.lex_state = 113, .external_lex_state = 8}, + [326] = {.lex_state = 56, .external_lex_state = 2}, + [327] = {.lex_state = 126, .external_lex_state = 4}, + [328] = {.lex_state = 130, .external_lex_state = 8}, + [329] = {.lex_state = 56, .external_lex_state = 2}, + [330] = {.lex_state = 77}, + [331] = {.lex_state = 209}, + [332] = {.lex_state = 117, .external_lex_state = 9}, + [333] = {.lex_state = 73}, + [334] = {.lex_state = 83, .external_lex_state = 14}, + [335] = {.lex_state = 126, .external_lex_state = 14}, + [336] = {.lex_state = 151}, + [337] = {.lex_state = 91}, + [338] = {.lex_state = 126, .external_lex_state = 14}, + [339] = {.lex_state = 126, .external_lex_state = 14}, + [340] = {.lex_state = 126, .external_lex_state = 14}, + [341] = {.lex_state = 62}, + [342] = {.lex_state = 157, .external_lex_state = 16}, + [343] = {.lex_state = 160, .external_lex_state = 6}, + [344] = {.lex_state = 157, .external_lex_state = 16}, + [345] = {.lex_state = 157, .external_lex_state = 16}, + [346] = {.lex_state = 126, .external_lex_state = 4}, + [347] = {.lex_state = 130, .external_lex_state = 8}, + [348] = {.lex_state = 56, .external_lex_state = 2}, + [349] = {.lex_state = 83, .external_lex_state = 4}, + [350] = {.lex_state = 113, .external_lex_state = 8}, + [351] = {.lex_state = 56, .external_lex_state = 2}, + [352] = {.lex_state = 126, .external_lex_state = 4}, + [353] = {.lex_state = 130, .external_lex_state = 8}, + [354] = {.lex_state = 56, .external_lex_state = 2}, + [355] = {.lex_state = 83, .external_lex_state = 3}, + [356] = {.lex_state = 73}, + [357] = {.lex_state = 83, .external_lex_state = 10}, + [358] = {.lex_state = 126, .external_lex_state = 10}, + [359] = {.lex_state = 151}, + [360] = {.lex_state = 91}, + [361] = {.lex_state = 126, .external_lex_state = 10}, + [362] = {.lex_state = 126, .external_lex_state = 10}, + [363] = {.lex_state = 126, .external_lex_state = 10}, + [364] = {.lex_state = 62}, + [365] = {.lex_state = 157, .external_lex_state = 16}, + [366] = {.lex_state = 160, .external_lex_state = 6}, + [367] = {.lex_state = 157, .external_lex_state = 16}, + [368] = {.lex_state = 157, .external_lex_state = 16}, + [369] = {.lex_state = 126, .external_lex_state = 4}, + [370] = {.lex_state = 130, .external_lex_state = 8}, + [371] = {.lex_state = 56, .external_lex_state = 2}, + [372] = {.lex_state = 83, .external_lex_state = 4}, + [373] = {.lex_state = 113, .external_lex_state = 8}, + [374] = {.lex_state = 56, .external_lex_state = 2}, + [375] = {.lex_state = 126, .external_lex_state = 4}, + [376] = {.lex_state = 130, .external_lex_state = 8}, + [377] = {.lex_state = 56, .external_lex_state = 2}, + [378] = {.lex_state = 83, .external_lex_state = 4}, + [379] = {.lex_state = 73}, + [380] = {.lex_state = 73, .external_lex_state = 15}, + [381] = {.lex_state = 73, .external_lex_state = 15}, + [382] = {.lex_state = 151}, + [383] = {.lex_state = 91}, + [384] = {.lex_state = 73, .external_lex_state = 15}, + [385] = {.lex_state = 73, .external_lex_state = 15}, + [386] = {.lex_state = 73, .external_lex_state = 15}, + [387] = {.lex_state = 62}, + [388] = {.lex_state = 157, .external_lex_state = 16}, + [389] = {.lex_state = 160, .external_lex_state = 6}, + [390] = {.lex_state = 157, .external_lex_state = 16}, + [391] = {.lex_state = 157, .external_lex_state = 16}, + [392] = {.lex_state = 126, .external_lex_state = 4}, + [393] = {.lex_state = 130, .external_lex_state = 8}, + [394] = {.lex_state = 56, .external_lex_state = 2}, + [395] = {.lex_state = 83, .external_lex_state = 4}, + [396] = {.lex_state = 113, .external_lex_state = 8}, + [397] = {.lex_state = 56, .external_lex_state = 2}, + [398] = {.lex_state = 126, .external_lex_state = 4}, + [399] = {.lex_state = 130, .external_lex_state = 8}, + [400] = {.lex_state = 56, .external_lex_state = 2}, + [401] = {.lex_state = 115, .external_lex_state = 5}, + [402] = {.lex_state = 88, .external_lex_state = 5}, + [403] = {.lex_state = 115, .external_lex_state = 5}, + [404] = {.lex_state = 91, .external_lex_state = 13}, + [405] = {.lex_state = 91, .external_lex_state = 13}, + [406] = {.lex_state = 91, .external_lex_state = 13}, + [407] = {.lex_state = 91}, + [408] = {.lex_state = 62}, + [409] = {.lex_state = 157, .external_lex_state = 16}, + [410] = {.lex_state = 160, .external_lex_state = 6}, + [411] = {.lex_state = 157, .external_lex_state = 16}, + [412] = {.lex_state = 157, .external_lex_state = 16}, + [413] = {.lex_state = 126, .external_lex_state = 4}, + [414] = {.lex_state = 130, .external_lex_state = 8}, + [415] = {.lex_state = 56, .external_lex_state = 2}, + [416] = {.lex_state = 83, .external_lex_state = 4}, + [417] = {.lex_state = 113, .external_lex_state = 8}, + [418] = {.lex_state = 56, .external_lex_state = 2}, + [419] = {.lex_state = 151}, + [420] = {.lex_state = 91}, + [421] = {.lex_state = 73}, + [422] = {.lex_state = 217, .external_lex_state = 16}, + [423] = {.lex_state = 115, .external_lex_state = 5}, + [424] = {.lex_state = 219, .external_lex_state = 22}, + [425] = {.lex_state = 91}, + [426] = {.lex_state = 98}, + [427] = {.lex_state = 219, .external_lex_state = 22}, + [428] = {.lex_state = 107, .external_lex_state = 6}, + [429] = {.lex_state = 221}, + [430] = {.lex_state = 56, .external_lex_state = 2}, + [431] = {.lex_state = 56, .external_lex_state = 2}, + [432] = {.lex_state = 56, .external_lex_state = 2}, + [433] = {.lex_state = 219, .external_lex_state = 16}, + [434] = {.lex_state = 62}, + [435] = {.lex_state = 157, .external_lex_state = 16}, + [436] = {.lex_state = 157, .external_lex_state = 16}, + [437] = {.lex_state = 157, .external_lex_state = 16}, + [438] = {.lex_state = 115, .external_lex_state = 5}, + [439] = {.lex_state = 221}, + [440] = {.lex_state = 219, .external_lex_state = 16}, + [441] = {.lex_state = 115, .external_lex_state = 5}, + [442] = {.lex_state = 221}, + [443] = {.lex_state = 219, .external_lex_state = 16}, + [444] = {.lex_state = 115, .external_lex_state = 5}, + [445] = {.lex_state = 203, .external_lex_state = 2}, + [446] = {.lex_state = 126, .external_lex_state = 4}, + [447] = {.lex_state = 130, .external_lex_state = 8}, + [448] = {.lex_state = 73}, + [449] = {.lex_state = 124}, + [450] = {.lex_state = 134, .external_lex_state = 12}, + [451] = {.lex_state = 147}, + [452] = {.lex_state = 83, .external_lex_state = 3}, + [453] = {.lex_state = 83, .external_lex_state = 4}, + [454] = {.lex_state = 77}, + [455] = {.lex_state = 56, .external_lex_state = 2}, + [456] = {.lex_state = 56, .external_lex_state = 2}, + [457] = {.lex_state = 56, .external_lex_state = 2}, + [458] = {.lex_state = 56}, + [459] = {.lex_state = 73}, + [460] = {.lex_state = 73}, + [461] = {.lex_state = 226, .external_lex_state = 7}, + [462] = {.lex_state = 88, .external_lex_state = 7}, + [463] = {.lex_state = 83, .external_lex_state = 4}, + [464] = {.lex_state = 113, .external_lex_state = 8}, + [465] = {.lex_state = 88, .external_lex_state = 7}, + [466] = {.lex_state = 115, .external_lex_state = 5}, + [467] = {.lex_state = 203, .external_lex_state = 2}, + [468] = {.lex_state = 126, .external_lex_state = 4}, + [469] = {.lex_state = 130, .external_lex_state = 8}, + [470] = {.lex_state = 124}, + [471] = {.lex_state = 132, .external_lex_state = 4}, + [472] = {.lex_state = 130, .external_lex_state = 8}, + [473] = {.lex_state = 83, .external_lex_state = 4}, + [474] = {.lex_state = 113, .external_lex_state = 8}, + [475] = {.lex_state = 132, .external_lex_state = 4}, + [476] = {.lex_state = 98}, + [477] = {.lex_state = 107, .external_lex_state = 6}, + [478] = {.lex_state = 165, .external_lex_state = 17}, + [479] = {.lex_state = 73}, + [480] = {.lex_state = 88, .external_lex_state = 5}, + [481] = {.lex_state = 88, .external_lex_state = 5}, + [482] = {.lex_state = 115, .external_lex_state = 7}, + [483] = {.lex_state = 188, .external_lex_state = 5}, + [484] = {.lex_state = 188, .external_lex_state = 5}, + [485] = {.lex_state = 228, .external_lex_state = 7}, + [486] = {.lex_state = 228, .external_lex_state = 7}, + [487] = {.lex_state = 188, .external_lex_state = 5}, + [488] = {.lex_state = 188, .external_lex_state = 5}, + [489] = {.lex_state = 228, .external_lex_state = 7}, + [490] = {.lex_state = 132, .external_lex_state = 4}, + [491] = {.lex_state = 188, .external_lex_state = 7}, + [492] = {.lex_state = 188, .external_lex_state = 7}, + [493] = {.lex_state = 88, .external_lex_state = 7}, + [494] = {.lex_state = 88, .external_lex_state = 7}, + [495] = {.lex_state = 192, .external_lex_state = 12}, + [496] = {.lex_state = 62, .external_lex_state = 13}, + [497] = {.lex_state = 192, .external_lex_state = 11}, + [498] = {.lex_state = 192, .external_lex_state = 12}, + [499] = {.lex_state = 62, .external_lex_state = 13}, + [500] = {.lex_state = 134, .external_lex_state = 12}, + [501] = {.lex_state = 130, .external_lex_state = 8}, + [502] = {.lex_state = 194, .external_lex_state = 13}, + [503] = {.lex_state = 91}, + [504] = {.lex_state = 98}, + [505] = {.lex_state = 194, .external_lex_state = 13}, + [506] = {.lex_state = 107, .external_lex_state = 6}, + [507] = {.lex_state = 56, .external_lex_state = 2}, + [508] = {.lex_state = 56, .external_lex_state = 2}, [509] = {.lex_state = 56, .external_lex_state = 2}, - [510] = {.lex_state = 115, .external_lex_state = 5}, - [511] = {.lex_state = 56, .external_lex_state = 2}, - [512] = {.lex_state = 162}, - [513] = {.lex_state = 182, .external_lex_state = 19}, - [514] = {.lex_state = 56}, - [515] = {.lex_state = 185}, - [516] = {.lex_state = 73}, - [517] = {.lex_state = 56, .external_lex_state = 20}, - [518] = {.lex_state = 73}, - [519] = {.lex_state = 164, .external_lex_state = 17}, - [520] = {.lex_state = 164, .external_lex_state = 17}, - [521] = {.lex_state = 162}, - [522] = {.lex_state = 164, .external_lex_state = 18}, - [523] = {.lex_state = 241, .external_lex_state = 18}, - [524] = {.lex_state = 164, .external_lex_state = 18}, - [525] = {.lex_state = 164, .external_lex_state = 18}, - [526] = {.lex_state = 117, .external_lex_state = 9}, - [527] = {.lex_state = 73}, - [528] = {.lex_state = 124}, - [529] = {.lex_state = 134, .external_lex_state = 12}, - [530] = {.lex_state = 147}, - [531] = {.lex_state = 62}, - [532] = {.lex_state = 171, .external_lex_state = 25}, - [533] = {.lex_state = 171, .external_lex_state = 25}, - [534] = {.lex_state = 62}, - [535] = {.lex_state = 171, .external_lex_state = 6}, - [536] = {.lex_state = 162, .external_lex_state = 13}, - [537] = {.lex_state = 162, .external_lex_state = 13}, - [538] = {.lex_state = 162}, - [539] = {.lex_state = 173, .external_lex_state = 17}, - [540] = {.lex_state = 77}, - [541] = {.lex_state = 56, .external_lex_state = 2}, - [542] = {.lex_state = 56, .external_lex_state = 2}, - [543] = {.lex_state = 56}, - [544] = {.lex_state = 185}, - [545] = {.lex_state = 73}, - [546] = {.lex_state = 73}, - [547] = {.lex_state = 173, .external_lex_state = 17}, - [548] = {.lex_state = 173, .external_lex_state = 17}, - [549] = {.lex_state = 243, .external_lex_state = 18}, - [550] = {.lex_state = 173, .external_lex_state = 18}, - [551] = {.lex_state = 173, .external_lex_state = 18}, - [552] = {.lex_state = 115, .external_lex_state = 5}, - [553] = {.lex_state = 124}, - [554] = {.lex_state = 132, .external_lex_state = 4}, - [555] = {.lex_state = 130, .external_lex_state = 8}, - [556] = {.lex_state = 83, .external_lex_state = 4}, - [557] = {.lex_state = 113, .external_lex_state = 8}, - [558] = {.lex_state = 132, .external_lex_state = 4}, - [559] = {.lex_state = 98}, - [560] = {.lex_state = 107, .external_lex_state = 6}, - [561] = {.lex_state = 182, .external_lex_state = 19}, - [562] = {.lex_state = 73}, - [563] = {.lex_state = 88, .external_lex_state = 5}, - [564] = {.lex_state = 88, .external_lex_state = 5}, - [565] = {.lex_state = 115, .external_lex_state = 7}, - [566] = {.lex_state = 205, .external_lex_state = 5}, - [567] = {.lex_state = 205, .external_lex_state = 5}, - [568] = {.lex_state = 245, .external_lex_state = 7}, - [569] = {.lex_state = 245, .external_lex_state = 7}, - [570] = {.lex_state = 205, .external_lex_state = 5}, - [571] = {.lex_state = 205, .external_lex_state = 5}, - [572] = {.lex_state = 245, .external_lex_state = 7}, - [573] = {.lex_state = 132, .external_lex_state = 4}, - [574] = {.lex_state = 205, .external_lex_state = 7}, - [575] = {.lex_state = 205, .external_lex_state = 7}, - [576] = {.lex_state = 88, .external_lex_state = 7}, - [577] = {.lex_state = 88, .external_lex_state = 7}, - [578] = {.lex_state = 209, .external_lex_state = 12}, - [579] = {.lex_state = 62, .external_lex_state = 13}, - [580] = {.lex_state = 209, .external_lex_state = 11}, - [581] = {.lex_state = 209, .external_lex_state = 12}, - [582] = {.lex_state = 62, .external_lex_state = 13}, - [583] = {.lex_state = 134, .external_lex_state = 12}, - [584] = {.lex_state = 130, .external_lex_state = 8}, - [585] = {.lex_state = 247, .external_lex_state = 13}, - [586] = {.lex_state = 91}, - [587] = {.lex_state = 98}, - [588] = {.lex_state = 247, .external_lex_state = 13}, - [589] = {.lex_state = 107, .external_lex_state = 6}, - [590] = {.lex_state = 56, .external_lex_state = 2}, - [591] = {.lex_state = 56, .external_lex_state = 2}, - [592] = {.lex_state = 56, .external_lex_state = 2}, - [593] = {.lex_state = 169}, - [594] = {.lex_state = 73}, - [595] = {.lex_state = 113, .external_lex_state = 21}, - [596] = {.lex_state = 130, .external_lex_state = 21}, - [597] = {.lex_state = 151}, - [598] = {.lex_state = 91}, - [599] = {.lex_state = 130, .external_lex_state = 21}, - [600] = {.lex_state = 130, .external_lex_state = 21}, - [601] = {.lex_state = 130, .external_lex_state = 21}, - [602] = {.lex_state = 62}, - [603] = {.lex_state = 157, .external_lex_state = 16}, - [604] = {.lex_state = 160, .external_lex_state = 6}, - [605] = {.lex_state = 157, .external_lex_state = 16}, - [606] = {.lex_state = 157, .external_lex_state = 16}, - [607] = {.lex_state = 162}, - [608] = {.lex_state = 169, .external_lex_state = 2}, - [609] = {.lex_state = 162}, - [610] = {.lex_state = 177, .external_lex_state = 2}, - [611] = {.lex_state = 162}, - [612] = {.lex_state = 169, .external_lex_state = 2}, - [613] = {.lex_state = 249}, - [614] = {.lex_state = 211, .external_lex_state = 4}, - [615] = {.lex_state = 222}, - [616] = {.lex_state = 211, .external_lex_state = 4}, + [510] = {.lex_state = 194}, + [511] = {.lex_state = 73}, + [512] = {.lex_state = 113, .external_lex_state = 19}, + [513] = {.lex_state = 130, .external_lex_state = 19}, + [514] = {.lex_state = 151}, + [515] = {.lex_state = 91}, + [516] = {.lex_state = 130, .external_lex_state = 19}, + [517] = {.lex_state = 130, .external_lex_state = 19}, + [518] = {.lex_state = 130, .external_lex_state = 19}, + [519] = {.lex_state = 62}, + [520] = {.lex_state = 157, .external_lex_state = 16}, + [521] = {.lex_state = 160, .external_lex_state = 6}, + [522] = {.lex_state = 157, .external_lex_state = 16}, + [523] = {.lex_state = 157, .external_lex_state = 16}, + [524] = {.lex_state = 126, .external_lex_state = 4}, + [525] = {.lex_state = 130, .external_lex_state = 8}, + [526] = {.lex_state = 56, .external_lex_state = 2}, + [527] = {.lex_state = 83, .external_lex_state = 4}, + [528] = {.lex_state = 113, .external_lex_state = 8}, + [529] = {.lex_state = 56, .external_lex_state = 2}, + [530] = {.lex_state = 126, .external_lex_state = 4}, + [531] = {.lex_state = 130, .external_lex_state = 8}, + [532] = {.lex_state = 56, .external_lex_state = 2}, + [533] = {.lex_state = 230}, + [534] = {.lex_state = 196, .external_lex_state = 4}, + [535] = {.lex_state = 207}, + [536] = {.lex_state = 196, .external_lex_state = 4}, + [537] = {.lex_state = 73}, + [538] = {.lex_state = 196, .external_lex_state = 10}, + [539] = {.lex_state = 234, .external_lex_state = 10}, + [540] = {.lex_state = 151}, + [541] = {.lex_state = 91}, + [542] = {.lex_state = 234, .external_lex_state = 10}, + [543] = {.lex_state = 234, .external_lex_state = 10}, + [544] = {.lex_state = 234, .external_lex_state = 10}, + [545] = {.lex_state = 62}, + [546] = {.lex_state = 157, .external_lex_state = 16}, + [547] = {.lex_state = 160, .external_lex_state = 6}, + [548] = {.lex_state = 157, .external_lex_state = 16}, + [549] = {.lex_state = 157, .external_lex_state = 16}, + [550] = {.lex_state = 126, .external_lex_state = 4}, + [551] = {.lex_state = 130, .external_lex_state = 8}, + [552] = {.lex_state = 56, .external_lex_state = 2}, + [553] = {.lex_state = 83, .external_lex_state = 4}, + [554] = {.lex_state = 113, .external_lex_state = 8}, + [555] = {.lex_state = 56, .external_lex_state = 2}, + [556] = {.lex_state = 126, .external_lex_state = 4}, + [557] = {.lex_state = 130, .external_lex_state = 8}, + [558] = {.lex_state = 56, .external_lex_state = 2}, + [559] = {.lex_state = 119, .external_lex_state = 4}, + [560] = {.lex_state = 77}, + [561] = {.lex_state = 209}, + [562] = {.lex_state = 122, .external_lex_state = 10}, + [563] = {.lex_state = 122, .external_lex_state = 10}, + [564] = {.lex_state = 122, .external_lex_state = 4}, + [565] = {.lex_state = 56, .external_lex_state = 2}, + [566] = {.lex_state = 132, .external_lex_state = 4}, + [567] = {.lex_state = 228, .external_lex_state = 7}, + [568] = {.lex_state = 56, .external_lex_state = 2}, + [569] = {.lex_state = 132, .external_lex_state = 4}, + [570] = {.lex_state = 188, .external_lex_state = 7}, + [571] = {.lex_state = 132, .external_lex_state = 4}, + [572] = {.lex_state = 56, .external_lex_state = 2}, + [573] = {.lex_state = 56, .external_lex_state = 2}, + [574] = {.lex_state = 73}, + [575] = {.lex_state = 73}, + [576] = {.lex_state = 56, .external_lex_state = 2}, + [577] = {.lex_state = 73}, + [578] = {.lex_state = 122, .external_lex_state = 10}, + [579] = {.lex_state = 73}, + [580] = {.lex_state = 119, .external_lex_state = 4}, + [581] = {.lex_state = 122, .external_lex_state = 10}, + [582] = {.lex_state = 122, .external_lex_state = 10}, + [583] = {.lex_state = 151}, + [584] = {.lex_state = 73}, + [585] = {.lex_state = 119, .external_lex_state = 4}, + [586] = {.lex_state = 217, .external_lex_state = 16}, + [587] = {.lex_state = 122, .external_lex_state = 10}, + [588] = {.lex_state = 221}, + [589] = {.lex_state = 219, .external_lex_state = 16}, + [590] = {.lex_state = 62}, + [591] = {.lex_state = 157, .external_lex_state = 16}, + [592] = {.lex_state = 157, .external_lex_state = 16}, + [593] = {.lex_state = 157, .external_lex_state = 16}, + [594] = {.lex_state = 122, .external_lex_state = 10}, + [595] = {.lex_state = 221}, + [596] = {.lex_state = 219, .external_lex_state = 16}, + [597] = {.lex_state = 122, .external_lex_state = 10}, + [598] = {.lex_state = 221}, + [599] = {.lex_state = 219, .external_lex_state = 16}, + [600] = {.lex_state = 122, .external_lex_state = 10}, + [601] = {.lex_state = 203, .external_lex_state = 2}, + [602] = {.lex_state = 126, .external_lex_state = 4}, + [603] = {.lex_state = 130, .external_lex_state = 8}, + [604] = {.lex_state = 56, .external_lex_state = 2}, + [605] = {.lex_state = 83, .external_lex_state = 4}, + [606] = {.lex_state = 113, .external_lex_state = 8}, + [607] = {.lex_state = 122, .external_lex_state = 10}, + [608] = {.lex_state = 203, .external_lex_state = 2}, + [609] = {.lex_state = 126, .external_lex_state = 4}, + [610] = {.lex_state = 130, .external_lex_state = 8}, + [611] = {.lex_state = 124}, + [612] = {.lex_state = 238, .external_lex_state = 21}, + [613] = {.lex_state = 83, .external_lex_state = 4}, + [614] = {.lex_state = 113, .external_lex_state = 8}, + [615] = {.lex_state = 198, .external_lex_state = 20}, + [616] = {.lex_state = 56}, [617] = {.lex_state = 73}, - [618] = {.lex_state = 211, .external_lex_state = 10}, - [619] = {.lex_state = 253, .external_lex_state = 10}, - [620] = {.lex_state = 151}, - [621] = {.lex_state = 91}, - [622] = {.lex_state = 253, .external_lex_state = 10}, - [623] = {.lex_state = 253, .external_lex_state = 10}, - [624] = {.lex_state = 253, .external_lex_state = 10}, - [625] = {.lex_state = 62}, - [626] = {.lex_state = 157, .external_lex_state = 16}, - [627] = {.lex_state = 160, .external_lex_state = 6}, - [628] = {.lex_state = 157, .external_lex_state = 16}, - [629] = {.lex_state = 157, .external_lex_state = 16}, - [630] = {.lex_state = 162}, - [631] = {.lex_state = 169, .external_lex_state = 2}, - [632] = {.lex_state = 162}, - [633] = {.lex_state = 177, .external_lex_state = 2}, - [634] = {.lex_state = 162}, - [635] = {.lex_state = 169, .external_lex_state = 2}, - [636] = {.lex_state = 119, .external_lex_state = 4}, - [637] = {.lex_state = 77}, - [638] = {.lex_state = 224}, - [639] = {.lex_state = 122, .external_lex_state = 10}, - [640] = {.lex_state = 122, .external_lex_state = 10}, - [641] = {.lex_state = 122, .external_lex_state = 4}, - [642] = {.lex_state = 56, .external_lex_state = 2}, - [643] = {.lex_state = 132, .external_lex_state = 4}, - [644] = {.lex_state = 245, .external_lex_state = 7}, - [645] = {.lex_state = 56, .external_lex_state = 2}, - [646] = {.lex_state = 132, .external_lex_state = 4}, - [647] = {.lex_state = 205, .external_lex_state = 7}, - [648] = {.lex_state = 132, .external_lex_state = 4}, - [649] = {.lex_state = 56, .external_lex_state = 2}, - [650] = {.lex_state = 56, .external_lex_state = 2}, - [651] = {.lex_state = 73}, - [652] = {.lex_state = 56, .external_lex_state = 2}, - [653] = {.lex_state = 73}, - [654] = {.lex_state = 122, .external_lex_state = 10}, - [655] = {.lex_state = 73}, - [656] = {.lex_state = 119, .external_lex_state = 4}, - [657] = {.lex_state = 122, .external_lex_state = 10}, - [658] = {.lex_state = 122, .external_lex_state = 10}, + [618] = {.lex_state = 132, .external_lex_state = 4}, + [619] = {.lex_state = 130, .external_lex_state = 19}, + [620] = {.lex_state = 130, .external_lex_state = 19}, + [621] = {.lex_state = 205, .external_lex_state = 7}, + [622] = {.lex_state = 77}, + [623] = {.lex_state = 240, .external_lex_state = 21}, + [624] = {.lex_state = 205, .external_lex_state = 21}, + [625] = {.lex_state = 117, .external_lex_state = 9}, + [626] = {.lex_state = 126, .external_lex_state = 14}, + [627] = {.lex_state = 126, .external_lex_state = 3}, + [628] = {.lex_state = 126, .external_lex_state = 10}, + [629] = {.lex_state = 126, .external_lex_state = 4}, + [630] = {.lex_state = 115, .external_lex_state = 5}, + [631] = {.lex_state = 124}, + [632] = {.lex_state = 132, .external_lex_state = 4}, + [633] = {.lex_state = 126, .external_lex_state = 4}, + [634] = {.lex_state = 130, .external_lex_state = 8}, + [635] = {.lex_state = 73}, + [636] = {.lex_state = 115, .external_lex_state = 5}, + [637] = {.lex_state = 115, .external_lex_state = 5}, + [638] = {.lex_state = 205, .external_lex_state = 5}, + [639] = {.lex_state = 205, .external_lex_state = 5}, + [640] = {.lex_state = 205, .external_lex_state = 5}, + [641] = {.lex_state = 205, .external_lex_state = 5}, + [642] = {.lex_state = 205, .external_lex_state = 7}, + [643] = {.lex_state = 205, .external_lex_state = 7}, + [644] = {.lex_state = 115, .external_lex_state = 7}, + [645] = {.lex_state = 203, .external_lex_state = 2}, + [646] = {.lex_state = 115, .external_lex_state = 7}, + [647] = {.lex_state = 73, .external_lex_state = 2}, + [648] = {.lex_state = 194}, + [649] = {.lex_state = 73, .external_lex_state = 15}, + [650] = {.lex_state = 73, .external_lex_state = 15}, + [651] = {.lex_state = 207}, + [652] = {.lex_state = 207, .external_lex_state = 13}, + [653] = {.lex_state = 134, .external_lex_state = 12}, + [654] = {.lex_state = 77}, + [655] = {.lex_state = 209}, + [656] = {.lex_state = 134, .external_lex_state = 11}, + [657] = {.lex_state = 134, .external_lex_state = 11}, + [658] = {.lex_state = 134, .external_lex_state = 11}, [659] = {.lex_state = 151}, - [660] = {.lex_state = 73}, - [661] = {.lex_state = 119, .external_lex_state = 4}, - [662] = {.lex_state = 232, .external_lex_state = 16}, - [663] = {.lex_state = 122, .external_lex_state = 10}, - [664] = {.lex_state = 236}, - [665] = {.lex_state = 234, .external_lex_state = 16}, - [666] = {.lex_state = 62}, + [660] = {.lex_state = 217, .external_lex_state = 16}, + [661] = {.lex_state = 134, .external_lex_state = 11}, + [662] = {.lex_state = 221}, + [663] = {.lex_state = 219, .external_lex_state = 16}, + [664] = {.lex_state = 62}, + [665] = {.lex_state = 157, .external_lex_state = 16}, + [666] = {.lex_state = 157, .external_lex_state = 16}, [667] = {.lex_state = 157, .external_lex_state = 16}, - [668] = {.lex_state = 157, .external_lex_state = 16}, - [669] = {.lex_state = 157, .external_lex_state = 16}, - [670] = {.lex_state = 122, .external_lex_state = 10}, - [671] = {.lex_state = 236}, - [672] = {.lex_state = 234, .external_lex_state = 16}, - [673] = {.lex_state = 122, .external_lex_state = 10}, - [674] = {.lex_state = 236}, - [675] = {.lex_state = 234, .external_lex_state = 16}, - [676] = {.lex_state = 122, .external_lex_state = 10}, - [677] = {.lex_state = 122, .external_lex_state = 10}, - [678] = {.lex_state = 124}, - [679] = {.lex_state = 257, .external_lex_state = 23}, - [680] = {.lex_state = 83, .external_lex_state = 4}, - [681] = {.lex_state = 113, .external_lex_state = 8}, - [682] = {.lex_state = 213, .external_lex_state = 22}, - [683] = {.lex_state = 56}, - [684] = {.lex_state = 73}, - [685] = {.lex_state = 132, .external_lex_state = 4}, - [686] = {.lex_state = 130, .external_lex_state = 21}, - [687] = {.lex_state = 130, .external_lex_state = 21}, - [688] = {.lex_state = 220, .external_lex_state = 7}, - [689] = {.lex_state = 77}, - [690] = {.lex_state = 259, .external_lex_state = 23}, - [691] = {.lex_state = 220, .external_lex_state = 23}, - [692] = {.lex_state = 117, .external_lex_state = 9}, - [693] = {.lex_state = 126, .external_lex_state = 14}, - [694] = {.lex_state = 126, .external_lex_state = 3}, - [695] = {.lex_state = 126, .external_lex_state = 10}, - [696] = {.lex_state = 126, .external_lex_state = 4}, - [697] = {.lex_state = 115, .external_lex_state = 5}, - [698] = {.lex_state = 124}, - [699] = {.lex_state = 132, .external_lex_state = 4}, - [700] = {.lex_state = 126, .external_lex_state = 4}, - [701] = {.lex_state = 130, .external_lex_state = 8}, - [702] = {.lex_state = 73}, - [703] = {.lex_state = 115, .external_lex_state = 5}, - [704] = {.lex_state = 115, .external_lex_state = 5}, - [705] = {.lex_state = 220, .external_lex_state = 5}, - [706] = {.lex_state = 220, .external_lex_state = 5}, - [707] = {.lex_state = 220, .external_lex_state = 5}, - [708] = {.lex_state = 220, .external_lex_state = 5}, - [709] = {.lex_state = 220, .external_lex_state = 7}, - [710] = {.lex_state = 220, .external_lex_state = 7}, - [711] = {.lex_state = 115, .external_lex_state = 7}, - [712] = {.lex_state = 218, .external_lex_state = 2}, - [713] = {.lex_state = 115, .external_lex_state = 7}, - [714] = {.lex_state = 169, .external_lex_state = 2}, - [715] = {.lex_state = 169}, - [716] = {.lex_state = 73, .external_lex_state = 15}, - [717] = {.lex_state = 73, .external_lex_state = 15}, - [718] = {.lex_state = 222}, - [719] = {.lex_state = 222, .external_lex_state = 13}, - [720] = {.lex_state = 134, .external_lex_state = 12}, - [721] = {.lex_state = 77}, - [722] = {.lex_state = 224}, - [723] = {.lex_state = 134, .external_lex_state = 11}, - [724] = {.lex_state = 134, .external_lex_state = 11}, - [725] = {.lex_state = 134, .external_lex_state = 11}, - [726] = {.lex_state = 151}, - [727] = {.lex_state = 232, .external_lex_state = 16}, - [728] = {.lex_state = 134, .external_lex_state = 11}, - [729] = {.lex_state = 236}, - [730] = {.lex_state = 234, .external_lex_state = 16}, - [731] = {.lex_state = 62}, - [732] = {.lex_state = 157, .external_lex_state = 16}, - [733] = {.lex_state = 157, .external_lex_state = 16}, - [734] = {.lex_state = 157, .external_lex_state = 16}, - [735] = {.lex_state = 134, .external_lex_state = 11}, - [736] = {.lex_state = 236}, - [737] = {.lex_state = 234, .external_lex_state = 16}, - [738] = {.lex_state = 134, .external_lex_state = 11}, - [739] = {.lex_state = 236}, - [740] = {.lex_state = 234, .external_lex_state = 16}, - [741] = {.lex_state = 134, .external_lex_state = 11}, - [742] = {.lex_state = 134, .external_lex_state = 11}, - [743] = {.lex_state = 134, .external_lex_state = 12}, - [744] = {.lex_state = 56}, - [745] = {.lex_state = 73}, - [746] = {.lex_state = 56, .external_lex_state = 20}, - [747] = {.lex_state = 73}, - [748] = {.lex_state = 205, .external_lex_state = 23}, - [749] = {.lex_state = 134, .external_lex_state = 12}, - [750] = {.lex_state = 261}, - [751] = {.lex_state = 229, .external_lex_state = 13}, - [752] = {.lex_state = 147, .external_lex_state = 13}, - [753] = {.lex_state = 229, .external_lex_state = 13}, - [754] = {.lex_state = 151}, - [755] = {.lex_state = 232, .external_lex_state = 16}, - [756] = {.lex_state = 229, .external_lex_state = 13}, - [757] = {.lex_state = 236}, - [758] = {.lex_state = 234, .external_lex_state = 16}, - [759] = {.lex_state = 62}, - [760] = {.lex_state = 157, .external_lex_state = 16}, - [761] = {.lex_state = 157, .external_lex_state = 16}, - [762] = {.lex_state = 157, .external_lex_state = 16}, - [763] = {.lex_state = 229, .external_lex_state = 13}, - [764] = {.lex_state = 236}, - [765] = {.lex_state = 234, .external_lex_state = 16}, - [766] = {.lex_state = 229, .external_lex_state = 13}, - [767] = {.lex_state = 236}, - [768] = {.lex_state = 234, .external_lex_state = 16}, - [769] = {.lex_state = 229, .external_lex_state = 13}, - [770] = {.lex_state = 229, .external_lex_state = 13}, - [771] = {.lex_state = 261}, - [772] = {.lex_state = 261}, - [773] = {.lex_state = 126, .external_lex_state = 3}, - [774] = {.lex_state = 169}, - [775] = {.lex_state = 83, .external_lex_state = 14}, - [776] = {.lex_state = 83, .external_lex_state = 14}, - [777] = {.lex_state = 126, .external_lex_state = 14}, - [778] = {.lex_state = 83, .external_lex_state = 14}, - [779] = {.lex_state = 126, .external_lex_state = 14}, - [780] = {.lex_state = 151}, - [781] = {.lex_state = 232, .external_lex_state = 16}, - [782] = {.lex_state = 126, .external_lex_state = 14}, - [783] = {.lex_state = 236}, - [784] = {.lex_state = 234, .external_lex_state = 16}, - [785] = {.lex_state = 62}, - [786] = {.lex_state = 157, .external_lex_state = 16}, - [787] = {.lex_state = 157, .external_lex_state = 16}, - [788] = {.lex_state = 157, .external_lex_state = 16}, - [789] = {.lex_state = 126, .external_lex_state = 14}, - [790] = {.lex_state = 236}, - [791] = {.lex_state = 234, .external_lex_state = 16}, - [792] = {.lex_state = 126, .external_lex_state = 14}, - [793] = {.lex_state = 236}, - [794] = {.lex_state = 234, .external_lex_state = 16}, - [795] = {.lex_state = 126, .external_lex_state = 14}, - [796] = {.lex_state = 126, .external_lex_state = 14}, - [797] = {.lex_state = 126, .external_lex_state = 10}, - [798] = {.lex_state = 83, .external_lex_state = 10}, - [799] = {.lex_state = 126, .external_lex_state = 10}, - [800] = {.lex_state = 151}, - [801] = {.lex_state = 232, .external_lex_state = 16}, - [802] = {.lex_state = 126, .external_lex_state = 10}, - [803] = {.lex_state = 236}, - [804] = {.lex_state = 234, .external_lex_state = 16}, - [805] = {.lex_state = 62}, - [806] = {.lex_state = 157, .external_lex_state = 16}, - [807] = {.lex_state = 157, .external_lex_state = 16}, - [808] = {.lex_state = 157, .external_lex_state = 16}, - [809] = {.lex_state = 126, .external_lex_state = 10}, - [810] = {.lex_state = 236}, - [811] = {.lex_state = 234, .external_lex_state = 16}, - [812] = {.lex_state = 126, .external_lex_state = 10}, - [813] = {.lex_state = 236}, - [814] = {.lex_state = 234, .external_lex_state = 16}, - [815] = {.lex_state = 126, .external_lex_state = 10}, - [816] = {.lex_state = 126, .external_lex_state = 10}, - [817] = {.lex_state = 169, .external_lex_state = 15}, - [818] = {.lex_state = 73, .external_lex_state = 15}, - [819] = {.lex_state = 169, .external_lex_state = 15}, - [820] = {.lex_state = 151}, - [821] = {.lex_state = 232, .external_lex_state = 16}, - [822] = {.lex_state = 169, .external_lex_state = 15}, - [823] = {.lex_state = 236}, - [824] = {.lex_state = 234, .external_lex_state = 16}, - [825] = {.lex_state = 62}, - [826] = {.lex_state = 157, .external_lex_state = 16}, - [827] = {.lex_state = 157, .external_lex_state = 16}, - [828] = {.lex_state = 157, .external_lex_state = 16}, - [829] = {.lex_state = 169, .external_lex_state = 15}, - [830] = {.lex_state = 236}, - [831] = {.lex_state = 234, .external_lex_state = 16}, - [832] = {.lex_state = 169, .external_lex_state = 15}, - [833] = {.lex_state = 236}, - [834] = {.lex_state = 234, .external_lex_state = 16}, - [835] = {.lex_state = 169, .external_lex_state = 15}, - [836] = {.lex_state = 169, .external_lex_state = 15}, - [837] = {.lex_state = 91}, - [838] = {.lex_state = 232, .external_lex_state = 16}, - [839] = {.lex_state = 91, .external_lex_state = 13}, - [840] = {.lex_state = 236}, - [841] = {.lex_state = 234, .external_lex_state = 16}, - [842] = {.lex_state = 62}, - [843] = {.lex_state = 157, .external_lex_state = 16}, - [844] = {.lex_state = 157, .external_lex_state = 16}, - [845] = {.lex_state = 157, .external_lex_state = 16}, - [846] = {.lex_state = 91, .external_lex_state = 13}, - [847] = {.lex_state = 236}, - [848] = {.lex_state = 234, .external_lex_state = 16}, - [849] = {.lex_state = 91, .external_lex_state = 13}, - [850] = {.lex_state = 236}, - [851] = {.lex_state = 234, .external_lex_state = 16}, - [852] = {.lex_state = 91, .external_lex_state = 13}, - [853] = {.lex_state = 115, .external_lex_state = 5}, - [854] = {.lex_state = 151}, - [855] = {.lex_state = 209, .external_lex_state = 11}, - [856] = {.lex_state = 209, .external_lex_state = 11}, - [857] = {.lex_state = 209, .external_lex_state = 11}, - [858] = {.lex_state = 115, .external_lex_state = 5}, - [859] = {.lex_state = 213, .external_lex_state = 24}, - [860] = {.lex_state = 91}, - [861] = {.lex_state = 98}, - [862] = {.lex_state = 213, .external_lex_state = 24}, - [863] = {.lex_state = 107, .external_lex_state = 6}, - [864] = {.lex_state = 56, .external_lex_state = 2}, - [865] = {.lex_state = 56, .external_lex_state = 2}, - [866] = {.lex_state = 56, .external_lex_state = 2}, - [867] = {.lex_state = 213, .external_lex_state = 16}, - [868] = {.lex_state = 73}, - [869] = {.lex_state = 234, .external_lex_state = 24}, - [870] = {.lex_state = 234, .external_lex_state = 24}, - [871] = {.lex_state = 151}, - [872] = {.lex_state = 91}, - [873] = {.lex_state = 234, .external_lex_state = 24}, - [874] = {.lex_state = 234, .external_lex_state = 24}, - [875] = {.lex_state = 234, .external_lex_state = 24}, - [876] = {.lex_state = 62}, - [877] = {.lex_state = 157, .external_lex_state = 16}, - [878] = {.lex_state = 160, .external_lex_state = 6}, - [879] = {.lex_state = 157, .external_lex_state = 16}, - [880] = {.lex_state = 157, .external_lex_state = 16}, - [881] = {.lex_state = 234, .external_lex_state = 16}, - [882] = {.lex_state = 162}, - [883] = {.lex_state = 169, .external_lex_state = 2}, - [884] = {.lex_state = 162}, - [885] = {.lex_state = 177, .external_lex_state = 2}, - [886] = {.lex_state = 162}, - [887] = {.lex_state = 169, .external_lex_state = 2}, - [888] = {.lex_state = 115, .external_lex_state = 5}, - [889] = {.lex_state = 234, .external_lex_state = 16}, - [890] = {.lex_state = 232, .external_lex_state = 16}, - [891] = {.lex_state = 115, .external_lex_state = 5}, - [892] = {.lex_state = 236}, - [893] = {.lex_state = 234, .external_lex_state = 16}, - [894] = {.lex_state = 115, .external_lex_state = 5}, - [895] = {.lex_state = 236}, - [896] = {.lex_state = 234, .external_lex_state = 16}, - [897] = {.lex_state = 236}, - [898] = {.lex_state = 234, .external_lex_state = 16}, - [899] = {.lex_state = 234, .external_lex_state = 16}, - [900] = {.lex_state = 115, .external_lex_state = 5}, - [901] = {.lex_state = 234, .external_lex_state = 16}, - [902] = {.lex_state = 169, .external_lex_state = 15}, - [903] = {.lex_state = 169, .external_lex_state = 15}, - [904] = {.lex_state = 119, .external_lex_state = 4}, - [905] = {.lex_state = 211, .external_lex_state = 4}, - [906] = {.lex_state = 73}, - [907] = {.lex_state = 73}, - [908] = {.lex_state = 56, .external_lex_state = 2}, - [909] = {.lex_state = 241, .external_lex_state = 18}, - [910] = {.lex_state = 56, .external_lex_state = 2}, - [911] = {.lex_state = 119, .external_lex_state = 4}, - [912] = {.lex_state = 73}, - [913] = {.lex_state = 119, .external_lex_state = 4}, - [914] = {.lex_state = 73}, - [915] = {.lex_state = 77}, - [916] = {.lex_state = 213, .external_lex_state = 22}, - [917] = {.lex_state = 263, .external_lex_state = 26}, - [918] = {.lex_state = 162}, - [919] = {.lex_state = 218, .external_lex_state = 2}, - [920] = {.lex_state = 126, .external_lex_state = 4}, - [921] = {.lex_state = 130, .external_lex_state = 8}, - [922] = {.lex_state = 241, .external_lex_state = 26}, - [923] = {.lex_state = 117, .external_lex_state = 9}, - [924] = {.lex_state = 73}, - [925] = {.lex_state = 162, .external_lex_state = 25}, - [926] = {.lex_state = 162, .external_lex_state = 25}, - [927] = {.lex_state = 151}, - [928] = {.lex_state = 91}, - [929] = {.lex_state = 162, .external_lex_state = 25}, - [930] = {.lex_state = 162, .external_lex_state = 25}, - [931] = {.lex_state = 162, .external_lex_state = 25}, - [932] = {.lex_state = 62}, - [933] = {.lex_state = 157, .external_lex_state = 16}, - [934] = {.lex_state = 160, .external_lex_state = 6}, - [935] = {.lex_state = 157, .external_lex_state = 16}, - [936] = {.lex_state = 157, .external_lex_state = 16}, - [937] = {.lex_state = 162}, - [938] = {.lex_state = 169, .external_lex_state = 2}, - [939] = {.lex_state = 162}, - [940] = {.lex_state = 177, .external_lex_state = 2}, - [941] = {.lex_state = 162}, - [942] = {.lex_state = 169, .external_lex_state = 2}, - [943] = {.lex_state = 162, .external_lex_state = 6}, - [944] = {.lex_state = 73}, - [945] = {.lex_state = 162, .external_lex_state = 13}, - [946] = {.lex_state = 162, .external_lex_state = 13}, - [947] = {.lex_state = 151}, - [948] = {.lex_state = 91}, - [949] = {.lex_state = 162, .external_lex_state = 13}, - [950] = {.lex_state = 162, .external_lex_state = 13}, - [951] = {.lex_state = 162, .external_lex_state = 13}, - [952] = {.lex_state = 62}, - [953] = {.lex_state = 157, .external_lex_state = 16}, - [954] = {.lex_state = 160, .external_lex_state = 6}, - [955] = {.lex_state = 157, .external_lex_state = 16}, - [956] = {.lex_state = 157, .external_lex_state = 16}, - [957] = {.lex_state = 162}, - [958] = {.lex_state = 169, .external_lex_state = 2}, - [959] = {.lex_state = 162}, - [960] = {.lex_state = 177, .external_lex_state = 2}, - [961] = {.lex_state = 162}, - [962] = {.lex_state = 169, .external_lex_state = 2}, - [963] = {.lex_state = 162}, - [964] = {.lex_state = 164, .external_lex_state = 17}, - [965] = {.lex_state = 164, .external_lex_state = 17}, - [966] = {.lex_state = 164, .external_lex_state = 17}, - [967] = {.lex_state = 151}, - [968] = {.lex_state = 232, .external_lex_state = 16}, - [969] = {.lex_state = 164, .external_lex_state = 17}, - [970] = {.lex_state = 236}, - [971] = {.lex_state = 234, .external_lex_state = 16}, - [972] = {.lex_state = 62}, - [973] = {.lex_state = 157, .external_lex_state = 16}, - [974] = {.lex_state = 157, .external_lex_state = 16}, - [975] = {.lex_state = 157, .external_lex_state = 16}, - [976] = {.lex_state = 164, .external_lex_state = 17}, - [977] = {.lex_state = 236}, - [978] = {.lex_state = 234, .external_lex_state = 16}, - [979] = {.lex_state = 164, .external_lex_state = 17}, - [980] = {.lex_state = 236}, - [981] = {.lex_state = 234, .external_lex_state = 16}, - [982] = {.lex_state = 164, .external_lex_state = 17}, - [983] = {.lex_state = 164, .external_lex_state = 17}, - [984] = {.lex_state = 124}, - [985] = {.lex_state = 162}, - [986] = {.lex_state = 169, .external_lex_state = 2}, - [987] = {.lex_state = 162}, - [988] = {.lex_state = 169, .external_lex_state = 2}, - [989] = {.lex_state = 162}, - [990] = {.lex_state = 182, .external_lex_state = 19}, - [991] = {.lex_state = 73}, - [992] = {.lex_state = 164, .external_lex_state = 17}, - [993] = {.lex_state = 164, .external_lex_state = 17}, - [994] = {.lex_state = 164, .external_lex_state = 18}, - [995] = {.lex_state = 241, .external_lex_state = 17}, - [996] = {.lex_state = 241, .external_lex_state = 17}, - [997] = {.lex_state = 265, .external_lex_state = 18}, - [998] = {.lex_state = 265, .external_lex_state = 18}, - [999] = {.lex_state = 241, .external_lex_state = 17}, - [1000] = {.lex_state = 241, .external_lex_state = 17}, - [1001] = {.lex_state = 265, .external_lex_state = 18}, - [1002] = {.lex_state = 162}, - [1003] = {.lex_state = 241, .external_lex_state = 18}, - [1004] = {.lex_state = 241, .external_lex_state = 18}, - [1005] = {.lex_state = 164, .external_lex_state = 18}, - [1006] = {.lex_state = 164, .external_lex_state = 18}, - [1007] = {.lex_state = 177, .external_lex_state = 15}, - [1008] = {.lex_state = 177, .external_lex_state = 15}, - [1009] = {.lex_state = 243, .external_lex_state = 18}, - [1010] = {.lex_state = 77}, - [1011] = {.lex_state = 267, .external_lex_state = 26}, - [1012] = {.lex_state = 243, .external_lex_state = 26}, - [1013] = {.lex_state = 117, .external_lex_state = 9}, - [1014] = {.lex_state = 171, .external_lex_state = 25}, - [1015] = {.lex_state = 171, .external_lex_state = 6}, - [1016] = {.lex_state = 162, .external_lex_state = 13}, - [1017] = {.lex_state = 162}, - [1018] = {.lex_state = 173, .external_lex_state = 17}, - [1019] = {.lex_state = 124}, - [1020] = {.lex_state = 177, .external_lex_state = 2}, - [1021] = {.lex_state = 162}, - [1022] = {.lex_state = 177, .external_lex_state = 2}, - [1023] = {.lex_state = 73}, - [1024] = {.lex_state = 173, .external_lex_state = 17}, - [1025] = {.lex_state = 173, .external_lex_state = 17}, - [1026] = {.lex_state = 243, .external_lex_state = 17}, - [1027] = {.lex_state = 243, .external_lex_state = 17}, - [1028] = {.lex_state = 243, .external_lex_state = 17}, - [1029] = {.lex_state = 243, .external_lex_state = 17}, - [1030] = {.lex_state = 243, .external_lex_state = 18}, - [1031] = {.lex_state = 243, .external_lex_state = 18}, - [1032] = {.lex_state = 173, .external_lex_state = 18}, - [1033] = {.lex_state = 173, .external_lex_state = 18}, - [1034] = {.lex_state = 215, .external_lex_state = 23}, - [1035] = {.lex_state = 182, .external_lex_state = 19}, - [1036] = {.lex_state = 182, .external_lex_state = 19}, - [1037] = {.lex_state = 62}, - [1038] = {.lex_state = 157, .external_lex_state = 16}, - [1039] = {.lex_state = 160, .external_lex_state = 6}, - [1040] = {.lex_state = 157, .external_lex_state = 16}, - [1041] = {.lex_state = 157, .external_lex_state = 16}, - [1042] = {.lex_state = 132, .external_lex_state = 4}, - [1043] = {.lex_state = 182, .external_lex_state = 19}, - [1044] = {.lex_state = 205, .external_lex_state = 5}, - [1045] = {.lex_state = 205, .external_lex_state = 5}, - [1046] = {.lex_state = 245, .external_lex_state = 7}, - [1047] = {.lex_state = 205, .external_lex_state = 5}, - [1048] = {.lex_state = 132, .external_lex_state = 4}, - [1049] = {.lex_state = 205, .external_lex_state = 7}, - [1050] = {.lex_state = 62, .external_lex_state = 13}, - [1051] = {.lex_state = 62}, - [1052] = {.lex_state = 209, .external_lex_state = 11}, - [1053] = {.lex_state = 62, .external_lex_state = 13}, - [1054] = {.lex_state = 62}, + [668] = {.lex_state = 134, .external_lex_state = 11}, + [669] = {.lex_state = 221}, + [670] = {.lex_state = 219, .external_lex_state = 16}, + [671] = {.lex_state = 134, .external_lex_state = 11}, + [672] = {.lex_state = 221}, + [673] = {.lex_state = 219, .external_lex_state = 16}, + [674] = {.lex_state = 134, .external_lex_state = 11}, + [675] = {.lex_state = 203, .external_lex_state = 2}, + [676] = {.lex_state = 126, .external_lex_state = 4}, + [677] = {.lex_state = 130, .external_lex_state = 8}, + [678] = {.lex_state = 56, .external_lex_state = 2}, + [679] = {.lex_state = 83, .external_lex_state = 4}, + [680] = {.lex_state = 113, .external_lex_state = 8}, + [681] = {.lex_state = 134, .external_lex_state = 11}, + [682] = {.lex_state = 203, .external_lex_state = 2}, + [683] = {.lex_state = 126, .external_lex_state = 4}, + [684] = {.lex_state = 130, .external_lex_state = 8}, + [685] = {.lex_state = 134, .external_lex_state = 12}, + [686] = {.lex_state = 56}, + [687] = {.lex_state = 73}, + [688] = {.lex_state = 56, .external_lex_state = 18}, + [689] = {.lex_state = 73}, + [690] = {.lex_state = 188, .external_lex_state = 21}, + [691] = {.lex_state = 134, .external_lex_state = 12}, + [692] = {.lex_state = 242}, + [693] = {.lex_state = 214, .external_lex_state = 13}, + [694] = {.lex_state = 147, .external_lex_state = 13}, + [695] = {.lex_state = 214, .external_lex_state = 13}, + [696] = {.lex_state = 151}, + [697] = {.lex_state = 217, .external_lex_state = 16}, + [698] = {.lex_state = 214, .external_lex_state = 13}, + [699] = {.lex_state = 221}, + [700] = {.lex_state = 219, .external_lex_state = 16}, + [701] = {.lex_state = 62}, + [702] = {.lex_state = 157, .external_lex_state = 16}, + [703] = {.lex_state = 157, .external_lex_state = 16}, + [704] = {.lex_state = 157, .external_lex_state = 16}, + [705] = {.lex_state = 214, .external_lex_state = 13}, + [706] = {.lex_state = 221}, + [707] = {.lex_state = 219, .external_lex_state = 16}, + [708] = {.lex_state = 214, .external_lex_state = 13}, + [709] = {.lex_state = 221}, + [710] = {.lex_state = 219, .external_lex_state = 16}, + [711] = {.lex_state = 214, .external_lex_state = 13}, + [712] = {.lex_state = 203, .external_lex_state = 2}, + [713] = {.lex_state = 126, .external_lex_state = 4}, + [714] = {.lex_state = 130, .external_lex_state = 8}, + [715] = {.lex_state = 56, .external_lex_state = 2}, + [716] = {.lex_state = 83, .external_lex_state = 4}, + [717] = {.lex_state = 113, .external_lex_state = 8}, + [718] = {.lex_state = 214, .external_lex_state = 13}, + [719] = {.lex_state = 203, .external_lex_state = 2}, + [720] = {.lex_state = 126, .external_lex_state = 4}, + [721] = {.lex_state = 130, .external_lex_state = 8}, + [722] = {.lex_state = 242}, + [723] = {.lex_state = 242}, + [724] = {.lex_state = 126, .external_lex_state = 3}, + [725] = {.lex_state = 194}, + [726] = {.lex_state = 83, .external_lex_state = 14}, + [727] = {.lex_state = 83, .external_lex_state = 14}, + [728] = {.lex_state = 126, .external_lex_state = 14}, + [729] = {.lex_state = 83, .external_lex_state = 14}, + [730] = {.lex_state = 126, .external_lex_state = 14}, + [731] = {.lex_state = 151}, + [732] = {.lex_state = 217, .external_lex_state = 16}, + [733] = {.lex_state = 126, .external_lex_state = 14}, + [734] = {.lex_state = 221}, + [735] = {.lex_state = 219, .external_lex_state = 16}, + [736] = {.lex_state = 62}, + [737] = {.lex_state = 157, .external_lex_state = 16}, + [738] = {.lex_state = 157, .external_lex_state = 16}, + [739] = {.lex_state = 157, .external_lex_state = 16}, + [740] = {.lex_state = 126, .external_lex_state = 14}, + [741] = {.lex_state = 221}, + [742] = {.lex_state = 219, .external_lex_state = 16}, + [743] = {.lex_state = 126, .external_lex_state = 14}, + [744] = {.lex_state = 221}, + [745] = {.lex_state = 219, .external_lex_state = 16}, + [746] = {.lex_state = 126, .external_lex_state = 14}, + [747] = {.lex_state = 203, .external_lex_state = 2}, + [748] = {.lex_state = 126, .external_lex_state = 4}, + [749] = {.lex_state = 130, .external_lex_state = 8}, + [750] = {.lex_state = 56, .external_lex_state = 2}, + [751] = {.lex_state = 83, .external_lex_state = 4}, + [752] = {.lex_state = 113, .external_lex_state = 8}, + [753] = {.lex_state = 126, .external_lex_state = 14}, + [754] = {.lex_state = 203, .external_lex_state = 2}, + [755] = {.lex_state = 126, .external_lex_state = 4}, + [756] = {.lex_state = 130, .external_lex_state = 8}, + [757] = {.lex_state = 126, .external_lex_state = 10}, + [758] = {.lex_state = 83, .external_lex_state = 10}, + [759] = {.lex_state = 126, .external_lex_state = 10}, + [760] = {.lex_state = 151}, + [761] = {.lex_state = 217, .external_lex_state = 16}, + [762] = {.lex_state = 126, .external_lex_state = 10}, + [763] = {.lex_state = 221}, + [764] = {.lex_state = 219, .external_lex_state = 16}, + [765] = {.lex_state = 62}, + [766] = {.lex_state = 157, .external_lex_state = 16}, + [767] = {.lex_state = 157, .external_lex_state = 16}, + [768] = {.lex_state = 157, .external_lex_state = 16}, + [769] = {.lex_state = 126, .external_lex_state = 10}, + [770] = {.lex_state = 221}, + [771] = {.lex_state = 219, .external_lex_state = 16}, + [772] = {.lex_state = 126, .external_lex_state = 10}, + [773] = {.lex_state = 221}, + [774] = {.lex_state = 219, .external_lex_state = 16}, + [775] = {.lex_state = 126, .external_lex_state = 10}, + [776] = {.lex_state = 203, .external_lex_state = 2}, + [777] = {.lex_state = 126, .external_lex_state = 4}, + [778] = {.lex_state = 130, .external_lex_state = 8}, + [779] = {.lex_state = 56, .external_lex_state = 2}, + [780] = {.lex_state = 83, .external_lex_state = 4}, + [781] = {.lex_state = 113, .external_lex_state = 8}, + [782] = {.lex_state = 126, .external_lex_state = 10}, + [783] = {.lex_state = 203, .external_lex_state = 2}, + [784] = {.lex_state = 126, .external_lex_state = 4}, + [785] = {.lex_state = 130, .external_lex_state = 8}, + [786] = {.lex_state = 73, .external_lex_state = 15}, + [787] = {.lex_state = 73, .external_lex_state = 15}, + [788] = {.lex_state = 73, .external_lex_state = 15}, + [789] = {.lex_state = 151}, + [790] = {.lex_state = 217, .external_lex_state = 16}, + [791] = {.lex_state = 73, .external_lex_state = 15}, + [792] = {.lex_state = 221}, + [793] = {.lex_state = 219, .external_lex_state = 16}, + [794] = {.lex_state = 62}, + [795] = {.lex_state = 157, .external_lex_state = 16}, + [796] = {.lex_state = 157, .external_lex_state = 16}, + [797] = {.lex_state = 157, .external_lex_state = 16}, + [798] = {.lex_state = 73, .external_lex_state = 15}, + [799] = {.lex_state = 221}, + [800] = {.lex_state = 219, .external_lex_state = 16}, + [801] = {.lex_state = 73, .external_lex_state = 15}, + [802] = {.lex_state = 221}, + [803] = {.lex_state = 219, .external_lex_state = 16}, + [804] = {.lex_state = 73, .external_lex_state = 15}, + [805] = {.lex_state = 203, .external_lex_state = 2}, + [806] = {.lex_state = 126, .external_lex_state = 4}, + [807] = {.lex_state = 130, .external_lex_state = 8}, + [808] = {.lex_state = 56, .external_lex_state = 2}, + [809] = {.lex_state = 83, .external_lex_state = 4}, + [810] = {.lex_state = 113, .external_lex_state = 8}, + [811] = {.lex_state = 73, .external_lex_state = 15}, + [812] = {.lex_state = 203, .external_lex_state = 2}, + [813] = {.lex_state = 126, .external_lex_state = 4}, + [814] = {.lex_state = 130, .external_lex_state = 8}, + [815] = {.lex_state = 91}, + [816] = {.lex_state = 217, .external_lex_state = 16}, + [817] = {.lex_state = 91, .external_lex_state = 13}, + [818] = {.lex_state = 221}, + [819] = {.lex_state = 219, .external_lex_state = 16}, + [820] = {.lex_state = 62}, + [821] = {.lex_state = 157, .external_lex_state = 16}, + [822] = {.lex_state = 157, .external_lex_state = 16}, + [823] = {.lex_state = 157, .external_lex_state = 16}, + [824] = {.lex_state = 91, .external_lex_state = 13}, + [825] = {.lex_state = 221}, + [826] = {.lex_state = 219, .external_lex_state = 16}, + [827] = {.lex_state = 91, .external_lex_state = 13}, + [828] = {.lex_state = 221}, + [829] = {.lex_state = 219, .external_lex_state = 16}, + [830] = {.lex_state = 91, .external_lex_state = 13}, + [831] = {.lex_state = 203, .external_lex_state = 2}, + [832] = {.lex_state = 126, .external_lex_state = 4}, + [833] = {.lex_state = 130, .external_lex_state = 8}, + [834] = {.lex_state = 56, .external_lex_state = 2}, + [835] = {.lex_state = 83, .external_lex_state = 4}, + [836] = {.lex_state = 113, .external_lex_state = 8}, + [837] = {.lex_state = 115, .external_lex_state = 5}, + [838] = {.lex_state = 151}, + [839] = {.lex_state = 192, .external_lex_state = 11}, + [840] = {.lex_state = 192, .external_lex_state = 11}, + [841] = {.lex_state = 192, .external_lex_state = 11}, + [842] = {.lex_state = 115, .external_lex_state = 5}, + [843] = {.lex_state = 198, .external_lex_state = 22}, + [844] = {.lex_state = 91}, + [845] = {.lex_state = 98}, + [846] = {.lex_state = 198, .external_lex_state = 22}, + [847] = {.lex_state = 107, .external_lex_state = 6}, + [848] = {.lex_state = 56, .external_lex_state = 2}, + [849] = {.lex_state = 56, .external_lex_state = 2}, + [850] = {.lex_state = 56, .external_lex_state = 2}, + [851] = {.lex_state = 198, .external_lex_state = 16}, + [852] = {.lex_state = 73}, + [853] = {.lex_state = 219, .external_lex_state = 22}, + [854] = {.lex_state = 219, .external_lex_state = 22}, + [855] = {.lex_state = 151}, + [856] = {.lex_state = 91}, + [857] = {.lex_state = 219, .external_lex_state = 22}, + [858] = {.lex_state = 219, .external_lex_state = 22}, + [859] = {.lex_state = 219, .external_lex_state = 22}, + [860] = {.lex_state = 62}, + [861] = {.lex_state = 157, .external_lex_state = 16}, + [862] = {.lex_state = 160, .external_lex_state = 6}, + [863] = {.lex_state = 157, .external_lex_state = 16}, + [864] = {.lex_state = 157, .external_lex_state = 16}, + [865] = {.lex_state = 219, .external_lex_state = 16}, + [866] = {.lex_state = 126, .external_lex_state = 4}, + [867] = {.lex_state = 130, .external_lex_state = 8}, + [868] = {.lex_state = 56, .external_lex_state = 2}, + [869] = {.lex_state = 83, .external_lex_state = 4}, + [870] = {.lex_state = 113, .external_lex_state = 8}, + [871] = {.lex_state = 56, .external_lex_state = 2}, + [872] = {.lex_state = 126, .external_lex_state = 4}, + [873] = {.lex_state = 130, .external_lex_state = 8}, + [874] = {.lex_state = 56, .external_lex_state = 2}, + [875] = {.lex_state = 115, .external_lex_state = 5}, + [876] = {.lex_state = 219, .external_lex_state = 16}, + [877] = {.lex_state = 217, .external_lex_state = 16}, + [878] = {.lex_state = 115, .external_lex_state = 5}, + [879] = {.lex_state = 221}, + [880] = {.lex_state = 219, .external_lex_state = 16}, + [881] = {.lex_state = 115, .external_lex_state = 5}, + [882] = {.lex_state = 221}, + [883] = {.lex_state = 219, .external_lex_state = 16}, + [884] = {.lex_state = 221}, + [885] = {.lex_state = 219, .external_lex_state = 16}, + [886] = {.lex_state = 219, .external_lex_state = 16}, + [887] = {.lex_state = 115, .external_lex_state = 5}, + [888] = {.lex_state = 219, .external_lex_state = 16}, + [889] = {.lex_state = 115, .external_lex_state = 5}, + [890] = {.lex_state = 203, .external_lex_state = 2}, + [891] = {.lex_state = 226, .external_lex_state = 7}, + [892] = {.lex_state = 77}, + [893] = {.lex_state = 244, .external_lex_state = 21}, + [894] = {.lex_state = 226, .external_lex_state = 21}, + [895] = {.lex_state = 124}, + [896] = {.lex_state = 113, .external_lex_state = 8}, + [897] = {.lex_state = 83, .external_lex_state = 4}, + [898] = {.lex_state = 113, .external_lex_state = 8}, + [899] = {.lex_state = 73}, + [900] = {.lex_state = 226, .external_lex_state = 5}, + [901] = {.lex_state = 226, .external_lex_state = 5}, + [902] = {.lex_state = 226, .external_lex_state = 5}, + [903] = {.lex_state = 226, .external_lex_state = 5}, + [904] = {.lex_state = 226, .external_lex_state = 7}, + [905] = {.lex_state = 226, .external_lex_state = 7}, + [906] = {.lex_state = 56, .external_lex_state = 2}, + [907] = {.lex_state = 88, .external_lex_state = 7}, + [908] = {.lex_state = 115, .external_lex_state = 5}, + [909] = {.lex_state = 203, .external_lex_state = 2}, + [910] = {.lex_state = 200, .external_lex_state = 21}, + [911] = {.lex_state = 165, .external_lex_state = 17}, + [912] = {.lex_state = 165, .external_lex_state = 17}, + [913] = {.lex_state = 62}, + [914] = {.lex_state = 157, .external_lex_state = 16}, + [915] = {.lex_state = 160, .external_lex_state = 6}, + [916] = {.lex_state = 157, .external_lex_state = 16}, + [917] = {.lex_state = 157, .external_lex_state = 16}, + [918] = {.lex_state = 132, .external_lex_state = 4}, + [919] = {.lex_state = 165, .external_lex_state = 17}, + [920] = {.lex_state = 188, .external_lex_state = 5}, + [921] = {.lex_state = 188, .external_lex_state = 5}, + [922] = {.lex_state = 228, .external_lex_state = 7}, + [923] = {.lex_state = 188, .external_lex_state = 5}, + [924] = {.lex_state = 132, .external_lex_state = 4}, + [925] = {.lex_state = 188, .external_lex_state = 7}, + [926] = {.lex_state = 62, .external_lex_state = 13}, + [927] = {.lex_state = 62}, + [928] = {.lex_state = 192, .external_lex_state = 11}, + [929] = {.lex_state = 62, .external_lex_state = 13}, + [930] = {.lex_state = 62}, + [931] = {.lex_state = 73}, + [932] = {.lex_state = 194, .external_lex_state = 13}, + [933] = {.lex_state = 194, .external_lex_state = 13}, + [934] = {.lex_state = 151}, + [935] = {.lex_state = 91}, + [936] = {.lex_state = 194, .external_lex_state = 13}, + [937] = {.lex_state = 194, .external_lex_state = 13}, + [938] = {.lex_state = 194, .external_lex_state = 13}, + [939] = {.lex_state = 62}, + [940] = {.lex_state = 157, .external_lex_state = 16}, + [941] = {.lex_state = 160, .external_lex_state = 6}, + [942] = {.lex_state = 157, .external_lex_state = 16}, + [943] = {.lex_state = 157, .external_lex_state = 16}, + [944] = {.lex_state = 126, .external_lex_state = 4}, + [945] = {.lex_state = 130, .external_lex_state = 8}, + [946] = {.lex_state = 56, .external_lex_state = 2}, + [947] = {.lex_state = 83, .external_lex_state = 4}, + [948] = {.lex_state = 113, .external_lex_state = 8}, + [949] = {.lex_state = 56, .external_lex_state = 2}, + [950] = {.lex_state = 126, .external_lex_state = 4}, + [951] = {.lex_state = 130, .external_lex_state = 8}, + [952] = {.lex_state = 56, .external_lex_state = 2}, + [953] = {.lex_state = 130, .external_lex_state = 8}, + [954] = {.lex_state = 194}, + [955] = {.lex_state = 130, .external_lex_state = 19}, + [956] = {.lex_state = 113, .external_lex_state = 19}, + [957] = {.lex_state = 130, .external_lex_state = 19}, + [958] = {.lex_state = 151}, + [959] = {.lex_state = 217, .external_lex_state = 16}, + [960] = {.lex_state = 130, .external_lex_state = 19}, + [961] = {.lex_state = 221}, + [962] = {.lex_state = 219, .external_lex_state = 16}, + [963] = {.lex_state = 62}, + [964] = {.lex_state = 157, .external_lex_state = 16}, + [965] = {.lex_state = 157, .external_lex_state = 16}, + [966] = {.lex_state = 157, .external_lex_state = 16}, + [967] = {.lex_state = 130, .external_lex_state = 19}, + [968] = {.lex_state = 221}, + [969] = {.lex_state = 219, .external_lex_state = 16}, + [970] = {.lex_state = 130, .external_lex_state = 19}, + [971] = {.lex_state = 221}, + [972] = {.lex_state = 219, .external_lex_state = 16}, + [973] = {.lex_state = 130, .external_lex_state = 19}, + [974] = {.lex_state = 203, .external_lex_state = 2}, + [975] = {.lex_state = 126, .external_lex_state = 4}, + [976] = {.lex_state = 130, .external_lex_state = 8}, + [977] = {.lex_state = 56, .external_lex_state = 2}, + [978] = {.lex_state = 83, .external_lex_state = 4}, + [979] = {.lex_state = 113, .external_lex_state = 8}, + [980] = {.lex_state = 130, .external_lex_state = 19}, + [981] = {.lex_state = 203, .external_lex_state = 2}, + [982] = {.lex_state = 126, .external_lex_state = 4}, + [983] = {.lex_state = 130, .external_lex_state = 8}, + [984] = {.lex_state = 246}, + [985] = {.lex_state = 77}, + [986] = {.lex_state = 77}, + [987] = {.lex_state = 248, .external_lex_state = 13}, + [988] = {.lex_state = 91}, + [989] = {.lex_state = 98}, + [990] = {.lex_state = 248, .external_lex_state = 13}, + [991] = {.lex_state = 107, .external_lex_state = 6}, + [992] = {.lex_state = 56, .external_lex_state = 2}, + [993] = {.lex_state = 56, .external_lex_state = 2}, + [994] = {.lex_state = 56, .external_lex_state = 2}, + [995] = {.lex_state = 248}, + [996] = {.lex_state = 230}, + [997] = {.lex_state = 196, .external_lex_state = 4}, + [998] = {.lex_state = 234, .external_lex_state = 10}, + [999] = {.lex_state = 196, .external_lex_state = 10}, + [1000] = {.lex_state = 234, .external_lex_state = 10}, + [1001] = {.lex_state = 151}, + [1002] = {.lex_state = 217, .external_lex_state = 16}, + [1003] = {.lex_state = 234, .external_lex_state = 10}, + [1004] = {.lex_state = 221}, + [1005] = {.lex_state = 219, .external_lex_state = 16}, + [1006] = {.lex_state = 62}, + [1007] = {.lex_state = 157, .external_lex_state = 16}, + [1008] = {.lex_state = 157, .external_lex_state = 16}, + [1009] = {.lex_state = 157, .external_lex_state = 16}, + [1010] = {.lex_state = 234, .external_lex_state = 10}, + [1011] = {.lex_state = 221}, + [1012] = {.lex_state = 219, .external_lex_state = 16}, + [1013] = {.lex_state = 234, .external_lex_state = 10}, + [1014] = {.lex_state = 221}, + [1015] = {.lex_state = 219, .external_lex_state = 16}, + [1016] = {.lex_state = 234, .external_lex_state = 10}, + [1017] = {.lex_state = 203, .external_lex_state = 2}, + [1018] = {.lex_state = 126, .external_lex_state = 4}, + [1019] = {.lex_state = 130, .external_lex_state = 8}, + [1020] = {.lex_state = 56, .external_lex_state = 2}, + [1021] = {.lex_state = 83, .external_lex_state = 4}, + [1022] = {.lex_state = 113, .external_lex_state = 8}, + [1023] = {.lex_state = 234, .external_lex_state = 10}, + [1024] = {.lex_state = 203, .external_lex_state = 2}, + [1025] = {.lex_state = 126, .external_lex_state = 4}, + [1026] = {.lex_state = 130, .external_lex_state = 8}, + [1027] = {.lex_state = 196, .external_lex_state = 4}, + [1028] = {.lex_state = 196, .external_lex_state = 4}, + [1029] = {.lex_state = 196, .external_lex_state = 4}, + [1030] = {.lex_state = 122, .external_lex_state = 10}, + [1031] = {.lex_state = 73}, + [1032] = {.lex_state = 122, .external_lex_state = 4}, + [1033] = {.lex_state = 132, .external_lex_state = 4}, + [1034] = {.lex_state = 56, .external_lex_state = 2}, + [1035] = {.lex_state = 228, .external_lex_state = 7}, + [1036] = {.lex_state = 56, .external_lex_state = 2}, + [1037] = {.lex_state = 132, .external_lex_state = 4}, + [1038] = {.lex_state = 73}, + [1039] = {.lex_state = 56, .external_lex_state = 2}, + [1040] = {.lex_state = 132, .external_lex_state = 4}, + [1041] = {.lex_state = 73}, + [1042] = {.lex_state = 56, .external_lex_state = 2}, + [1043] = {.lex_state = 73}, + [1044] = {.lex_state = 73}, + [1045] = {.lex_state = 132, .external_lex_state = 4}, + [1046] = {.lex_state = 250, .external_lex_state = 13}, + [1047] = {.lex_state = 250, .external_lex_state = 13}, + [1048] = {.lex_state = 73}, + [1049] = {.lex_state = 250}, + [1050] = {.lex_state = 73}, + [1051] = {.lex_state = 73}, + [1052] = {.lex_state = 122, .external_lex_state = 10}, + [1053] = {.lex_state = 132, .external_lex_state = 4}, + [1054] = {.lex_state = 73}, [1055] = {.lex_state = 73}, - [1056] = {.lex_state = 247, .external_lex_state = 13}, - [1057] = {.lex_state = 247, .external_lex_state = 13}, - [1058] = {.lex_state = 151}, - [1059] = {.lex_state = 91}, - [1060] = {.lex_state = 247, .external_lex_state = 13}, - [1061] = {.lex_state = 247, .external_lex_state = 13}, - [1062] = {.lex_state = 247, .external_lex_state = 13}, - [1063] = {.lex_state = 62}, - [1064] = {.lex_state = 157, .external_lex_state = 16}, - [1065] = {.lex_state = 160, .external_lex_state = 6}, - [1066] = {.lex_state = 157, .external_lex_state = 16}, - [1067] = {.lex_state = 157, .external_lex_state = 16}, - [1068] = {.lex_state = 162}, - [1069] = {.lex_state = 169, .external_lex_state = 2}, - [1070] = {.lex_state = 162}, - [1071] = {.lex_state = 177, .external_lex_state = 2}, - [1072] = {.lex_state = 162}, - [1073] = {.lex_state = 169, .external_lex_state = 2}, - [1074] = {.lex_state = 130, .external_lex_state = 8}, - [1075] = {.lex_state = 169}, - [1076] = {.lex_state = 130, .external_lex_state = 21}, - [1077] = {.lex_state = 113, .external_lex_state = 21}, - [1078] = {.lex_state = 130, .external_lex_state = 21}, - [1079] = {.lex_state = 151}, - [1080] = {.lex_state = 232, .external_lex_state = 16}, - [1081] = {.lex_state = 130, .external_lex_state = 21}, - [1082] = {.lex_state = 236}, - [1083] = {.lex_state = 234, .external_lex_state = 16}, - [1084] = {.lex_state = 62}, - [1085] = {.lex_state = 157, .external_lex_state = 16}, - [1086] = {.lex_state = 157, .external_lex_state = 16}, - [1087] = {.lex_state = 157, .external_lex_state = 16}, - [1088] = {.lex_state = 130, .external_lex_state = 21}, - [1089] = {.lex_state = 236}, - [1090] = {.lex_state = 234, .external_lex_state = 16}, - [1091] = {.lex_state = 130, .external_lex_state = 21}, - [1092] = {.lex_state = 236}, - [1093] = {.lex_state = 234, .external_lex_state = 16}, - [1094] = {.lex_state = 130, .external_lex_state = 21}, - [1095] = {.lex_state = 130, .external_lex_state = 21}, - [1096] = {.lex_state = 269}, - [1097] = {.lex_state = 77}, - [1098] = {.lex_state = 77}, - [1099] = {.lex_state = 271, .external_lex_state = 13}, - [1100] = {.lex_state = 91}, - [1101] = {.lex_state = 98}, - [1102] = {.lex_state = 271, .external_lex_state = 13}, - [1103] = {.lex_state = 107, .external_lex_state = 6}, - [1104] = {.lex_state = 56, .external_lex_state = 2}, - [1105] = {.lex_state = 56, .external_lex_state = 2}, - [1106] = {.lex_state = 56, .external_lex_state = 2}, - [1107] = {.lex_state = 271}, - [1108] = {.lex_state = 249}, - [1109] = {.lex_state = 211, .external_lex_state = 4}, - [1110] = {.lex_state = 253, .external_lex_state = 10}, - [1111] = {.lex_state = 211, .external_lex_state = 10}, - [1112] = {.lex_state = 253, .external_lex_state = 10}, - [1113] = {.lex_state = 151}, - [1114] = {.lex_state = 232, .external_lex_state = 16}, - [1115] = {.lex_state = 253, .external_lex_state = 10}, - [1116] = {.lex_state = 236}, - [1117] = {.lex_state = 234, .external_lex_state = 16}, - [1118] = {.lex_state = 62}, - [1119] = {.lex_state = 157, .external_lex_state = 16}, - [1120] = {.lex_state = 157, .external_lex_state = 16}, - [1121] = {.lex_state = 157, .external_lex_state = 16}, - [1122] = {.lex_state = 253, .external_lex_state = 10}, - [1123] = {.lex_state = 236}, - [1124] = {.lex_state = 234, .external_lex_state = 16}, - [1125] = {.lex_state = 253, .external_lex_state = 10}, - [1126] = {.lex_state = 236}, - [1127] = {.lex_state = 234, .external_lex_state = 16}, - [1128] = {.lex_state = 253, .external_lex_state = 10}, - [1129] = {.lex_state = 253, .external_lex_state = 10}, - [1130] = {.lex_state = 211, .external_lex_state = 4}, - [1131] = {.lex_state = 211, .external_lex_state = 4}, - [1132] = {.lex_state = 211, .external_lex_state = 4}, - [1133] = {.lex_state = 122, .external_lex_state = 10}, + [1056] = {.lex_state = 73}, + [1057] = {.lex_state = 122, .external_lex_state = 10}, + [1058] = {.lex_state = 198, .external_lex_state = 22}, + [1059] = {.lex_state = 198, .external_lex_state = 22}, + [1060] = {.lex_state = 198, .external_lex_state = 16}, + [1061] = {.lex_state = 219, .external_lex_state = 16}, + [1062] = {.lex_state = 122, .external_lex_state = 10}, + [1063] = {.lex_state = 217, .external_lex_state = 16}, + [1064] = {.lex_state = 122, .external_lex_state = 10}, + [1065] = {.lex_state = 221}, + [1066] = {.lex_state = 219, .external_lex_state = 16}, + [1067] = {.lex_state = 122, .external_lex_state = 10}, + [1068] = {.lex_state = 221}, + [1069] = {.lex_state = 219, .external_lex_state = 16}, + [1070] = {.lex_state = 221}, + [1071] = {.lex_state = 219, .external_lex_state = 16}, + [1072] = {.lex_state = 219, .external_lex_state = 16}, + [1073] = {.lex_state = 122, .external_lex_state = 10}, + [1074] = {.lex_state = 219, .external_lex_state = 16}, + [1075] = {.lex_state = 122, .external_lex_state = 10}, + [1076] = {.lex_state = 203, .external_lex_state = 2}, + [1077] = {.lex_state = 56, .external_lex_state = 2}, + [1078] = {.lex_state = 122, .external_lex_state = 10}, + [1079] = {.lex_state = 203, .external_lex_state = 2}, + [1080] = {.lex_state = 200, .external_lex_state = 21}, + [1081] = {.lex_state = 198, .external_lex_state = 20}, + [1082] = {.lex_state = 238, .external_lex_state = 21}, + [1083] = {.lex_state = 198, .external_lex_state = 20}, + [1084] = {.lex_state = 73}, + [1085] = {.lex_state = 132, .external_lex_state = 10}, + [1086] = {.lex_state = 132, .external_lex_state = 10}, + [1087] = {.lex_state = 132, .external_lex_state = 4}, + [1088] = {.lex_state = 130, .external_lex_state = 19}, + [1089] = {.lex_state = 205, .external_lex_state = 7}, + [1090] = {.lex_state = 124}, + [1091] = {.lex_state = 56}, + [1092] = {.lex_state = 73}, + [1093] = {.lex_state = 56}, + [1094] = {.lex_state = 73}, + [1095] = {.lex_state = 73}, + [1096] = {.lex_state = 205, .external_lex_state = 21}, + [1097] = {.lex_state = 126, .external_lex_state = 14}, + [1098] = {.lex_state = 126, .external_lex_state = 14}, + [1099] = {.lex_state = 126, .external_lex_state = 14}, + [1100] = {.lex_state = 126, .external_lex_state = 10}, + [1101] = {.lex_state = 240, .external_lex_state = 21}, + [1102] = {.lex_state = 205, .external_lex_state = 5}, + [1103] = {.lex_state = 205, .external_lex_state = 5}, + [1104] = {.lex_state = 205, .external_lex_state = 5}, + [1105] = {.lex_state = 132, .external_lex_state = 4}, + [1106] = {.lex_state = 205, .external_lex_state = 7}, + [1107] = {.lex_state = 73, .external_lex_state = 2}, + [1108] = {.lex_state = 194}, + [1109] = {.lex_state = 207, .external_lex_state = 13}, + [1110] = {.lex_state = 134, .external_lex_state = 11}, + [1111] = {.lex_state = 134, .external_lex_state = 11}, + [1112] = {.lex_state = 198, .external_lex_state = 22}, + [1113] = {.lex_state = 198, .external_lex_state = 22}, + [1114] = {.lex_state = 198, .external_lex_state = 16}, + [1115] = {.lex_state = 219, .external_lex_state = 16}, + [1116] = {.lex_state = 134, .external_lex_state = 11}, + [1117] = {.lex_state = 217, .external_lex_state = 16}, + [1118] = {.lex_state = 134, .external_lex_state = 11}, + [1119] = {.lex_state = 221}, + [1120] = {.lex_state = 219, .external_lex_state = 16}, + [1121] = {.lex_state = 134, .external_lex_state = 11}, + [1122] = {.lex_state = 221}, + [1123] = {.lex_state = 219, .external_lex_state = 16}, + [1124] = {.lex_state = 221}, + [1125] = {.lex_state = 219, .external_lex_state = 16}, + [1126] = {.lex_state = 219, .external_lex_state = 16}, + [1127] = {.lex_state = 134, .external_lex_state = 11}, + [1128] = {.lex_state = 219, .external_lex_state = 16}, + [1129] = {.lex_state = 134, .external_lex_state = 11}, + [1130] = {.lex_state = 203, .external_lex_state = 2}, + [1131] = {.lex_state = 56, .external_lex_state = 2}, + [1132] = {.lex_state = 134, .external_lex_state = 11}, + [1133] = {.lex_state = 203, .external_lex_state = 2}, [1134] = {.lex_state = 73}, - [1135] = {.lex_state = 122, .external_lex_state = 4}, - [1136] = {.lex_state = 132, .external_lex_state = 4}, - [1137] = {.lex_state = 56, .external_lex_state = 2}, - [1138] = {.lex_state = 245, .external_lex_state = 7}, - [1139] = {.lex_state = 56, .external_lex_state = 2}, - [1140] = {.lex_state = 132, .external_lex_state = 4}, - [1141] = {.lex_state = 73}, + [1135] = {.lex_state = 188, .external_lex_state = 23}, + [1136] = {.lex_state = 91}, + [1137] = {.lex_state = 98}, + [1138] = {.lex_state = 188, .external_lex_state = 23}, + [1139] = {.lex_state = 107, .external_lex_state = 6}, + [1140] = {.lex_state = 56, .external_lex_state = 2}, + [1141] = {.lex_state = 56, .external_lex_state = 2}, [1142] = {.lex_state = 56, .external_lex_state = 2}, - [1143] = {.lex_state = 132, .external_lex_state = 4}, - [1144] = {.lex_state = 73}, - [1145] = {.lex_state = 56, .external_lex_state = 2}, - [1146] = {.lex_state = 73}, - [1147] = {.lex_state = 73}, - [1148] = {.lex_state = 132, .external_lex_state = 4}, - [1149] = {.lex_state = 273, .external_lex_state = 13}, - [1150] = {.lex_state = 273, .external_lex_state = 13}, - [1151] = {.lex_state = 73}, - [1152] = {.lex_state = 73}, - [1153] = {.lex_state = 273}, - [1154] = {.lex_state = 73}, - [1155] = {.lex_state = 73}, - [1156] = {.lex_state = 122, .external_lex_state = 10}, - [1157] = {.lex_state = 132, .external_lex_state = 4}, - [1158] = {.lex_state = 73}, - [1159] = {.lex_state = 73}, - [1160] = {.lex_state = 73}, - [1161] = {.lex_state = 122, .external_lex_state = 10}, - [1162] = {.lex_state = 213, .external_lex_state = 24}, - [1163] = {.lex_state = 213, .external_lex_state = 24}, - [1164] = {.lex_state = 213, .external_lex_state = 16}, - [1165] = {.lex_state = 234, .external_lex_state = 16}, - [1166] = {.lex_state = 122, .external_lex_state = 10}, - [1167] = {.lex_state = 232, .external_lex_state = 16}, - [1168] = {.lex_state = 122, .external_lex_state = 10}, - [1169] = {.lex_state = 236}, - [1170] = {.lex_state = 234, .external_lex_state = 16}, - [1171] = {.lex_state = 122, .external_lex_state = 10}, - [1172] = {.lex_state = 236}, - [1173] = {.lex_state = 234, .external_lex_state = 16}, - [1174] = {.lex_state = 236}, - [1175] = {.lex_state = 234, .external_lex_state = 16}, - [1176] = {.lex_state = 234, .external_lex_state = 16}, - [1177] = {.lex_state = 122, .external_lex_state = 10}, - [1178] = {.lex_state = 234, .external_lex_state = 16}, - [1179] = {.lex_state = 215, .external_lex_state = 23}, - [1180] = {.lex_state = 213, .external_lex_state = 22}, - [1181] = {.lex_state = 257, .external_lex_state = 23}, - [1182] = {.lex_state = 213, .external_lex_state = 22}, - [1183] = {.lex_state = 73}, - [1184] = {.lex_state = 132, .external_lex_state = 10}, - [1185] = {.lex_state = 132, .external_lex_state = 10}, - [1186] = {.lex_state = 132, .external_lex_state = 4}, - [1187] = {.lex_state = 130, .external_lex_state = 21}, - [1188] = {.lex_state = 220, .external_lex_state = 7}, - [1189] = {.lex_state = 124}, - [1190] = {.lex_state = 56}, - [1191] = {.lex_state = 73}, - [1192] = {.lex_state = 56}, - [1193] = {.lex_state = 73}, - [1194] = {.lex_state = 73}, - [1195] = {.lex_state = 220, .external_lex_state = 23}, - [1196] = {.lex_state = 126, .external_lex_state = 14}, + [1143] = {.lex_state = 228, .external_lex_state = 21}, + [1144] = {.lex_state = 228, .external_lex_state = 21}, + [1145] = {.lex_state = 188, .external_lex_state = 23}, + [1146] = {.lex_state = 188, .external_lex_state = 23}, + [1147] = {.lex_state = 228, .external_lex_state = 21}, + [1148] = {.lex_state = 188, .external_lex_state = 21}, + [1149] = {.lex_state = 214, .external_lex_state = 13}, + [1150] = {.lex_state = 214, .external_lex_state = 13}, + [1151] = {.lex_state = 198, .external_lex_state = 22}, + [1152] = {.lex_state = 198, .external_lex_state = 22}, + [1153] = {.lex_state = 198, .external_lex_state = 16}, + [1154] = {.lex_state = 219, .external_lex_state = 16}, + [1155] = {.lex_state = 214, .external_lex_state = 13}, + [1156] = {.lex_state = 217, .external_lex_state = 16}, + [1157] = {.lex_state = 214, .external_lex_state = 13}, + [1158] = {.lex_state = 221}, + [1159] = {.lex_state = 219, .external_lex_state = 16}, + [1160] = {.lex_state = 214, .external_lex_state = 13}, + [1161] = {.lex_state = 221}, + [1162] = {.lex_state = 219, .external_lex_state = 16}, + [1163] = {.lex_state = 221}, + [1164] = {.lex_state = 219, .external_lex_state = 16}, + [1165] = {.lex_state = 219, .external_lex_state = 16}, + [1166] = {.lex_state = 214, .external_lex_state = 13}, + [1167] = {.lex_state = 219, .external_lex_state = 16}, + [1168] = {.lex_state = 214, .external_lex_state = 13}, + [1169] = {.lex_state = 203, .external_lex_state = 2}, + [1170] = {.lex_state = 56, .external_lex_state = 2}, + [1171] = {.lex_state = 214, .external_lex_state = 13}, + [1172] = {.lex_state = 203, .external_lex_state = 2}, + [1173] = {.lex_state = 126, .external_lex_state = 3}, + [1174] = {.lex_state = 194}, + [1175] = {.lex_state = 126, .external_lex_state = 14}, + [1176] = {.lex_state = 126, .external_lex_state = 14}, + [1177] = {.lex_state = 198, .external_lex_state = 22}, + [1178] = {.lex_state = 198, .external_lex_state = 22}, + [1179] = {.lex_state = 198, .external_lex_state = 16}, + [1180] = {.lex_state = 219, .external_lex_state = 16}, + [1181] = {.lex_state = 126, .external_lex_state = 14}, + [1182] = {.lex_state = 217, .external_lex_state = 16}, + [1183] = {.lex_state = 126, .external_lex_state = 14}, + [1184] = {.lex_state = 221}, + [1185] = {.lex_state = 219, .external_lex_state = 16}, + [1186] = {.lex_state = 126, .external_lex_state = 14}, + [1187] = {.lex_state = 221}, + [1188] = {.lex_state = 219, .external_lex_state = 16}, + [1189] = {.lex_state = 221}, + [1190] = {.lex_state = 219, .external_lex_state = 16}, + [1191] = {.lex_state = 219, .external_lex_state = 16}, + [1192] = {.lex_state = 126, .external_lex_state = 14}, + [1193] = {.lex_state = 219, .external_lex_state = 16}, + [1194] = {.lex_state = 126, .external_lex_state = 14}, + [1195] = {.lex_state = 203, .external_lex_state = 2}, + [1196] = {.lex_state = 56, .external_lex_state = 2}, [1197] = {.lex_state = 126, .external_lex_state = 14}, - [1198] = {.lex_state = 126, .external_lex_state = 14}, + [1198] = {.lex_state = 203, .external_lex_state = 2}, [1199] = {.lex_state = 126, .external_lex_state = 10}, - [1200] = {.lex_state = 259, .external_lex_state = 23}, - [1201] = {.lex_state = 220, .external_lex_state = 5}, - [1202] = {.lex_state = 220, .external_lex_state = 5}, - [1203] = {.lex_state = 220, .external_lex_state = 5}, - [1204] = {.lex_state = 132, .external_lex_state = 4}, - [1205] = {.lex_state = 220, .external_lex_state = 7}, - [1206] = {.lex_state = 169, .external_lex_state = 2}, - [1207] = {.lex_state = 169}, - [1208] = {.lex_state = 222, .external_lex_state = 13}, - [1209] = {.lex_state = 134, .external_lex_state = 11}, - [1210] = {.lex_state = 134, .external_lex_state = 11}, - [1211] = {.lex_state = 213, .external_lex_state = 24}, - [1212] = {.lex_state = 213, .external_lex_state = 24}, - [1213] = {.lex_state = 213, .external_lex_state = 16}, - [1214] = {.lex_state = 234, .external_lex_state = 16}, - [1215] = {.lex_state = 134, .external_lex_state = 11}, - [1216] = {.lex_state = 232, .external_lex_state = 16}, - [1217] = {.lex_state = 134, .external_lex_state = 11}, - [1218] = {.lex_state = 236}, - [1219] = {.lex_state = 234, .external_lex_state = 16}, - [1220] = {.lex_state = 134, .external_lex_state = 11}, - [1221] = {.lex_state = 236}, - [1222] = {.lex_state = 234, .external_lex_state = 16}, - [1223] = {.lex_state = 236}, - [1224] = {.lex_state = 234, .external_lex_state = 16}, - [1225] = {.lex_state = 234, .external_lex_state = 16}, - [1226] = {.lex_state = 134, .external_lex_state = 11}, - [1227] = {.lex_state = 234, .external_lex_state = 16}, - [1228] = {.lex_state = 73}, - [1229] = {.lex_state = 205, .external_lex_state = 27}, - [1230] = {.lex_state = 91}, - [1231] = {.lex_state = 98}, - [1232] = {.lex_state = 205, .external_lex_state = 27}, - [1233] = {.lex_state = 107, .external_lex_state = 6}, - [1234] = {.lex_state = 56, .external_lex_state = 2}, - [1235] = {.lex_state = 56, .external_lex_state = 2}, - [1236] = {.lex_state = 56, .external_lex_state = 2}, - [1237] = {.lex_state = 245, .external_lex_state = 23}, - [1238] = {.lex_state = 245, .external_lex_state = 23}, - [1239] = {.lex_state = 205, .external_lex_state = 27}, - [1240] = {.lex_state = 205, .external_lex_state = 27}, - [1241] = {.lex_state = 245, .external_lex_state = 23}, - [1242] = {.lex_state = 205, .external_lex_state = 23}, - [1243] = {.lex_state = 229, .external_lex_state = 13}, - [1244] = {.lex_state = 229, .external_lex_state = 13}, - [1245] = {.lex_state = 213, .external_lex_state = 24}, - [1246] = {.lex_state = 213, .external_lex_state = 24}, - [1247] = {.lex_state = 213, .external_lex_state = 16}, - [1248] = {.lex_state = 234, .external_lex_state = 16}, - [1249] = {.lex_state = 229, .external_lex_state = 13}, - [1250] = {.lex_state = 232, .external_lex_state = 16}, - [1251] = {.lex_state = 229, .external_lex_state = 13}, - [1252] = {.lex_state = 236}, - [1253] = {.lex_state = 234, .external_lex_state = 16}, - [1254] = {.lex_state = 229, .external_lex_state = 13}, - [1255] = {.lex_state = 236}, - [1256] = {.lex_state = 234, .external_lex_state = 16}, - [1257] = {.lex_state = 236}, - [1258] = {.lex_state = 234, .external_lex_state = 16}, - [1259] = {.lex_state = 234, .external_lex_state = 16}, - [1260] = {.lex_state = 229, .external_lex_state = 13}, - [1261] = {.lex_state = 234, .external_lex_state = 16}, - [1262] = {.lex_state = 126, .external_lex_state = 3}, - [1263] = {.lex_state = 169}, - [1264] = {.lex_state = 126, .external_lex_state = 14}, - [1265] = {.lex_state = 126, .external_lex_state = 14}, - [1266] = {.lex_state = 213, .external_lex_state = 24}, - [1267] = {.lex_state = 213, .external_lex_state = 24}, - [1268] = {.lex_state = 213, .external_lex_state = 16}, - [1269] = {.lex_state = 234, .external_lex_state = 16}, - [1270] = {.lex_state = 126, .external_lex_state = 14}, - [1271] = {.lex_state = 232, .external_lex_state = 16}, - [1272] = {.lex_state = 126, .external_lex_state = 14}, - [1273] = {.lex_state = 236}, - [1274] = {.lex_state = 234, .external_lex_state = 16}, - [1275] = {.lex_state = 126, .external_lex_state = 14}, - [1276] = {.lex_state = 236}, - [1277] = {.lex_state = 234, .external_lex_state = 16}, - [1278] = {.lex_state = 236}, - [1279] = {.lex_state = 234, .external_lex_state = 16}, - [1280] = {.lex_state = 234, .external_lex_state = 16}, - [1281] = {.lex_state = 126, .external_lex_state = 14}, - [1282] = {.lex_state = 234, .external_lex_state = 16}, - [1283] = {.lex_state = 126, .external_lex_state = 10}, - [1284] = {.lex_state = 126, .external_lex_state = 10}, - [1285] = {.lex_state = 213, .external_lex_state = 24}, - [1286] = {.lex_state = 213, .external_lex_state = 24}, - [1287] = {.lex_state = 213, .external_lex_state = 16}, - [1288] = {.lex_state = 234, .external_lex_state = 16}, - [1289] = {.lex_state = 126, .external_lex_state = 10}, - [1290] = {.lex_state = 232, .external_lex_state = 16}, - [1291] = {.lex_state = 126, .external_lex_state = 10}, - [1292] = {.lex_state = 236}, - [1293] = {.lex_state = 234, .external_lex_state = 16}, - [1294] = {.lex_state = 126, .external_lex_state = 10}, - [1295] = {.lex_state = 236}, - [1296] = {.lex_state = 234, .external_lex_state = 16}, - [1297] = {.lex_state = 236}, - [1298] = {.lex_state = 234, .external_lex_state = 16}, - [1299] = {.lex_state = 234, .external_lex_state = 16}, - [1300] = {.lex_state = 126, .external_lex_state = 10}, - [1301] = {.lex_state = 234, .external_lex_state = 16}, - [1302] = {.lex_state = 169, .external_lex_state = 15}, - [1303] = {.lex_state = 169, .external_lex_state = 15}, - [1304] = {.lex_state = 213, .external_lex_state = 24}, - [1305] = {.lex_state = 213, .external_lex_state = 24}, - [1306] = {.lex_state = 213, .external_lex_state = 16}, - [1307] = {.lex_state = 234, .external_lex_state = 16}, - [1308] = {.lex_state = 169, .external_lex_state = 15}, - [1309] = {.lex_state = 232, .external_lex_state = 16}, - [1310] = {.lex_state = 169, .external_lex_state = 15}, - [1311] = {.lex_state = 236}, - [1312] = {.lex_state = 234, .external_lex_state = 16}, - [1313] = {.lex_state = 169, .external_lex_state = 15}, - [1314] = {.lex_state = 236}, - [1315] = {.lex_state = 234, .external_lex_state = 16}, - [1316] = {.lex_state = 236}, - [1317] = {.lex_state = 234, .external_lex_state = 16}, - [1318] = {.lex_state = 234, .external_lex_state = 16}, - [1319] = {.lex_state = 169, .external_lex_state = 15}, - [1320] = {.lex_state = 234, .external_lex_state = 16}, - [1321] = {.lex_state = 91, .external_lex_state = 13}, - [1322] = {.lex_state = 213, .external_lex_state = 24}, - [1323] = {.lex_state = 213, .external_lex_state = 24}, - [1324] = {.lex_state = 213, .external_lex_state = 16}, - [1325] = {.lex_state = 234, .external_lex_state = 16}, - [1326] = {.lex_state = 91, .external_lex_state = 13}, - [1327] = {.lex_state = 232, .external_lex_state = 16}, - [1328] = {.lex_state = 91, .external_lex_state = 13}, - [1329] = {.lex_state = 236}, - [1330] = {.lex_state = 234, .external_lex_state = 16}, - [1331] = {.lex_state = 91, .external_lex_state = 13}, - [1332] = {.lex_state = 236}, - [1333] = {.lex_state = 234, .external_lex_state = 16}, - [1334] = {.lex_state = 236}, - [1335] = {.lex_state = 234, .external_lex_state = 16}, - [1336] = {.lex_state = 234, .external_lex_state = 16}, - [1337] = {.lex_state = 91, .external_lex_state = 13}, - [1338] = {.lex_state = 234, .external_lex_state = 16}, - [1339] = {.lex_state = 209, .external_lex_state = 12}, - [1340] = {.lex_state = 157, .external_lex_state = 24}, - [1341] = {.lex_state = 209, .external_lex_state = 12}, - [1342] = {.lex_state = 157, .external_lex_state = 24}, - [1343] = {.lex_state = 134, .external_lex_state = 12}, + [1200] = {.lex_state = 126, .external_lex_state = 10}, + [1201] = {.lex_state = 198, .external_lex_state = 22}, + [1202] = {.lex_state = 198, .external_lex_state = 22}, + [1203] = {.lex_state = 198, .external_lex_state = 16}, + [1204] = {.lex_state = 219, .external_lex_state = 16}, + [1205] = {.lex_state = 126, .external_lex_state = 10}, + [1206] = {.lex_state = 217, .external_lex_state = 16}, + [1207] = {.lex_state = 126, .external_lex_state = 10}, + [1208] = {.lex_state = 221}, + [1209] = {.lex_state = 219, .external_lex_state = 16}, + [1210] = {.lex_state = 126, .external_lex_state = 10}, + [1211] = {.lex_state = 221}, + [1212] = {.lex_state = 219, .external_lex_state = 16}, + [1213] = {.lex_state = 221}, + [1214] = {.lex_state = 219, .external_lex_state = 16}, + [1215] = {.lex_state = 219, .external_lex_state = 16}, + [1216] = {.lex_state = 126, .external_lex_state = 10}, + [1217] = {.lex_state = 219, .external_lex_state = 16}, + [1218] = {.lex_state = 126, .external_lex_state = 10}, + [1219] = {.lex_state = 203, .external_lex_state = 2}, + [1220] = {.lex_state = 56, .external_lex_state = 2}, + [1221] = {.lex_state = 126, .external_lex_state = 10}, + [1222] = {.lex_state = 203, .external_lex_state = 2}, + [1223] = {.lex_state = 73, .external_lex_state = 15}, + [1224] = {.lex_state = 73, .external_lex_state = 15}, + [1225] = {.lex_state = 198, .external_lex_state = 22}, + [1226] = {.lex_state = 198, .external_lex_state = 22}, + [1227] = {.lex_state = 198, .external_lex_state = 16}, + [1228] = {.lex_state = 219, .external_lex_state = 16}, + [1229] = {.lex_state = 73, .external_lex_state = 15}, + [1230] = {.lex_state = 217, .external_lex_state = 16}, + [1231] = {.lex_state = 73, .external_lex_state = 15}, + [1232] = {.lex_state = 221}, + [1233] = {.lex_state = 219, .external_lex_state = 16}, + [1234] = {.lex_state = 73, .external_lex_state = 15}, + [1235] = {.lex_state = 221}, + [1236] = {.lex_state = 219, .external_lex_state = 16}, + [1237] = {.lex_state = 221}, + [1238] = {.lex_state = 219, .external_lex_state = 16}, + [1239] = {.lex_state = 219, .external_lex_state = 16}, + [1240] = {.lex_state = 73, .external_lex_state = 15}, + [1241] = {.lex_state = 219, .external_lex_state = 16}, + [1242] = {.lex_state = 73, .external_lex_state = 15}, + [1243] = {.lex_state = 203, .external_lex_state = 2}, + [1244] = {.lex_state = 56, .external_lex_state = 2}, + [1245] = {.lex_state = 73, .external_lex_state = 15}, + [1246] = {.lex_state = 203, .external_lex_state = 2}, + [1247] = {.lex_state = 91, .external_lex_state = 13}, + [1248] = {.lex_state = 198, .external_lex_state = 22}, + [1249] = {.lex_state = 198, .external_lex_state = 22}, + [1250] = {.lex_state = 198, .external_lex_state = 16}, + [1251] = {.lex_state = 219, .external_lex_state = 16}, + [1252] = {.lex_state = 91, .external_lex_state = 13}, + [1253] = {.lex_state = 217, .external_lex_state = 16}, + [1254] = {.lex_state = 91, .external_lex_state = 13}, + [1255] = {.lex_state = 221}, + [1256] = {.lex_state = 219, .external_lex_state = 16}, + [1257] = {.lex_state = 91, .external_lex_state = 13}, + [1258] = {.lex_state = 221}, + [1259] = {.lex_state = 219, .external_lex_state = 16}, + [1260] = {.lex_state = 221}, + [1261] = {.lex_state = 219, .external_lex_state = 16}, + [1262] = {.lex_state = 219, .external_lex_state = 16}, + [1263] = {.lex_state = 91, .external_lex_state = 13}, + [1264] = {.lex_state = 219, .external_lex_state = 16}, + [1265] = {.lex_state = 91, .external_lex_state = 13}, + [1266] = {.lex_state = 203, .external_lex_state = 2}, + [1267] = {.lex_state = 56, .external_lex_state = 2}, + [1268] = {.lex_state = 192, .external_lex_state = 12}, + [1269] = {.lex_state = 157, .external_lex_state = 22}, + [1270] = {.lex_state = 192, .external_lex_state = 12}, + [1271] = {.lex_state = 157, .external_lex_state = 22}, + [1272] = {.lex_state = 134, .external_lex_state = 12}, + [1273] = {.lex_state = 73}, + [1274] = {.lex_state = 115, .external_lex_state = 5}, + [1275] = {.lex_state = 198, .external_lex_state = 22}, + [1276] = {.lex_state = 198, .external_lex_state = 22}, + [1277] = {.lex_state = 151}, + [1278] = {.lex_state = 91}, + [1279] = {.lex_state = 198, .external_lex_state = 22}, + [1280] = {.lex_state = 198, .external_lex_state = 22}, + [1281] = {.lex_state = 198, .external_lex_state = 22}, + [1282] = {.lex_state = 115, .external_lex_state = 5}, + [1283] = {.lex_state = 62}, + [1284] = {.lex_state = 157, .external_lex_state = 16}, + [1285] = {.lex_state = 160, .external_lex_state = 6}, + [1286] = {.lex_state = 157, .external_lex_state = 16}, + [1287] = {.lex_state = 157, .external_lex_state = 16}, + [1288] = {.lex_state = 126, .external_lex_state = 4}, + [1289] = {.lex_state = 130, .external_lex_state = 8}, + [1290] = {.lex_state = 56, .external_lex_state = 2}, + [1291] = {.lex_state = 83, .external_lex_state = 4}, + [1292] = {.lex_state = 113, .external_lex_state = 8}, + [1293] = {.lex_state = 56, .external_lex_state = 2}, + [1294] = {.lex_state = 126, .external_lex_state = 4}, + [1295] = {.lex_state = 130, .external_lex_state = 8}, + [1296] = {.lex_state = 56, .external_lex_state = 2}, + [1297] = {.lex_state = 219, .external_lex_state = 22}, + [1298] = {.lex_state = 219, .external_lex_state = 22}, + [1299] = {.lex_state = 219, .external_lex_state = 22}, + [1300] = {.lex_state = 151}, + [1301] = {.lex_state = 217, .external_lex_state = 16}, + [1302] = {.lex_state = 219, .external_lex_state = 22}, + [1303] = {.lex_state = 221}, + [1304] = {.lex_state = 219, .external_lex_state = 16}, + [1305] = {.lex_state = 62}, + [1306] = {.lex_state = 157, .external_lex_state = 16}, + [1307] = {.lex_state = 157, .external_lex_state = 16}, + [1308] = {.lex_state = 157, .external_lex_state = 16}, + [1309] = {.lex_state = 219, .external_lex_state = 22}, + [1310] = {.lex_state = 221}, + [1311] = {.lex_state = 219, .external_lex_state = 16}, + [1312] = {.lex_state = 219, .external_lex_state = 22}, + [1313] = {.lex_state = 221}, + [1314] = {.lex_state = 219, .external_lex_state = 16}, + [1315] = {.lex_state = 115, .external_lex_state = 5}, + [1316] = {.lex_state = 219, .external_lex_state = 16}, + [1317] = {.lex_state = 219, .external_lex_state = 22}, + [1318] = {.lex_state = 203, .external_lex_state = 2}, + [1319] = {.lex_state = 126, .external_lex_state = 4}, + [1320] = {.lex_state = 130, .external_lex_state = 8}, + [1321] = {.lex_state = 56, .external_lex_state = 2}, + [1322] = {.lex_state = 83, .external_lex_state = 4}, + [1323] = {.lex_state = 113, .external_lex_state = 8}, + [1324] = {.lex_state = 219, .external_lex_state = 22}, + [1325] = {.lex_state = 203, .external_lex_state = 2}, + [1326] = {.lex_state = 126, .external_lex_state = 4}, + [1327] = {.lex_state = 130, .external_lex_state = 8}, + [1328] = {.lex_state = 198, .external_lex_state = 22}, + [1329] = {.lex_state = 198, .external_lex_state = 22}, + [1330] = {.lex_state = 198, .external_lex_state = 16}, + [1331] = {.lex_state = 219, .external_lex_state = 16}, + [1332] = {.lex_state = 115, .external_lex_state = 5}, + [1333] = {.lex_state = 219, .external_lex_state = 16}, + [1334] = {.lex_state = 115, .external_lex_state = 5}, + [1335] = {.lex_state = 219, .external_lex_state = 16}, + [1336] = {.lex_state = 115, .external_lex_state = 5}, + [1337] = {.lex_state = 219, .external_lex_state = 16}, + [1338] = {.lex_state = 115, .external_lex_state = 5}, + [1339] = {.lex_state = 219, .external_lex_state = 16}, + [1340] = {.lex_state = 115, .external_lex_state = 5}, + [1341] = {.lex_state = 226, .external_lex_state = 7}, + [1342] = {.lex_state = 124}, + [1343] = {.lex_state = 56}, [1344] = {.lex_state = 73}, - [1345] = {.lex_state = 115, .external_lex_state = 5}, - [1346] = {.lex_state = 213, .external_lex_state = 24}, - [1347] = {.lex_state = 213, .external_lex_state = 24}, - [1348] = {.lex_state = 151}, - [1349] = {.lex_state = 91}, - [1350] = {.lex_state = 213, .external_lex_state = 24}, - [1351] = {.lex_state = 213, .external_lex_state = 24}, - [1352] = {.lex_state = 213, .external_lex_state = 24}, - [1353] = {.lex_state = 115, .external_lex_state = 5}, - [1354] = {.lex_state = 62}, - [1355] = {.lex_state = 157, .external_lex_state = 16}, - [1356] = {.lex_state = 160, .external_lex_state = 6}, - [1357] = {.lex_state = 157, .external_lex_state = 16}, - [1358] = {.lex_state = 157, .external_lex_state = 16}, - [1359] = {.lex_state = 162}, - [1360] = {.lex_state = 169, .external_lex_state = 2}, - [1361] = {.lex_state = 162}, - [1362] = {.lex_state = 177, .external_lex_state = 2}, - [1363] = {.lex_state = 162}, - [1364] = {.lex_state = 169, .external_lex_state = 2}, - [1365] = {.lex_state = 234, .external_lex_state = 24}, - [1366] = {.lex_state = 234, .external_lex_state = 24}, - [1367] = {.lex_state = 234, .external_lex_state = 24}, - [1368] = {.lex_state = 151}, - [1369] = {.lex_state = 232, .external_lex_state = 16}, - [1370] = {.lex_state = 234, .external_lex_state = 24}, - [1371] = {.lex_state = 236}, - [1372] = {.lex_state = 234, .external_lex_state = 16}, + [1345] = {.lex_state = 56}, + [1346] = {.lex_state = 73}, + [1347] = {.lex_state = 73}, + [1348] = {.lex_state = 226, .external_lex_state = 21}, + [1349] = {.lex_state = 244, .external_lex_state = 21}, + [1350] = {.lex_state = 226, .external_lex_state = 5}, + [1351] = {.lex_state = 226, .external_lex_state = 5}, + [1352] = {.lex_state = 226, .external_lex_state = 5}, + [1353] = {.lex_state = 226, .external_lex_state = 7}, + [1354] = {.lex_state = 115, .external_lex_state = 5}, + [1355] = {.lex_state = 132, .external_lex_state = 4}, + [1356] = {.lex_state = 217, .external_lex_state = 16}, + [1357] = {.lex_state = 165, .external_lex_state = 17}, + [1358] = {.lex_state = 221}, + [1359] = {.lex_state = 219, .external_lex_state = 16}, + [1360] = {.lex_state = 62}, + [1361] = {.lex_state = 157, .external_lex_state = 16}, + [1362] = {.lex_state = 157, .external_lex_state = 16}, + [1363] = {.lex_state = 157, .external_lex_state = 16}, + [1364] = {.lex_state = 165, .external_lex_state = 17}, + [1365] = {.lex_state = 221}, + [1366] = {.lex_state = 219, .external_lex_state = 16}, + [1367] = {.lex_state = 165, .external_lex_state = 17}, + [1368] = {.lex_state = 221}, + [1369] = {.lex_state = 219, .external_lex_state = 16}, + [1370] = {.lex_state = 188, .external_lex_state = 5}, + [1371] = {.lex_state = 132, .external_lex_state = 4}, + [1372] = {.lex_state = 62}, [1373] = {.lex_state = 62}, - [1374] = {.lex_state = 157, .external_lex_state = 16}, - [1375] = {.lex_state = 157, .external_lex_state = 16}, - [1376] = {.lex_state = 157, .external_lex_state = 16}, - [1377] = {.lex_state = 234, .external_lex_state = 24}, - [1378] = {.lex_state = 236}, - [1379] = {.lex_state = 234, .external_lex_state = 16}, - [1380] = {.lex_state = 234, .external_lex_state = 24}, - [1381] = {.lex_state = 236}, - [1382] = {.lex_state = 234, .external_lex_state = 16}, - [1383] = {.lex_state = 115, .external_lex_state = 5}, - [1384] = {.lex_state = 234, .external_lex_state = 16}, - [1385] = {.lex_state = 234, .external_lex_state = 24}, - [1386] = {.lex_state = 234, .external_lex_state = 24}, - [1387] = {.lex_state = 213, .external_lex_state = 24}, - [1388] = {.lex_state = 213, .external_lex_state = 24}, - [1389] = {.lex_state = 213, .external_lex_state = 16}, - [1390] = {.lex_state = 234, .external_lex_state = 16}, - [1391] = {.lex_state = 115, .external_lex_state = 5}, - [1392] = {.lex_state = 234, .external_lex_state = 16}, - [1393] = {.lex_state = 115, .external_lex_state = 5}, - [1394] = {.lex_state = 234, .external_lex_state = 16}, - [1395] = {.lex_state = 115, .external_lex_state = 5}, - [1396] = {.lex_state = 234, .external_lex_state = 16}, - [1397] = {.lex_state = 115, .external_lex_state = 5}, - [1398] = {.lex_state = 234, .external_lex_state = 16}, - [1399] = {.lex_state = 169, .external_lex_state = 15}, - [1400] = {.lex_state = 249}, - [1401] = {.lex_state = 211, .external_lex_state = 4}, - [1402] = {.lex_state = 119, .external_lex_state = 4}, - [1403] = {.lex_state = 122, .external_lex_state = 4}, - [1404] = {.lex_state = 56, .external_lex_state = 2}, - [1405] = {.lex_state = 162}, - [1406] = {.lex_state = 265, .external_lex_state = 18}, - [1407] = {.lex_state = 56, .external_lex_state = 2}, - [1408] = {.lex_state = 162}, - [1409] = {.lex_state = 241, .external_lex_state = 18}, - [1410] = {.lex_state = 162}, - [1411] = {.lex_state = 73}, - [1412] = {.lex_state = 56, .external_lex_state = 2}, - [1413] = {.lex_state = 73}, - [1414] = {.lex_state = 73}, - [1415] = {.lex_state = 119, .external_lex_state = 4}, - [1416] = {.lex_state = 73}, - [1417] = {.lex_state = 119, .external_lex_state = 4}, - [1418] = {.lex_state = 124}, - [1419] = {.lex_state = 276, .external_lex_state = 26}, - [1420] = {.lex_state = 213, .external_lex_state = 22}, - [1421] = {.lex_state = 56}, - [1422] = {.lex_state = 73}, - [1423] = {.lex_state = 162}, - [1424] = {.lex_state = 162}, - [1425] = {.lex_state = 218, .external_lex_state = 2}, - [1426] = {.lex_state = 56}, - [1427] = {.lex_state = 73}, - [1428] = {.lex_state = 56, .external_lex_state = 20}, - [1429] = {.lex_state = 73}, - [1430] = {.lex_state = 241, .external_lex_state = 26}, - [1431] = {.lex_state = 162, .external_lex_state = 6}, - [1432] = {.lex_state = 169}, - [1433] = {.lex_state = 162, .external_lex_state = 25}, - [1434] = {.lex_state = 162, .external_lex_state = 25}, - [1435] = {.lex_state = 162, .external_lex_state = 25}, - [1436] = {.lex_state = 162, .external_lex_state = 25}, - [1437] = {.lex_state = 162, .external_lex_state = 25}, - [1438] = {.lex_state = 151}, - [1439] = {.lex_state = 232, .external_lex_state = 16}, - [1440] = {.lex_state = 162, .external_lex_state = 25}, - [1441] = {.lex_state = 236}, - [1442] = {.lex_state = 234, .external_lex_state = 16}, - [1443] = {.lex_state = 62}, - [1444] = {.lex_state = 157, .external_lex_state = 16}, - [1445] = {.lex_state = 157, .external_lex_state = 16}, - [1446] = {.lex_state = 157, .external_lex_state = 16}, - [1447] = {.lex_state = 162, .external_lex_state = 25}, - [1448] = {.lex_state = 236}, - [1449] = {.lex_state = 234, .external_lex_state = 16}, - [1450] = {.lex_state = 162, .external_lex_state = 25}, - [1451] = {.lex_state = 236}, - [1452] = {.lex_state = 234, .external_lex_state = 16}, - [1453] = {.lex_state = 162, .external_lex_state = 25}, - [1454] = {.lex_state = 162, .external_lex_state = 25}, - [1455] = {.lex_state = 162, .external_lex_state = 13}, - [1456] = {.lex_state = 162, .external_lex_state = 13}, - [1457] = {.lex_state = 162, .external_lex_state = 13}, - [1458] = {.lex_state = 151}, - [1459] = {.lex_state = 232, .external_lex_state = 16}, - [1460] = {.lex_state = 162, .external_lex_state = 13}, - [1461] = {.lex_state = 236}, - [1462] = {.lex_state = 234, .external_lex_state = 16}, - [1463] = {.lex_state = 62}, - [1464] = {.lex_state = 157, .external_lex_state = 16}, - [1465] = {.lex_state = 157, .external_lex_state = 16}, - [1466] = {.lex_state = 157, .external_lex_state = 16}, - [1467] = {.lex_state = 162, .external_lex_state = 13}, - [1468] = {.lex_state = 236}, - [1469] = {.lex_state = 234, .external_lex_state = 16}, - [1470] = {.lex_state = 162, .external_lex_state = 13}, - [1471] = {.lex_state = 236}, - [1472] = {.lex_state = 234, .external_lex_state = 16}, - [1473] = {.lex_state = 162, .external_lex_state = 13}, - [1474] = {.lex_state = 162, .external_lex_state = 13}, - [1475] = {.lex_state = 164, .external_lex_state = 17}, - [1476] = {.lex_state = 164, .external_lex_state = 17}, - [1477] = {.lex_state = 213, .external_lex_state = 24}, - [1478] = {.lex_state = 213, .external_lex_state = 24}, - [1479] = {.lex_state = 213, .external_lex_state = 16}, - [1480] = {.lex_state = 234, .external_lex_state = 16}, - [1481] = {.lex_state = 164, .external_lex_state = 17}, - [1482] = {.lex_state = 232, .external_lex_state = 16}, - [1483] = {.lex_state = 164, .external_lex_state = 17}, - [1484] = {.lex_state = 236}, - [1485] = {.lex_state = 234, .external_lex_state = 16}, - [1486] = {.lex_state = 164, .external_lex_state = 17}, - [1487] = {.lex_state = 236}, - [1488] = {.lex_state = 234, .external_lex_state = 16}, - [1489] = {.lex_state = 236}, - [1490] = {.lex_state = 234, .external_lex_state = 16}, - [1491] = {.lex_state = 234, .external_lex_state = 16}, - [1492] = {.lex_state = 164, .external_lex_state = 17}, - [1493] = {.lex_state = 234, .external_lex_state = 16}, - [1494] = {.lex_state = 263, .external_lex_state = 26}, - [1495] = {.lex_state = 162}, - [1496] = {.lex_state = 241, .external_lex_state = 17}, - [1497] = {.lex_state = 241, .external_lex_state = 17}, - [1498] = {.lex_state = 265, .external_lex_state = 18}, - [1499] = {.lex_state = 241, .external_lex_state = 17}, - [1500] = {.lex_state = 162}, - [1501] = {.lex_state = 241, .external_lex_state = 18}, - [1502] = {.lex_state = 177, .external_lex_state = 15}, - [1503] = {.lex_state = 243, .external_lex_state = 18}, - [1504] = {.lex_state = 124}, - [1505] = {.lex_state = 56}, - [1506] = {.lex_state = 73}, - [1507] = {.lex_state = 56}, - [1508] = {.lex_state = 73}, - [1509] = {.lex_state = 73}, - [1510] = {.lex_state = 243, .external_lex_state = 26}, - [1511] = {.lex_state = 171, .external_lex_state = 25}, - [1512] = {.lex_state = 171, .external_lex_state = 25}, - [1513] = {.lex_state = 171, .external_lex_state = 25}, - [1514] = {.lex_state = 162, .external_lex_state = 13}, - [1515] = {.lex_state = 267, .external_lex_state = 26}, - [1516] = {.lex_state = 243, .external_lex_state = 17}, - [1517] = {.lex_state = 243, .external_lex_state = 17}, - [1518] = {.lex_state = 243, .external_lex_state = 17}, - [1519] = {.lex_state = 243, .external_lex_state = 18}, - [1520] = {.lex_state = 132, .external_lex_state = 4}, - [1521] = {.lex_state = 232, .external_lex_state = 16}, - [1522] = {.lex_state = 182, .external_lex_state = 19}, - [1523] = {.lex_state = 236}, - [1524] = {.lex_state = 234, .external_lex_state = 16}, - [1525] = {.lex_state = 62}, - [1526] = {.lex_state = 157, .external_lex_state = 16}, - [1527] = {.lex_state = 157, .external_lex_state = 16}, - [1528] = {.lex_state = 157, .external_lex_state = 16}, - [1529] = {.lex_state = 182, .external_lex_state = 19}, - [1530] = {.lex_state = 236}, - [1531] = {.lex_state = 234, .external_lex_state = 16}, - [1532] = {.lex_state = 182, .external_lex_state = 19}, - [1533] = {.lex_state = 236}, - [1534] = {.lex_state = 234, .external_lex_state = 16}, - [1535] = {.lex_state = 205, .external_lex_state = 5}, - [1536] = {.lex_state = 132, .external_lex_state = 4}, - [1537] = {.lex_state = 62}, - [1538] = {.lex_state = 62}, - [1539] = {.lex_state = 247, .external_lex_state = 13}, - [1540] = {.lex_state = 247, .external_lex_state = 13}, - [1541] = {.lex_state = 247, .external_lex_state = 13}, - [1542] = {.lex_state = 151}, - [1543] = {.lex_state = 232, .external_lex_state = 16}, - [1544] = {.lex_state = 247, .external_lex_state = 13}, - [1545] = {.lex_state = 236}, - [1546] = {.lex_state = 234, .external_lex_state = 16}, - [1547] = {.lex_state = 62}, - [1548] = {.lex_state = 157, .external_lex_state = 16}, - [1549] = {.lex_state = 157, .external_lex_state = 16}, - [1550] = {.lex_state = 157, .external_lex_state = 16}, - [1551] = {.lex_state = 247, .external_lex_state = 13}, - [1552] = {.lex_state = 236}, - [1553] = {.lex_state = 234, .external_lex_state = 16}, - [1554] = {.lex_state = 247, .external_lex_state = 13}, - [1555] = {.lex_state = 236}, - [1556] = {.lex_state = 234, .external_lex_state = 16}, - [1557] = {.lex_state = 247, .external_lex_state = 13}, - [1558] = {.lex_state = 247, .external_lex_state = 13}, - [1559] = {.lex_state = 130, .external_lex_state = 21}, - [1560] = {.lex_state = 130, .external_lex_state = 21}, - [1561] = {.lex_state = 213, .external_lex_state = 24}, - [1562] = {.lex_state = 213, .external_lex_state = 24}, - [1563] = {.lex_state = 213, .external_lex_state = 16}, - [1564] = {.lex_state = 234, .external_lex_state = 16}, - [1565] = {.lex_state = 130, .external_lex_state = 21}, - [1566] = {.lex_state = 232, .external_lex_state = 16}, - [1567] = {.lex_state = 130, .external_lex_state = 21}, - [1568] = {.lex_state = 236}, - [1569] = {.lex_state = 234, .external_lex_state = 16}, - [1570] = {.lex_state = 130, .external_lex_state = 21}, - [1571] = {.lex_state = 236}, - [1572] = {.lex_state = 234, .external_lex_state = 16}, - [1573] = {.lex_state = 236}, - [1574] = {.lex_state = 234, .external_lex_state = 16}, - [1575] = {.lex_state = 234, .external_lex_state = 16}, - [1576] = {.lex_state = 130, .external_lex_state = 21}, - [1577] = {.lex_state = 234, .external_lex_state = 16}, - [1578] = {.lex_state = 213, .external_lex_state = 22}, - [1579] = {.lex_state = 132, .external_lex_state = 4}, - [1580] = {.lex_state = 222}, - [1581] = {.lex_state = 271}, - [1582] = {.lex_state = 73}, - [1583] = {.lex_state = 271, .external_lex_state = 13}, - [1584] = {.lex_state = 271, .external_lex_state = 13}, - [1585] = {.lex_state = 151}, - [1586] = {.lex_state = 91}, - [1587] = {.lex_state = 271, .external_lex_state = 13}, - [1588] = {.lex_state = 271, .external_lex_state = 13}, - [1589] = {.lex_state = 271, .external_lex_state = 13}, - [1590] = {.lex_state = 62}, - [1591] = {.lex_state = 157, .external_lex_state = 16}, - [1592] = {.lex_state = 160, .external_lex_state = 6}, - [1593] = {.lex_state = 157, .external_lex_state = 16}, - [1594] = {.lex_state = 157, .external_lex_state = 16}, - [1595] = {.lex_state = 162}, - [1596] = {.lex_state = 169, .external_lex_state = 2}, - [1597] = {.lex_state = 162}, - [1598] = {.lex_state = 177, .external_lex_state = 2}, - [1599] = {.lex_state = 162}, - [1600] = {.lex_state = 169, .external_lex_state = 2}, - [1601] = {.lex_state = 269}, - [1602] = {.lex_state = 77}, - [1603] = {.lex_state = 224}, - [1604] = {.lex_state = 271}, - [1605] = {.lex_state = 253, .external_lex_state = 10}, - [1606] = {.lex_state = 253, .external_lex_state = 10}, - [1607] = {.lex_state = 213, .external_lex_state = 24}, - [1608] = {.lex_state = 213, .external_lex_state = 24}, - [1609] = {.lex_state = 213, .external_lex_state = 16}, - [1610] = {.lex_state = 234, .external_lex_state = 16}, - [1611] = {.lex_state = 253, .external_lex_state = 10}, - [1612] = {.lex_state = 232, .external_lex_state = 16}, - [1613] = {.lex_state = 253, .external_lex_state = 10}, - [1614] = {.lex_state = 236}, - [1615] = {.lex_state = 234, .external_lex_state = 16}, - [1616] = {.lex_state = 253, .external_lex_state = 10}, - [1617] = {.lex_state = 236}, - [1618] = {.lex_state = 234, .external_lex_state = 16}, - [1619] = {.lex_state = 236}, - [1620] = {.lex_state = 234, .external_lex_state = 16}, - [1621] = {.lex_state = 234, .external_lex_state = 16}, - [1622] = {.lex_state = 253, .external_lex_state = 10}, - [1623] = {.lex_state = 234, .external_lex_state = 16}, - [1624] = {.lex_state = 249}, - [1625] = {.lex_state = 122, .external_lex_state = 10}, - [1626] = {.lex_state = 132, .external_lex_state = 4}, - [1627] = {.lex_state = 132, .external_lex_state = 4}, - [1628] = {.lex_state = 56, .external_lex_state = 2}, - [1629] = {.lex_state = 56, .external_lex_state = 2}, - [1630] = {.lex_state = 132, .external_lex_state = 4}, - [1631] = {.lex_state = 73}, - [1632] = {.lex_state = 73}, - [1633] = {.lex_state = 179, .external_lex_state = 2}, - [1634] = {.lex_state = 273}, - [1635] = {.lex_state = 273, .external_lex_state = 13}, - [1636] = {.lex_state = 179, .external_lex_state = 2}, - [1637] = {.lex_state = 273}, - [1638] = {.lex_state = 132, .external_lex_state = 4}, - [1639] = {.lex_state = 73}, - [1640] = {.lex_state = 73}, - [1641] = {.lex_state = 132, .external_lex_state = 4}, - [1642] = {.lex_state = 73}, - [1643] = {.lex_state = 132, .external_lex_state = 4}, - [1644] = {.lex_state = 73}, - [1645] = {.lex_state = 132, .external_lex_state = 4}, - [1646] = {.lex_state = 73}, - [1647] = {.lex_state = 122, .external_lex_state = 10}, - [1648] = {.lex_state = 122, .external_lex_state = 10}, - [1649] = {.lex_state = 122, .external_lex_state = 10}, - [1650] = {.lex_state = 234, .external_lex_state = 16}, - [1651] = {.lex_state = 213, .external_lex_state = 24}, - [1652] = {.lex_state = 213, .external_lex_state = 24}, - [1653] = {.lex_state = 213, .external_lex_state = 16}, - [1654] = {.lex_state = 234, .external_lex_state = 16}, - [1655] = {.lex_state = 122, .external_lex_state = 10}, - [1656] = {.lex_state = 234, .external_lex_state = 16}, - [1657] = {.lex_state = 122, .external_lex_state = 10}, - [1658] = {.lex_state = 234, .external_lex_state = 16}, - [1659] = {.lex_state = 122, .external_lex_state = 10}, - [1660] = {.lex_state = 234, .external_lex_state = 16}, - [1661] = {.lex_state = 122, .external_lex_state = 10}, - [1662] = {.lex_state = 234, .external_lex_state = 16}, - [1663] = {.lex_state = 132, .external_lex_state = 4}, - [1664] = {.lex_state = 132, .external_lex_state = 10}, - [1665] = {.lex_state = 132, .external_lex_state = 10}, - [1666] = {.lex_state = 132, .external_lex_state = 4}, - [1667] = {.lex_state = 132, .external_lex_state = 10}, - [1668] = {.lex_state = 130, .external_lex_state = 21}, - [1669] = {.lex_state = 259, .external_lex_state = 23}, - [1670] = {.lex_state = 73}, - [1671] = {.lex_state = 132, .external_lex_state = 10}, - [1672] = {.lex_state = 132, .external_lex_state = 10}, - [1673] = {.lex_state = 73}, - [1674] = {.lex_state = 220, .external_lex_state = 27}, - [1675] = {.lex_state = 220, .external_lex_state = 27}, - [1676] = {.lex_state = 220, .external_lex_state = 27}, - [1677] = {.lex_state = 220, .external_lex_state = 27}, - [1678] = {.lex_state = 220, .external_lex_state = 23}, - [1679] = {.lex_state = 220, .external_lex_state = 5}, - [1680] = {.lex_state = 169, .external_lex_state = 2}, - [1681] = {.lex_state = 134, .external_lex_state = 11}, - [1682] = {.lex_state = 134, .external_lex_state = 11}, - [1683] = {.lex_state = 134, .external_lex_state = 11}, - [1684] = {.lex_state = 234, .external_lex_state = 16}, - [1685] = {.lex_state = 213, .external_lex_state = 24}, - [1686] = {.lex_state = 213, .external_lex_state = 24}, - [1687] = {.lex_state = 213, .external_lex_state = 16}, - [1688] = {.lex_state = 234, .external_lex_state = 16}, - [1689] = {.lex_state = 134, .external_lex_state = 11}, - [1690] = {.lex_state = 234, .external_lex_state = 16}, - [1691] = {.lex_state = 134, .external_lex_state = 11}, - [1692] = {.lex_state = 234, .external_lex_state = 16}, - [1693] = {.lex_state = 134, .external_lex_state = 11}, - [1694] = {.lex_state = 234, .external_lex_state = 16}, - [1695] = {.lex_state = 134, .external_lex_state = 11}, - [1696] = {.lex_state = 234, .external_lex_state = 16}, - [1697] = {.lex_state = 205, .external_lex_state = 27}, - [1698] = {.lex_state = 205, .external_lex_state = 27}, - [1699] = {.lex_state = 245, .external_lex_state = 23}, - [1700] = {.lex_state = 73}, - [1701] = {.lex_state = 205, .external_lex_state = 27}, - [1702] = {.lex_state = 245, .external_lex_state = 27}, - [1703] = {.lex_state = 151}, - [1704] = {.lex_state = 91}, - [1705] = {.lex_state = 245, .external_lex_state = 27}, - [1706] = {.lex_state = 245, .external_lex_state = 27}, - [1707] = {.lex_state = 245, .external_lex_state = 27}, - [1708] = {.lex_state = 62}, - [1709] = {.lex_state = 157, .external_lex_state = 16}, - [1710] = {.lex_state = 160, .external_lex_state = 6}, - [1711] = {.lex_state = 157, .external_lex_state = 16}, - [1712] = {.lex_state = 157, .external_lex_state = 16}, - [1713] = {.lex_state = 162}, - [1714] = {.lex_state = 169, .external_lex_state = 2}, - [1715] = {.lex_state = 162}, - [1716] = {.lex_state = 177, .external_lex_state = 2}, - [1717] = {.lex_state = 162}, - [1718] = {.lex_state = 169, .external_lex_state = 2}, - [1719] = {.lex_state = 229, .external_lex_state = 13}, - [1720] = {.lex_state = 229, .external_lex_state = 13}, - [1721] = {.lex_state = 229, .external_lex_state = 13}, - [1722] = {.lex_state = 234, .external_lex_state = 16}, - [1723] = {.lex_state = 213, .external_lex_state = 24}, - [1724] = {.lex_state = 213, .external_lex_state = 24}, - [1725] = {.lex_state = 213, .external_lex_state = 16}, - [1726] = {.lex_state = 234, .external_lex_state = 16}, - [1727] = {.lex_state = 229, .external_lex_state = 13}, - [1728] = {.lex_state = 234, .external_lex_state = 16}, - [1729] = {.lex_state = 229, .external_lex_state = 13}, - [1730] = {.lex_state = 234, .external_lex_state = 16}, - [1731] = {.lex_state = 229, .external_lex_state = 13}, - [1732] = {.lex_state = 234, .external_lex_state = 16}, - [1733] = {.lex_state = 229, .external_lex_state = 13}, - [1734] = {.lex_state = 234, .external_lex_state = 16}, - [1735] = {.lex_state = 126, .external_lex_state = 3}, - [1736] = {.lex_state = 126, .external_lex_state = 14}, - [1737] = {.lex_state = 126, .external_lex_state = 14}, - [1738] = {.lex_state = 126, .external_lex_state = 14}, - [1739] = {.lex_state = 234, .external_lex_state = 16}, - [1740] = {.lex_state = 213, .external_lex_state = 24}, - [1741] = {.lex_state = 213, .external_lex_state = 24}, - [1742] = {.lex_state = 213, .external_lex_state = 16}, - [1743] = {.lex_state = 234, .external_lex_state = 16}, - [1744] = {.lex_state = 126, .external_lex_state = 14}, - [1745] = {.lex_state = 234, .external_lex_state = 16}, - [1746] = {.lex_state = 126, .external_lex_state = 14}, - [1747] = {.lex_state = 234, .external_lex_state = 16}, - [1748] = {.lex_state = 126, .external_lex_state = 14}, - [1749] = {.lex_state = 234, .external_lex_state = 16}, - [1750] = {.lex_state = 126, .external_lex_state = 14}, - [1751] = {.lex_state = 234, .external_lex_state = 16}, - [1752] = {.lex_state = 126, .external_lex_state = 10}, - [1753] = {.lex_state = 126, .external_lex_state = 10}, - [1754] = {.lex_state = 126, .external_lex_state = 10}, - [1755] = {.lex_state = 234, .external_lex_state = 16}, - [1756] = {.lex_state = 213, .external_lex_state = 24}, - [1757] = {.lex_state = 213, .external_lex_state = 24}, - [1758] = {.lex_state = 213, .external_lex_state = 16}, - [1759] = {.lex_state = 234, .external_lex_state = 16}, - [1760] = {.lex_state = 126, .external_lex_state = 10}, - [1761] = {.lex_state = 234, .external_lex_state = 16}, - [1762] = {.lex_state = 126, .external_lex_state = 10}, - [1763] = {.lex_state = 234, .external_lex_state = 16}, - [1764] = {.lex_state = 126, .external_lex_state = 10}, - [1765] = {.lex_state = 234, .external_lex_state = 16}, - [1766] = {.lex_state = 126, .external_lex_state = 10}, - [1767] = {.lex_state = 234, .external_lex_state = 16}, - [1768] = {.lex_state = 169, .external_lex_state = 15}, - [1769] = {.lex_state = 169, .external_lex_state = 15}, - [1770] = {.lex_state = 169, .external_lex_state = 15}, - [1771] = {.lex_state = 234, .external_lex_state = 16}, - [1772] = {.lex_state = 213, .external_lex_state = 24}, - [1773] = {.lex_state = 213, .external_lex_state = 24}, - [1774] = {.lex_state = 213, .external_lex_state = 16}, - [1775] = {.lex_state = 234, .external_lex_state = 16}, - [1776] = {.lex_state = 169, .external_lex_state = 15}, - [1777] = {.lex_state = 234, .external_lex_state = 16}, - [1778] = {.lex_state = 169, .external_lex_state = 15}, - [1779] = {.lex_state = 234, .external_lex_state = 16}, - [1780] = {.lex_state = 169, .external_lex_state = 15}, - [1781] = {.lex_state = 234, .external_lex_state = 16}, - [1782] = {.lex_state = 169, .external_lex_state = 15}, - [1783] = {.lex_state = 234, .external_lex_state = 16}, - [1784] = {.lex_state = 91, .external_lex_state = 13}, - [1785] = {.lex_state = 91, .external_lex_state = 13}, - [1786] = {.lex_state = 91, .external_lex_state = 13}, - [1787] = {.lex_state = 234, .external_lex_state = 16}, - [1788] = {.lex_state = 213, .external_lex_state = 24}, - [1789] = {.lex_state = 213, .external_lex_state = 24}, - [1790] = {.lex_state = 213, .external_lex_state = 16}, - [1791] = {.lex_state = 234, .external_lex_state = 16}, - [1792] = {.lex_state = 91, .external_lex_state = 13}, - [1793] = {.lex_state = 234, .external_lex_state = 16}, - [1794] = {.lex_state = 91, .external_lex_state = 13}, - [1795] = {.lex_state = 234, .external_lex_state = 16}, - [1796] = {.lex_state = 91, .external_lex_state = 13}, - [1797] = {.lex_state = 234, .external_lex_state = 16}, - [1798] = {.lex_state = 91, .external_lex_state = 13}, - [1799] = {.lex_state = 234, .external_lex_state = 16}, - [1800] = {.lex_state = 157, .external_lex_state = 24}, - [1801] = {.lex_state = 157, .external_lex_state = 16}, - [1802] = {.lex_state = 157, .external_lex_state = 24}, - [1803] = {.lex_state = 157, .external_lex_state = 16}, - [1804] = {.lex_state = 213, .external_lex_state = 24}, - [1805] = {.lex_state = 213, .external_lex_state = 24}, - [1806] = {.lex_state = 213, .external_lex_state = 24}, - [1807] = {.lex_state = 151}, - [1808] = {.lex_state = 232, .external_lex_state = 16}, - [1809] = {.lex_state = 213, .external_lex_state = 24}, - [1810] = {.lex_state = 236}, - [1811] = {.lex_state = 234, .external_lex_state = 16}, - [1812] = {.lex_state = 62}, - [1813] = {.lex_state = 157, .external_lex_state = 16}, - [1814] = {.lex_state = 157, .external_lex_state = 16}, - [1815] = {.lex_state = 157, .external_lex_state = 16}, - [1816] = {.lex_state = 213, .external_lex_state = 24}, - [1817] = {.lex_state = 236}, - [1818] = {.lex_state = 234, .external_lex_state = 16}, - [1819] = {.lex_state = 213, .external_lex_state = 24}, - [1820] = {.lex_state = 236}, - [1821] = {.lex_state = 234, .external_lex_state = 16}, - [1822] = {.lex_state = 213, .external_lex_state = 24}, - [1823] = {.lex_state = 213, .external_lex_state = 24}, - [1824] = {.lex_state = 234, .external_lex_state = 24}, - [1825] = {.lex_state = 234, .external_lex_state = 24}, - [1826] = {.lex_state = 213, .external_lex_state = 24}, - [1827] = {.lex_state = 213, .external_lex_state = 24}, - [1828] = {.lex_state = 213, .external_lex_state = 16}, - [1829] = {.lex_state = 234, .external_lex_state = 16}, - [1830] = {.lex_state = 234, .external_lex_state = 24}, - [1831] = {.lex_state = 232, .external_lex_state = 16}, - [1832] = {.lex_state = 234, .external_lex_state = 24}, - [1833] = {.lex_state = 236}, - [1834] = {.lex_state = 234, .external_lex_state = 16}, - [1835] = {.lex_state = 234, .external_lex_state = 24}, - [1836] = {.lex_state = 236}, - [1837] = {.lex_state = 234, .external_lex_state = 16}, - [1838] = {.lex_state = 236}, - [1839] = {.lex_state = 234, .external_lex_state = 16}, - [1840] = {.lex_state = 234, .external_lex_state = 16}, - [1841] = {.lex_state = 234, .external_lex_state = 24}, - [1842] = {.lex_state = 234, .external_lex_state = 16}, - [1843] = {.lex_state = 115, .external_lex_state = 5}, - [1844] = {.lex_state = 115, .external_lex_state = 5}, - [1845] = {.lex_state = 115, .external_lex_state = 5}, - [1846] = {.lex_state = 115, .external_lex_state = 5}, - [1847] = {.lex_state = 234, .external_lex_state = 16}, - [1848] = {.lex_state = 115, .external_lex_state = 5}, - [1849] = {.lex_state = 234, .external_lex_state = 16}, - [1850] = {.lex_state = 115, .external_lex_state = 5}, - [1851] = {.lex_state = 234, .external_lex_state = 16}, - [1852] = {.lex_state = 115, .external_lex_state = 5}, - [1853] = {.lex_state = 115, .external_lex_state = 5}, - [1854] = {.lex_state = 169, .external_lex_state = 15}, - [1855] = {.lex_state = 269}, - [1856] = {.lex_state = 271}, - [1857] = {.lex_state = 249}, - [1858] = {.lex_state = 211, .external_lex_state = 4}, - [1859] = {.lex_state = 73}, - [1860] = {.lex_state = 162}, - [1861] = {.lex_state = 56, .external_lex_state = 2}, - [1862] = {.lex_state = 265, .external_lex_state = 18}, - [1863] = {.lex_state = 162}, - [1864] = {.lex_state = 162}, - [1865] = {.lex_state = 73}, - [1866] = {.lex_state = 73}, - [1867] = {.lex_state = 162}, - [1868] = {.lex_state = 73}, - [1869] = {.lex_state = 73}, - [1870] = {.lex_state = 73}, - [1871] = {.lex_state = 162}, - [1872] = {.lex_state = 73}, - [1873] = {.lex_state = 73}, + [1374] = {.lex_state = 194, .external_lex_state = 13}, + [1375] = {.lex_state = 194, .external_lex_state = 13}, + [1376] = {.lex_state = 194, .external_lex_state = 13}, + [1377] = {.lex_state = 151}, + [1378] = {.lex_state = 217, .external_lex_state = 16}, + [1379] = {.lex_state = 194, .external_lex_state = 13}, + [1380] = {.lex_state = 221}, + [1381] = {.lex_state = 219, .external_lex_state = 16}, + [1382] = {.lex_state = 62}, + [1383] = {.lex_state = 157, .external_lex_state = 16}, + [1384] = {.lex_state = 157, .external_lex_state = 16}, + [1385] = {.lex_state = 157, .external_lex_state = 16}, + [1386] = {.lex_state = 194, .external_lex_state = 13}, + [1387] = {.lex_state = 221}, + [1388] = {.lex_state = 219, .external_lex_state = 16}, + [1389] = {.lex_state = 194, .external_lex_state = 13}, + [1390] = {.lex_state = 221}, + [1391] = {.lex_state = 219, .external_lex_state = 16}, + [1392] = {.lex_state = 194, .external_lex_state = 13}, + [1393] = {.lex_state = 203, .external_lex_state = 2}, + [1394] = {.lex_state = 126, .external_lex_state = 4}, + [1395] = {.lex_state = 130, .external_lex_state = 8}, + [1396] = {.lex_state = 56, .external_lex_state = 2}, + [1397] = {.lex_state = 83, .external_lex_state = 4}, + [1398] = {.lex_state = 113, .external_lex_state = 8}, + [1399] = {.lex_state = 194, .external_lex_state = 13}, + [1400] = {.lex_state = 203, .external_lex_state = 2}, + [1401] = {.lex_state = 126, .external_lex_state = 4}, + [1402] = {.lex_state = 130, .external_lex_state = 8}, + [1403] = {.lex_state = 130, .external_lex_state = 19}, + [1404] = {.lex_state = 130, .external_lex_state = 19}, + [1405] = {.lex_state = 198, .external_lex_state = 22}, + [1406] = {.lex_state = 198, .external_lex_state = 22}, + [1407] = {.lex_state = 198, .external_lex_state = 16}, + [1408] = {.lex_state = 219, .external_lex_state = 16}, + [1409] = {.lex_state = 130, .external_lex_state = 19}, + [1410] = {.lex_state = 217, .external_lex_state = 16}, + [1411] = {.lex_state = 130, .external_lex_state = 19}, + [1412] = {.lex_state = 221}, + [1413] = {.lex_state = 219, .external_lex_state = 16}, + [1414] = {.lex_state = 130, .external_lex_state = 19}, + [1415] = {.lex_state = 221}, + [1416] = {.lex_state = 219, .external_lex_state = 16}, + [1417] = {.lex_state = 221}, + [1418] = {.lex_state = 219, .external_lex_state = 16}, + [1419] = {.lex_state = 219, .external_lex_state = 16}, + [1420] = {.lex_state = 130, .external_lex_state = 19}, + [1421] = {.lex_state = 219, .external_lex_state = 16}, + [1422] = {.lex_state = 130, .external_lex_state = 19}, + [1423] = {.lex_state = 203, .external_lex_state = 2}, + [1424] = {.lex_state = 56, .external_lex_state = 2}, + [1425] = {.lex_state = 130, .external_lex_state = 19}, + [1426] = {.lex_state = 203, .external_lex_state = 2}, + [1427] = {.lex_state = 198, .external_lex_state = 20}, + [1428] = {.lex_state = 132, .external_lex_state = 4}, + [1429] = {.lex_state = 207}, + [1430] = {.lex_state = 248}, + [1431] = {.lex_state = 73}, + [1432] = {.lex_state = 248, .external_lex_state = 13}, + [1433] = {.lex_state = 248, .external_lex_state = 13}, + [1434] = {.lex_state = 151}, + [1435] = {.lex_state = 91}, + [1436] = {.lex_state = 248, .external_lex_state = 13}, + [1437] = {.lex_state = 248, .external_lex_state = 13}, + [1438] = {.lex_state = 248, .external_lex_state = 13}, + [1439] = {.lex_state = 62}, + [1440] = {.lex_state = 157, .external_lex_state = 16}, + [1441] = {.lex_state = 160, .external_lex_state = 6}, + [1442] = {.lex_state = 157, .external_lex_state = 16}, + [1443] = {.lex_state = 157, .external_lex_state = 16}, + [1444] = {.lex_state = 126, .external_lex_state = 4}, + [1445] = {.lex_state = 130, .external_lex_state = 8}, + [1446] = {.lex_state = 56, .external_lex_state = 2}, + [1447] = {.lex_state = 83, .external_lex_state = 4}, + [1448] = {.lex_state = 113, .external_lex_state = 8}, + [1449] = {.lex_state = 56, .external_lex_state = 2}, + [1450] = {.lex_state = 126, .external_lex_state = 4}, + [1451] = {.lex_state = 130, .external_lex_state = 8}, + [1452] = {.lex_state = 56, .external_lex_state = 2}, + [1453] = {.lex_state = 246}, + [1454] = {.lex_state = 77}, + [1455] = {.lex_state = 209}, + [1456] = {.lex_state = 248}, + [1457] = {.lex_state = 234, .external_lex_state = 10}, + [1458] = {.lex_state = 234, .external_lex_state = 10}, + [1459] = {.lex_state = 198, .external_lex_state = 22}, + [1460] = {.lex_state = 198, .external_lex_state = 22}, + [1461] = {.lex_state = 198, .external_lex_state = 16}, + [1462] = {.lex_state = 219, .external_lex_state = 16}, + [1463] = {.lex_state = 234, .external_lex_state = 10}, + [1464] = {.lex_state = 217, .external_lex_state = 16}, + [1465] = {.lex_state = 234, .external_lex_state = 10}, + [1466] = {.lex_state = 221}, + [1467] = {.lex_state = 219, .external_lex_state = 16}, + [1468] = {.lex_state = 234, .external_lex_state = 10}, + [1469] = {.lex_state = 221}, + [1470] = {.lex_state = 219, .external_lex_state = 16}, + [1471] = {.lex_state = 221}, + [1472] = {.lex_state = 219, .external_lex_state = 16}, + [1473] = {.lex_state = 219, .external_lex_state = 16}, + [1474] = {.lex_state = 234, .external_lex_state = 10}, + [1475] = {.lex_state = 219, .external_lex_state = 16}, + [1476] = {.lex_state = 234, .external_lex_state = 10}, + [1477] = {.lex_state = 203, .external_lex_state = 2}, + [1478] = {.lex_state = 56, .external_lex_state = 2}, + [1479] = {.lex_state = 234, .external_lex_state = 10}, + [1480] = {.lex_state = 203, .external_lex_state = 2}, + [1481] = {.lex_state = 230}, + [1482] = {.lex_state = 122, .external_lex_state = 10}, + [1483] = {.lex_state = 132, .external_lex_state = 4}, + [1484] = {.lex_state = 132, .external_lex_state = 4}, + [1485] = {.lex_state = 56, .external_lex_state = 2}, + [1486] = {.lex_state = 56, .external_lex_state = 2}, + [1487] = {.lex_state = 132, .external_lex_state = 4}, + [1488] = {.lex_state = 73}, + [1489] = {.lex_state = 73}, + [1490] = {.lex_state = 162, .external_lex_state = 2}, + [1491] = {.lex_state = 250}, + [1492] = {.lex_state = 250, .external_lex_state = 13}, + [1493] = {.lex_state = 162, .external_lex_state = 2}, + [1494] = {.lex_state = 250}, + [1495] = {.lex_state = 132, .external_lex_state = 4}, + [1496] = {.lex_state = 73}, + [1497] = {.lex_state = 73}, + [1498] = {.lex_state = 132, .external_lex_state = 4}, + [1499] = {.lex_state = 73}, + [1500] = {.lex_state = 132, .external_lex_state = 4}, + [1501] = {.lex_state = 73}, + [1502] = {.lex_state = 132, .external_lex_state = 4}, + [1503] = {.lex_state = 73}, + [1504] = {.lex_state = 122, .external_lex_state = 10}, + [1505] = {.lex_state = 122, .external_lex_state = 10}, + [1506] = {.lex_state = 122, .external_lex_state = 10}, + [1507] = {.lex_state = 219, .external_lex_state = 16}, + [1508] = {.lex_state = 198, .external_lex_state = 22}, + [1509] = {.lex_state = 198, .external_lex_state = 22}, + [1510] = {.lex_state = 198, .external_lex_state = 16}, + [1511] = {.lex_state = 219, .external_lex_state = 16}, + [1512] = {.lex_state = 122, .external_lex_state = 10}, + [1513] = {.lex_state = 219, .external_lex_state = 16}, + [1514] = {.lex_state = 122, .external_lex_state = 10}, + [1515] = {.lex_state = 219, .external_lex_state = 16}, + [1516] = {.lex_state = 122, .external_lex_state = 10}, + [1517] = {.lex_state = 219, .external_lex_state = 16}, + [1518] = {.lex_state = 122, .external_lex_state = 10}, + [1519] = {.lex_state = 219, .external_lex_state = 16}, + [1520] = {.lex_state = 122, .external_lex_state = 10}, + [1521] = {.lex_state = 122, .external_lex_state = 10}, + [1522] = {.lex_state = 132, .external_lex_state = 4}, + [1523] = {.lex_state = 132, .external_lex_state = 10}, + [1524] = {.lex_state = 132, .external_lex_state = 10}, + [1525] = {.lex_state = 132, .external_lex_state = 4}, + [1526] = {.lex_state = 132, .external_lex_state = 10}, + [1527] = {.lex_state = 130, .external_lex_state = 19}, + [1528] = {.lex_state = 240, .external_lex_state = 21}, + [1529] = {.lex_state = 73}, + [1530] = {.lex_state = 132, .external_lex_state = 10}, + [1531] = {.lex_state = 132, .external_lex_state = 10}, + [1532] = {.lex_state = 73}, + [1533] = {.lex_state = 205, .external_lex_state = 23}, + [1534] = {.lex_state = 205, .external_lex_state = 23}, + [1535] = {.lex_state = 205, .external_lex_state = 23}, + [1536] = {.lex_state = 205, .external_lex_state = 23}, + [1537] = {.lex_state = 205, .external_lex_state = 21}, + [1538] = {.lex_state = 205, .external_lex_state = 5}, + [1539] = {.lex_state = 73, .external_lex_state = 2}, + [1540] = {.lex_state = 134, .external_lex_state = 11}, + [1541] = {.lex_state = 134, .external_lex_state = 11}, + [1542] = {.lex_state = 134, .external_lex_state = 11}, + [1543] = {.lex_state = 219, .external_lex_state = 16}, + [1544] = {.lex_state = 198, .external_lex_state = 22}, + [1545] = {.lex_state = 198, .external_lex_state = 22}, + [1546] = {.lex_state = 198, .external_lex_state = 16}, + [1547] = {.lex_state = 219, .external_lex_state = 16}, + [1548] = {.lex_state = 134, .external_lex_state = 11}, + [1549] = {.lex_state = 219, .external_lex_state = 16}, + [1550] = {.lex_state = 134, .external_lex_state = 11}, + [1551] = {.lex_state = 219, .external_lex_state = 16}, + [1552] = {.lex_state = 134, .external_lex_state = 11}, + [1553] = {.lex_state = 219, .external_lex_state = 16}, + [1554] = {.lex_state = 134, .external_lex_state = 11}, + [1555] = {.lex_state = 219, .external_lex_state = 16}, + [1556] = {.lex_state = 134, .external_lex_state = 11}, + [1557] = {.lex_state = 134, .external_lex_state = 11}, + [1558] = {.lex_state = 188, .external_lex_state = 23}, + [1559] = {.lex_state = 188, .external_lex_state = 23}, + [1560] = {.lex_state = 228, .external_lex_state = 21}, + [1561] = {.lex_state = 73}, + [1562] = {.lex_state = 188, .external_lex_state = 23}, + [1563] = {.lex_state = 228, .external_lex_state = 23}, + [1564] = {.lex_state = 151}, + [1565] = {.lex_state = 91}, + [1566] = {.lex_state = 228, .external_lex_state = 23}, + [1567] = {.lex_state = 228, .external_lex_state = 23}, + [1568] = {.lex_state = 228, .external_lex_state = 23}, + [1569] = {.lex_state = 62}, + [1570] = {.lex_state = 157, .external_lex_state = 16}, + [1571] = {.lex_state = 160, .external_lex_state = 6}, + [1572] = {.lex_state = 157, .external_lex_state = 16}, + [1573] = {.lex_state = 157, .external_lex_state = 16}, + [1574] = {.lex_state = 126, .external_lex_state = 4}, + [1575] = {.lex_state = 130, .external_lex_state = 8}, + [1576] = {.lex_state = 56, .external_lex_state = 2}, + [1577] = {.lex_state = 83, .external_lex_state = 4}, + [1578] = {.lex_state = 113, .external_lex_state = 8}, + [1579] = {.lex_state = 56, .external_lex_state = 2}, + [1580] = {.lex_state = 126, .external_lex_state = 4}, + [1581] = {.lex_state = 130, .external_lex_state = 8}, + [1582] = {.lex_state = 56, .external_lex_state = 2}, + [1583] = {.lex_state = 214, .external_lex_state = 13}, + [1584] = {.lex_state = 214, .external_lex_state = 13}, + [1585] = {.lex_state = 214, .external_lex_state = 13}, + [1586] = {.lex_state = 219, .external_lex_state = 16}, + [1587] = {.lex_state = 198, .external_lex_state = 22}, + [1588] = {.lex_state = 198, .external_lex_state = 22}, + [1589] = {.lex_state = 198, .external_lex_state = 16}, + [1590] = {.lex_state = 219, .external_lex_state = 16}, + [1591] = {.lex_state = 214, .external_lex_state = 13}, + [1592] = {.lex_state = 219, .external_lex_state = 16}, + [1593] = {.lex_state = 214, .external_lex_state = 13}, + [1594] = {.lex_state = 219, .external_lex_state = 16}, + [1595] = {.lex_state = 214, .external_lex_state = 13}, + [1596] = {.lex_state = 219, .external_lex_state = 16}, + [1597] = {.lex_state = 214, .external_lex_state = 13}, + [1598] = {.lex_state = 219, .external_lex_state = 16}, + [1599] = {.lex_state = 214, .external_lex_state = 13}, + [1600] = {.lex_state = 214, .external_lex_state = 13}, + [1601] = {.lex_state = 126, .external_lex_state = 3}, + [1602] = {.lex_state = 126, .external_lex_state = 14}, + [1603] = {.lex_state = 126, .external_lex_state = 14}, + [1604] = {.lex_state = 126, .external_lex_state = 14}, + [1605] = {.lex_state = 219, .external_lex_state = 16}, + [1606] = {.lex_state = 198, .external_lex_state = 22}, + [1607] = {.lex_state = 198, .external_lex_state = 22}, + [1608] = {.lex_state = 198, .external_lex_state = 16}, + [1609] = {.lex_state = 219, .external_lex_state = 16}, + [1610] = {.lex_state = 126, .external_lex_state = 14}, + [1611] = {.lex_state = 219, .external_lex_state = 16}, + [1612] = {.lex_state = 126, .external_lex_state = 14}, + [1613] = {.lex_state = 219, .external_lex_state = 16}, + [1614] = {.lex_state = 126, .external_lex_state = 14}, + [1615] = {.lex_state = 219, .external_lex_state = 16}, + [1616] = {.lex_state = 126, .external_lex_state = 14}, + [1617] = {.lex_state = 219, .external_lex_state = 16}, + [1618] = {.lex_state = 126, .external_lex_state = 14}, + [1619] = {.lex_state = 126, .external_lex_state = 14}, + [1620] = {.lex_state = 126, .external_lex_state = 10}, + [1621] = {.lex_state = 126, .external_lex_state = 10}, + [1622] = {.lex_state = 126, .external_lex_state = 10}, + [1623] = {.lex_state = 219, .external_lex_state = 16}, + [1624] = {.lex_state = 198, .external_lex_state = 22}, + [1625] = {.lex_state = 198, .external_lex_state = 22}, + [1626] = {.lex_state = 198, .external_lex_state = 16}, + [1627] = {.lex_state = 219, .external_lex_state = 16}, + [1628] = {.lex_state = 126, .external_lex_state = 10}, + [1629] = {.lex_state = 219, .external_lex_state = 16}, + [1630] = {.lex_state = 126, .external_lex_state = 10}, + [1631] = {.lex_state = 219, .external_lex_state = 16}, + [1632] = {.lex_state = 126, .external_lex_state = 10}, + [1633] = {.lex_state = 219, .external_lex_state = 16}, + [1634] = {.lex_state = 126, .external_lex_state = 10}, + [1635] = {.lex_state = 219, .external_lex_state = 16}, + [1636] = {.lex_state = 126, .external_lex_state = 10}, + [1637] = {.lex_state = 126, .external_lex_state = 10}, + [1638] = {.lex_state = 73, .external_lex_state = 15}, + [1639] = {.lex_state = 73, .external_lex_state = 15}, + [1640] = {.lex_state = 73, .external_lex_state = 15}, + [1641] = {.lex_state = 219, .external_lex_state = 16}, + [1642] = {.lex_state = 198, .external_lex_state = 22}, + [1643] = {.lex_state = 198, .external_lex_state = 22}, + [1644] = {.lex_state = 198, .external_lex_state = 16}, + [1645] = {.lex_state = 219, .external_lex_state = 16}, + [1646] = {.lex_state = 73, .external_lex_state = 15}, + [1647] = {.lex_state = 219, .external_lex_state = 16}, + [1648] = {.lex_state = 73, .external_lex_state = 15}, + [1649] = {.lex_state = 219, .external_lex_state = 16}, + [1650] = {.lex_state = 73, .external_lex_state = 15}, + [1651] = {.lex_state = 219, .external_lex_state = 16}, + [1652] = {.lex_state = 73, .external_lex_state = 15}, + [1653] = {.lex_state = 219, .external_lex_state = 16}, + [1654] = {.lex_state = 73, .external_lex_state = 15}, + [1655] = {.lex_state = 73, .external_lex_state = 15}, + [1656] = {.lex_state = 91, .external_lex_state = 13}, + [1657] = {.lex_state = 91, .external_lex_state = 13}, + [1658] = {.lex_state = 91, .external_lex_state = 13}, + [1659] = {.lex_state = 219, .external_lex_state = 16}, + [1660] = {.lex_state = 198, .external_lex_state = 22}, + [1661] = {.lex_state = 198, .external_lex_state = 22}, + [1662] = {.lex_state = 198, .external_lex_state = 16}, + [1663] = {.lex_state = 219, .external_lex_state = 16}, + [1664] = {.lex_state = 91, .external_lex_state = 13}, + [1665] = {.lex_state = 219, .external_lex_state = 16}, + [1666] = {.lex_state = 91, .external_lex_state = 13}, + [1667] = {.lex_state = 219, .external_lex_state = 16}, + [1668] = {.lex_state = 91, .external_lex_state = 13}, + [1669] = {.lex_state = 219, .external_lex_state = 16}, + [1670] = {.lex_state = 91, .external_lex_state = 13}, + [1671] = {.lex_state = 219, .external_lex_state = 16}, + [1672] = {.lex_state = 91, .external_lex_state = 13}, + [1673] = {.lex_state = 157, .external_lex_state = 22}, + [1674] = {.lex_state = 157, .external_lex_state = 16}, + [1675] = {.lex_state = 157, .external_lex_state = 22}, + [1676] = {.lex_state = 157, .external_lex_state = 16}, + [1677] = {.lex_state = 198, .external_lex_state = 22}, + [1678] = {.lex_state = 198, .external_lex_state = 22}, + [1679] = {.lex_state = 198, .external_lex_state = 22}, + [1680] = {.lex_state = 151}, + [1681] = {.lex_state = 217, .external_lex_state = 16}, + [1682] = {.lex_state = 198, .external_lex_state = 22}, + [1683] = {.lex_state = 221}, + [1684] = {.lex_state = 219, .external_lex_state = 16}, + [1685] = {.lex_state = 62}, + [1686] = {.lex_state = 157, .external_lex_state = 16}, + [1687] = {.lex_state = 157, .external_lex_state = 16}, + [1688] = {.lex_state = 157, .external_lex_state = 16}, + [1689] = {.lex_state = 198, .external_lex_state = 22}, + [1690] = {.lex_state = 221}, + [1691] = {.lex_state = 219, .external_lex_state = 16}, + [1692] = {.lex_state = 198, .external_lex_state = 22}, + [1693] = {.lex_state = 221}, + [1694] = {.lex_state = 219, .external_lex_state = 16}, + [1695] = {.lex_state = 198, .external_lex_state = 22}, + [1696] = {.lex_state = 203, .external_lex_state = 2}, + [1697] = {.lex_state = 126, .external_lex_state = 4}, + [1698] = {.lex_state = 130, .external_lex_state = 8}, + [1699] = {.lex_state = 56, .external_lex_state = 2}, + [1700] = {.lex_state = 83, .external_lex_state = 4}, + [1701] = {.lex_state = 113, .external_lex_state = 8}, + [1702] = {.lex_state = 198, .external_lex_state = 22}, + [1703] = {.lex_state = 203, .external_lex_state = 2}, + [1704] = {.lex_state = 126, .external_lex_state = 4}, + [1705] = {.lex_state = 130, .external_lex_state = 8}, + [1706] = {.lex_state = 219, .external_lex_state = 22}, + [1707] = {.lex_state = 219, .external_lex_state = 22}, + [1708] = {.lex_state = 198, .external_lex_state = 22}, + [1709] = {.lex_state = 198, .external_lex_state = 22}, + [1710] = {.lex_state = 198, .external_lex_state = 16}, + [1711] = {.lex_state = 219, .external_lex_state = 16}, + [1712] = {.lex_state = 219, .external_lex_state = 22}, + [1713] = {.lex_state = 217, .external_lex_state = 16}, + [1714] = {.lex_state = 219, .external_lex_state = 22}, + [1715] = {.lex_state = 221}, + [1716] = {.lex_state = 219, .external_lex_state = 16}, + [1717] = {.lex_state = 219, .external_lex_state = 22}, + [1718] = {.lex_state = 221}, + [1719] = {.lex_state = 219, .external_lex_state = 16}, + [1720] = {.lex_state = 221}, + [1721] = {.lex_state = 219, .external_lex_state = 16}, + [1722] = {.lex_state = 219, .external_lex_state = 16}, + [1723] = {.lex_state = 219, .external_lex_state = 22}, + [1724] = {.lex_state = 219, .external_lex_state = 16}, + [1725] = {.lex_state = 115, .external_lex_state = 5}, + [1726] = {.lex_state = 219, .external_lex_state = 22}, + [1727] = {.lex_state = 203, .external_lex_state = 2}, + [1728] = {.lex_state = 56, .external_lex_state = 2}, + [1729] = {.lex_state = 219, .external_lex_state = 22}, + [1730] = {.lex_state = 203, .external_lex_state = 2}, + [1731] = {.lex_state = 115, .external_lex_state = 5}, + [1732] = {.lex_state = 115, .external_lex_state = 5}, + [1733] = {.lex_state = 115, .external_lex_state = 5}, + [1734] = {.lex_state = 219, .external_lex_state = 16}, + [1735] = {.lex_state = 115, .external_lex_state = 5}, + [1736] = {.lex_state = 219, .external_lex_state = 16}, + [1737] = {.lex_state = 115, .external_lex_state = 5}, + [1738] = {.lex_state = 219, .external_lex_state = 16}, + [1739] = {.lex_state = 115, .external_lex_state = 5}, + [1740] = {.lex_state = 115, .external_lex_state = 5}, + [1741] = {.lex_state = 244, .external_lex_state = 21}, + [1742] = {.lex_state = 73}, + [1743] = {.lex_state = 132, .external_lex_state = 10}, + [1744] = {.lex_state = 132, .external_lex_state = 10}, + [1745] = {.lex_state = 73}, + [1746] = {.lex_state = 226, .external_lex_state = 23}, + [1747] = {.lex_state = 226, .external_lex_state = 23}, + [1748] = {.lex_state = 226, .external_lex_state = 23}, + [1749] = {.lex_state = 226, .external_lex_state = 23}, + [1750] = {.lex_state = 226, .external_lex_state = 21}, + [1751] = {.lex_state = 226, .external_lex_state = 5}, + [1752] = {.lex_state = 165, .external_lex_state = 17}, + [1753] = {.lex_state = 198, .external_lex_state = 22}, + [1754] = {.lex_state = 198, .external_lex_state = 22}, + [1755] = {.lex_state = 198, .external_lex_state = 16}, + [1756] = {.lex_state = 219, .external_lex_state = 16}, + [1757] = {.lex_state = 165, .external_lex_state = 17}, + [1758] = {.lex_state = 217, .external_lex_state = 16}, + [1759] = {.lex_state = 165, .external_lex_state = 17}, + [1760] = {.lex_state = 221}, + [1761] = {.lex_state = 219, .external_lex_state = 16}, + [1762] = {.lex_state = 165, .external_lex_state = 17}, + [1763] = {.lex_state = 221}, + [1764] = {.lex_state = 219, .external_lex_state = 16}, + [1765] = {.lex_state = 221}, + [1766] = {.lex_state = 219, .external_lex_state = 16}, + [1767] = {.lex_state = 219, .external_lex_state = 16}, + [1768] = {.lex_state = 165, .external_lex_state = 17}, + [1769] = {.lex_state = 219, .external_lex_state = 16}, + [1770] = {.lex_state = 194, .external_lex_state = 13}, + [1771] = {.lex_state = 194, .external_lex_state = 13}, + [1772] = {.lex_state = 198, .external_lex_state = 22}, + [1773] = {.lex_state = 198, .external_lex_state = 22}, + [1774] = {.lex_state = 198, .external_lex_state = 16}, + [1775] = {.lex_state = 219, .external_lex_state = 16}, + [1776] = {.lex_state = 194, .external_lex_state = 13}, + [1777] = {.lex_state = 217, .external_lex_state = 16}, + [1778] = {.lex_state = 194, .external_lex_state = 13}, + [1779] = {.lex_state = 221}, + [1780] = {.lex_state = 219, .external_lex_state = 16}, + [1781] = {.lex_state = 194, .external_lex_state = 13}, + [1782] = {.lex_state = 221}, + [1783] = {.lex_state = 219, .external_lex_state = 16}, + [1784] = {.lex_state = 221}, + [1785] = {.lex_state = 219, .external_lex_state = 16}, + [1786] = {.lex_state = 219, .external_lex_state = 16}, + [1787] = {.lex_state = 194, .external_lex_state = 13}, + [1788] = {.lex_state = 219, .external_lex_state = 16}, + [1789] = {.lex_state = 194, .external_lex_state = 13}, + [1790] = {.lex_state = 203, .external_lex_state = 2}, + [1791] = {.lex_state = 56, .external_lex_state = 2}, + [1792] = {.lex_state = 194, .external_lex_state = 13}, + [1793] = {.lex_state = 203, .external_lex_state = 2}, + [1794] = {.lex_state = 130, .external_lex_state = 19}, + [1795] = {.lex_state = 130, .external_lex_state = 19}, + [1796] = {.lex_state = 130, .external_lex_state = 19}, + [1797] = {.lex_state = 219, .external_lex_state = 16}, + [1798] = {.lex_state = 198, .external_lex_state = 22}, + [1799] = {.lex_state = 198, .external_lex_state = 22}, + [1800] = {.lex_state = 198, .external_lex_state = 16}, + [1801] = {.lex_state = 219, .external_lex_state = 16}, + [1802] = {.lex_state = 130, .external_lex_state = 19}, + [1803] = {.lex_state = 219, .external_lex_state = 16}, + [1804] = {.lex_state = 130, .external_lex_state = 19}, + [1805] = {.lex_state = 219, .external_lex_state = 16}, + [1806] = {.lex_state = 130, .external_lex_state = 19}, + [1807] = {.lex_state = 219, .external_lex_state = 16}, + [1808] = {.lex_state = 130, .external_lex_state = 19}, + [1809] = {.lex_state = 219, .external_lex_state = 16}, + [1810] = {.lex_state = 130, .external_lex_state = 19}, + [1811] = {.lex_state = 130, .external_lex_state = 19}, + [1812] = {.lex_state = 132, .external_lex_state = 4}, + [1813] = {.lex_state = 198, .external_lex_state = 20}, + [1814] = {.lex_state = 248}, + [1815] = {.lex_state = 248, .external_lex_state = 13}, + [1816] = {.lex_state = 248, .external_lex_state = 13}, + [1817] = {.lex_state = 248, .external_lex_state = 13}, + [1818] = {.lex_state = 151}, + [1819] = {.lex_state = 217, .external_lex_state = 16}, + [1820] = {.lex_state = 248, .external_lex_state = 13}, + [1821] = {.lex_state = 221}, + [1822] = {.lex_state = 219, .external_lex_state = 16}, + [1823] = {.lex_state = 62}, + [1824] = {.lex_state = 157, .external_lex_state = 16}, + [1825] = {.lex_state = 157, .external_lex_state = 16}, + [1826] = {.lex_state = 157, .external_lex_state = 16}, + [1827] = {.lex_state = 248, .external_lex_state = 13}, + [1828] = {.lex_state = 221}, + [1829] = {.lex_state = 219, .external_lex_state = 16}, + [1830] = {.lex_state = 248, .external_lex_state = 13}, + [1831] = {.lex_state = 221}, + [1832] = {.lex_state = 219, .external_lex_state = 16}, + [1833] = {.lex_state = 248, .external_lex_state = 13}, + [1834] = {.lex_state = 203, .external_lex_state = 2}, + [1835] = {.lex_state = 126, .external_lex_state = 4}, + [1836] = {.lex_state = 130, .external_lex_state = 8}, + [1837] = {.lex_state = 56, .external_lex_state = 2}, + [1838] = {.lex_state = 83, .external_lex_state = 4}, + [1839] = {.lex_state = 113, .external_lex_state = 8}, + [1840] = {.lex_state = 248, .external_lex_state = 13}, + [1841] = {.lex_state = 203, .external_lex_state = 2}, + [1842] = {.lex_state = 126, .external_lex_state = 4}, + [1843] = {.lex_state = 130, .external_lex_state = 8}, + [1844] = {.lex_state = 132, .external_lex_state = 4}, + [1845] = {.lex_state = 248}, + [1846] = {.lex_state = 248}, + [1847] = {.lex_state = 246}, + [1848] = {.lex_state = 234, .external_lex_state = 10}, + [1849] = {.lex_state = 234, .external_lex_state = 10}, + [1850] = {.lex_state = 234, .external_lex_state = 10}, + [1851] = {.lex_state = 219, .external_lex_state = 16}, + [1852] = {.lex_state = 198, .external_lex_state = 22}, + [1853] = {.lex_state = 198, .external_lex_state = 22}, + [1854] = {.lex_state = 198, .external_lex_state = 16}, + [1855] = {.lex_state = 219, .external_lex_state = 16}, + [1856] = {.lex_state = 234, .external_lex_state = 10}, + [1857] = {.lex_state = 219, .external_lex_state = 16}, + [1858] = {.lex_state = 234, .external_lex_state = 10}, + [1859] = {.lex_state = 219, .external_lex_state = 16}, + [1860] = {.lex_state = 234, .external_lex_state = 10}, + [1861] = {.lex_state = 219, .external_lex_state = 16}, + [1862] = {.lex_state = 234, .external_lex_state = 10}, + [1863] = {.lex_state = 219, .external_lex_state = 16}, + [1864] = {.lex_state = 234, .external_lex_state = 10}, + [1865] = {.lex_state = 234, .external_lex_state = 10}, + [1866] = {.lex_state = 248}, + [1867] = {.lex_state = 56, .external_lex_state = 2}, + [1868] = {.lex_state = 132, .external_lex_state = 4}, + [1869] = {.lex_state = 250, .external_lex_state = 13}, + [1870] = {.lex_state = 250, .external_lex_state = 13}, + [1871] = {.lex_state = 250}, + [1872] = {.lex_state = 62}, + [1873] = {.lex_state = 56, .external_lex_state = 2}, [1874] = {.lex_state = 73}, - [1875] = {.lex_state = 263, .external_lex_state = 26}, - [1876] = {.lex_state = 276, .external_lex_state = 26}, - [1877] = {.lex_state = 73}, - [1878] = {.lex_state = 169, .external_lex_state = 13}, - [1879] = {.lex_state = 169, .external_lex_state = 13}, - [1880] = {.lex_state = 162}, - [1881] = {.lex_state = 162}, - [1882] = {.lex_state = 73}, - [1883] = {.lex_state = 241, .external_lex_state = 28}, - [1884] = {.lex_state = 91}, - [1885] = {.lex_state = 98}, - [1886] = {.lex_state = 241, .external_lex_state = 28}, - [1887] = {.lex_state = 107, .external_lex_state = 6}, - [1888] = {.lex_state = 56, .external_lex_state = 2}, - [1889] = {.lex_state = 56, .external_lex_state = 2}, - [1890] = {.lex_state = 56, .external_lex_state = 2}, - [1891] = {.lex_state = 265, .external_lex_state = 26}, - [1892] = {.lex_state = 265, .external_lex_state = 26}, - [1893] = {.lex_state = 241, .external_lex_state = 28}, - [1894] = {.lex_state = 241, .external_lex_state = 28}, - [1895] = {.lex_state = 265, .external_lex_state = 26}, - [1896] = {.lex_state = 241, .external_lex_state = 26}, - [1897] = {.lex_state = 162, .external_lex_state = 6}, - [1898] = {.lex_state = 169}, - [1899] = {.lex_state = 162, .external_lex_state = 25}, - [1900] = {.lex_state = 162, .external_lex_state = 25}, - [1901] = {.lex_state = 213, .external_lex_state = 24}, - [1902] = {.lex_state = 213, .external_lex_state = 24}, - [1903] = {.lex_state = 213, .external_lex_state = 16}, - [1904] = {.lex_state = 234, .external_lex_state = 16}, - [1905] = {.lex_state = 162, .external_lex_state = 25}, - [1906] = {.lex_state = 232, .external_lex_state = 16}, - [1907] = {.lex_state = 162, .external_lex_state = 25}, - [1908] = {.lex_state = 236}, - [1909] = {.lex_state = 234, .external_lex_state = 16}, - [1910] = {.lex_state = 162, .external_lex_state = 25}, - [1911] = {.lex_state = 236}, - [1912] = {.lex_state = 234, .external_lex_state = 16}, - [1913] = {.lex_state = 236}, - [1914] = {.lex_state = 234, .external_lex_state = 16}, - [1915] = {.lex_state = 234, .external_lex_state = 16}, - [1916] = {.lex_state = 162, .external_lex_state = 25}, - [1917] = {.lex_state = 234, .external_lex_state = 16}, - [1918] = {.lex_state = 162, .external_lex_state = 13}, - [1919] = {.lex_state = 162, .external_lex_state = 13}, - [1920] = {.lex_state = 213, .external_lex_state = 24}, - [1921] = {.lex_state = 213, .external_lex_state = 24}, - [1922] = {.lex_state = 213, .external_lex_state = 16}, - [1923] = {.lex_state = 234, .external_lex_state = 16}, - [1924] = {.lex_state = 162, .external_lex_state = 13}, - [1925] = {.lex_state = 232, .external_lex_state = 16}, - [1926] = {.lex_state = 162, .external_lex_state = 13}, - [1927] = {.lex_state = 236}, - [1928] = {.lex_state = 234, .external_lex_state = 16}, - [1929] = {.lex_state = 162, .external_lex_state = 13}, - [1930] = {.lex_state = 236}, - [1931] = {.lex_state = 234, .external_lex_state = 16}, - [1932] = {.lex_state = 236}, - [1933] = {.lex_state = 234, .external_lex_state = 16}, - [1934] = {.lex_state = 234, .external_lex_state = 16}, - [1935] = {.lex_state = 162, .external_lex_state = 13}, - [1936] = {.lex_state = 234, .external_lex_state = 16}, - [1937] = {.lex_state = 164, .external_lex_state = 17}, - [1938] = {.lex_state = 164, .external_lex_state = 17}, - [1939] = {.lex_state = 164, .external_lex_state = 17}, - [1940] = {.lex_state = 234, .external_lex_state = 16}, - [1941] = {.lex_state = 213, .external_lex_state = 24}, - [1942] = {.lex_state = 213, .external_lex_state = 24}, - [1943] = {.lex_state = 213, .external_lex_state = 16}, - [1944] = {.lex_state = 234, .external_lex_state = 16}, - [1945] = {.lex_state = 164, .external_lex_state = 17}, - [1946] = {.lex_state = 234, .external_lex_state = 16}, - [1947] = {.lex_state = 164, .external_lex_state = 17}, - [1948] = {.lex_state = 234, .external_lex_state = 16}, - [1949] = {.lex_state = 164, .external_lex_state = 17}, - [1950] = {.lex_state = 234, .external_lex_state = 16}, - [1951] = {.lex_state = 164, .external_lex_state = 17}, - [1952] = {.lex_state = 234, .external_lex_state = 16}, - [1953] = {.lex_state = 162}, - [1954] = {.lex_state = 241, .external_lex_state = 17}, - [1955] = {.lex_state = 162}, - [1956] = {.lex_state = 177, .external_lex_state = 15}, - [1957] = {.lex_state = 267, .external_lex_state = 26}, - [1958] = {.lex_state = 73}, - [1959] = {.lex_state = 169, .external_lex_state = 13}, - [1960] = {.lex_state = 169, .external_lex_state = 13}, - [1961] = {.lex_state = 73}, - [1962] = {.lex_state = 243, .external_lex_state = 28}, - [1963] = {.lex_state = 243, .external_lex_state = 28}, - [1964] = {.lex_state = 243, .external_lex_state = 28}, - [1965] = {.lex_state = 243, .external_lex_state = 28}, - [1966] = {.lex_state = 243, .external_lex_state = 26}, - [1967] = {.lex_state = 243, .external_lex_state = 17}, - [1968] = {.lex_state = 182, .external_lex_state = 19}, - [1969] = {.lex_state = 213, .external_lex_state = 24}, - [1970] = {.lex_state = 213, .external_lex_state = 24}, - [1971] = {.lex_state = 213, .external_lex_state = 16}, - [1972] = {.lex_state = 234, .external_lex_state = 16}, - [1973] = {.lex_state = 182, .external_lex_state = 19}, - [1974] = {.lex_state = 232, .external_lex_state = 16}, - [1975] = {.lex_state = 182, .external_lex_state = 19}, - [1976] = {.lex_state = 236}, - [1977] = {.lex_state = 234, .external_lex_state = 16}, - [1978] = {.lex_state = 182, .external_lex_state = 19}, - [1979] = {.lex_state = 236}, - [1980] = {.lex_state = 234, .external_lex_state = 16}, - [1981] = {.lex_state = 236}, - [1982] = {.lex_state = 234, .external_lex_state = 16}, - [1983] = {.lex_state = 234, .external_lex_state = 16}, - [1984] = {.lex_state = 182, .external_lex_state = 19}, - [1985] = {.lex_state = 234, .external_lex_state = 16}, - [1986] = {.lex_state = 247, .external_lex_state = 13}, - [1987] = {.lex_state = 247, .external_lex_state = 13}, - [1988] = {.lex_state = 213, .external_lex_state = 24}, - [1989] = {.lex_state = 213, .external_lex_state = 24}, - [1990] = {.lex_state = 213, .external_lex_state = 16}, - [1991] = {.lex_state = 234, .external_lex_state = 16}, - [1992] = {.lex_state = 247, .external_lex_state = 13}, - [1993] = {.lex_state = 232, .external_lex_state = 16}, - [1994] = {.lex_state = 247, .external_lex_state = 13}, - [1995] = {.lex_state = 236}, - [1996] = {.lex_state = 234, .external_lex_state = 16}, - [1997] = {.lex_state = 247, .external_lex_state = 13}, - [1998] = {.lex_state = 236}, - [1999] = {.lex_state = 234, .external_lex_state = 16}, - [2000] = {.lex_state = 236}, - [2001] = {.lex_state = 234, .external_lex_state = 16}, - [2002] = {.lex_state = 234, .external_lex_state = 16}, - [2003] = {.lex_state = 247, .external_lex_state = 13}, - [2004] = {.lex_state = 234, .external_lex_state = 16}, - [2005] = {.lex_state = 130, .external_lex_state = 21}, - [2006] = {.lex_state = 130, .external_lex_state = 21}, - [2007] = {.lex_state = 130, .external_lex_state = 21}, - [2008] = {.lex_state = 234, .external_lex_state = 16}, - [2009] = {.lex_state = 213, .external_lex_state = 24}, - [2010] = {.lex_state = 213, .external_lex_state = 24}, - [2011] = {.lex_state = 213, .external_lex_state = 16}, - [2012] = {.lex_state = 234, .external_lex_state = 16}, - [2013] = {.lex_state = 130, .external_lex_state = 21}, - [2014] = {.lex_state = 234, .external_lex_state = 16}, - [2015] = {.lex_state = 130, .external_lex_state = 21}, - [2016] = {.lex_state = 234, .external_lex_state = 16}, - [2017] = {.lex_state = 130, .external_lex_state = 21}, - [2018] = {.lex_state = 234, .external_lex_state = 16}, - [2019] = {.lex_state = 130, .external_lex_state = 21}, - [2020] = {.lex_state = 234, .external_lex_state = 16}, - [2021] = {.lex_state = 132, .external_lex_state = 4}, - [2022] = {.lex_state = 213, .external_lex_state = 22}, - [2023] = {.lex_state = 271}, - [2024] = {.lex_state = 271, .external_lex_state = 13}, - [2025] = {.lex_state = 271, .external_lex_state = 13}, - [2026] = {.lex_state = 271, .external_lex_state = 13}, - [2027] = {.lex_state = 151}, - [2028] = {.lex_state = 232, .external_lex_state = 16}, - [2029] = {.lex_state = 271, .external_lex_state = 13}, - [2030] = {.lex_state = 236}, - [2031] = {.lex_state = 234, .external_lex_state = 16}, - [2032] = {.lex_state = 62}, - [2033] = {.lex_state = 157, .external_lex_state = 16}, - [2034] = {.lex_state = 157, .external_lex_state = 16}, - [2035] = {.lex_state = 157, .external_lex_state = 16}, - [2036] = {.lex_state = 271, .external_lex_state = 13}, - [2037] = {.lex_state = 236}, - [2038] = {.lex_state = 234, .external_lex_state = 16}, - [2039] = {.lex_state = 271, .external_lex_state = 13}, - [2040] = {.lex_state = 236}, - [2041] = {.lex_state = 234, .external_lex_state = 16}, - [2042] = {.lex_state = 271, .external_lex_state = 13}, - [2043] = {.lex_state = 271, .external_lex_state = 13}, - [2044] = {.lex_state = 132, .external_lex_state = 4}, - [2045] = {.lex_state = 271}, - [2046] = {.lex_state = 271}, - [2047] = {.lex_state = 269}, - [2048] = {.lex_state = 253, .external_lex_state = 10}, - [2049] = {.lex_state = 253, .external_lex_state = 10}, - [2050] = {.lex_state = 253, .external_lex_state = 10}, - [2051] = {.lex_state = 234, .external_lex_state = 16}, - [2052] = {.lex_state = 213, .external_lex_state = 24}, - [2053] = {.lex_state = 213, .external_lex_state = 24}, - [2054] = {.lex_state = 213, .external_lex_state = 16}, - [2055] = {.lex_state = 234, .external_lex_state = 16}, - [2056] = {.lex_state = 253, .external_lex_state = 10}, - [2057] = {.lex_state = 234, .external_lex_state = 16}, - [2058] = {.lex_state = 253, .external_lex_state = 10}, - [2059] = {.lex_state = 234, .external_lex_state = 16}, - [2060] = {.lex_state = 253, .external_lex_state = 10}, - [2061] = {.lex_state = 234, .external_lex_state = 16}, - [2062] = {.lex_state = 253, .external_lex_state = 10}, - [2063] = {.lex_state = 234, .external_lex_state = 16}, - [2064] = {.lex_state = 271}, - [2065] = {.lex_state = 56, .external_lex_state = 2}, - [2066] = {.lex_state = 132, .external_lex_state = 4}, - [2067] = {.lex_state = 273, .external_lex_state = 13}, - [2068] = {.lex_state = 273, .external_lex_state = 13}, - [2069] = {.lex_state = 273}, - [2070] = {.lex_state = 62}, - [2071] = {.lex_state = 56, .external_lex_state = 2}, - [2072] = {.lex_state = 73}, - [2073] = {.lex_state = 73}, - [2074] = {.lex_state = 75, .external_lex_state = 2}, - [2075] = {.lex_state = 77}, - [2076] = {.lex_state = 77}, - [2077] = {.lex_state = 83, .external_lex_state = 3}, - [2078] = {.lex_state = 83, .external_lex_state = 4}, - [2079] = {.lex_state = 88, .external_lex_state = 5}, - [2080] = {.lex_state = 88, .external_lex_state = 5}, - [2081] = {.lex_state = 109, .external_lex_state = 5}, - [2082] = {.lex_state = 132, .external_lex_state = 4}, - [2083] = {.lex_state = 88, .external_lex_state = 7}, - [2084] = {.lex_state = 113, .external_lex_state = 8}, - [2085] = {.lex_state = 62}, - [2086] = {.lex_state = 179, .external_lex_state = 2}, - [2087] = {.lex_state = 73, .external_lex_state = 2}, - [2088] = {.lex_state = 179, .external_lex_state = 2}, - [2089] = {.lex_state = 273}, - [2090] = {.lex_state = 273, .external_lex_state = 13}, - [2091] = {.lex_state = 73}, - [2092] = {.lex_state = 132, .external_lex_state = 4}, - [2093] = {.lex_state = 113, .external_lex_state = 8}, - [2094] = {.lex_state = 179, .external_lex_state = 2}, - [2095] = {.lex_state = 179, .external_lex_state = 2}, - [2096] = {.lex_state = 132, .external_lex_state = 4}, - [2097] = {.lex_state = 273, .external_lex_state = 13}, - [2098] = {.lex_state = 273, .external_lex_state = 13}, - [2099] = {.lex_state = 273}, - [2100] = {.lex_state = 73}, - [2101] = {.lex_state = 132, .external_lex_state = 4}, - [2102] = {.lex_state = 73}, - [2103] = {.lex_state = 122, .external_lex_state = 10}, - [2104] = {.lex_state = 122, .external_lex_state = 10}, - [2105] = {.lex_state = 122, .external_lex_state = 10}, - [2106] = {.lex_state = 122, .external_lex_state = 10}, - [2107] = {.lex_state = 234, .external_lex_state = 16}, - [2108] = {.lex_state = 122, .external_lex_state = 10}, - [2109] = {.lex_state = 234, .external_lex_state = 16}, - [2110] = {.lex_state = 122, .external_lex_state = 10}, - [2111] = {.lex_state = 234, .external_lex_state = 16}, - [2112] = {.lex_state = 122, .external_lex_state = 10}, - [2113] = {.lex_state = 122, .external_lex_state = 10}, - [2114] = {.lex_state = 132, .external_lex_state = 10}, - [2115] = {.lex_state = 132, .external_lex_state = 10}, - [2116] = {.lex_state = 132, .external_lex_state = 10}, - [2117] = {.lex_state = 132, .external_lex_state = 10}, - [2118] = {.lex_state = 220, .external_lex_state = 27}, - [2119] = {.lex_state = 220, .external_lex_state = 27}, - [2120] = {.lex_state = 220, .external_lex_state = 27}, - [2121] = {.lex_state = 134, .external_lex_state = 11}, - [2122] = {.lex_state = 134, .external_lex_state = 11}, - [2123] = {.lex_state = 134, .external_lex_state = 11}, - [2124] = {.lex_state = 134, .external_lex_state = 11}, - [2125] = {.lex_state = 234, .external_lex_state = 16}, - [2126] = {.lex_state = 134, .external_lex_state = 11}, - [2127] = {.lex_state = 234, .external_lex_state = 16}, - [2128] = {.lex_state = 134, .external_lex_state = 11}, - [2129] = {.lex_state = 234, .external_lex_state = 16}, - [2130] = {.lex_state = 134, .external_lex_state = 11}, - [2131] = {.lex_state = 134, .external_lex_state = 11}, - [2132] = {.lex_state = 245, .external_lex_state = 27}, - [2133] = {.lex_state = 205, .external_lex_state = 27}, - [2134] = {.lex_state = 245, .external_lex_state = 27}, - [2135] = {.lex_state = 151}, - [2136] = {.lex_state = 232, .external_lex_state = 16}, - [2137] = {.lex_state = 245, .external_lex_state = 27}, - [2138] = {.lex_state = 236}, - [2139] = {.lex_state = 234, .external_lex_state = 16}, - [2140] = {.lex_state = 62}, - [2141] = {.lex_state = 157, .external_lex_state = 16}, - [2142] = {.lex_state = 157, .external_lex_state = 16}, - [2143] = {.lex_state = 157, .external_lex_state = 16}, - [2144] = {.lex_state = 245, .external_lex_state = 27}, - [2145] = {.lex_state = 236}, - [2146] = {.lex_state = 234, .external_lex_state = 16}, - [2147] = {.lex_state = 245, .external_lex_state = 27}, - [2148] = {.lex_state = 236}, - [2149] = {.lex_state = 234, .external_lex_state = 16}, - [2150] = {.lex_state = 245, .external_lex_state = 27}, - [2151] = {.lex_state = 245, .external_lex_state = 27}, - [2152] = {.lex_state = 229, .external_lex_state = 13}, - [2153] = {.lex_state = 229, .external_lex_state = 13}, - [2154] = {.lex_state = 229, .external_lex_state = 13}, - [2155] = {.lex_state = 229, .external_lex_state = 13}, - [2156] = {.lex_state = 234, .external_lex_state = 16}, - [2157] = {.lex_state = 229, .external_lex_state = 13}, - [2158] = {.lex_state = 234, .external_lex_state = 16}, - [2159] = {.lex_state = 229, .external_lex_state = 13}, - [2160] = {.lex_state = 234, .external_lex_state = 16}, - [2161] = {.lex_state = 229, .external_lex_state = 13}, - [2162] = {.lex_state = 229, .external_lex_state = 13}, - [2163] = {.lex_state = 126, .external_lex_state = 14}, - [2164] = {.lex_state = 126, .external_lex_state = 14}, - [2165] = {.lex_state = 126, .external_lex_state = 14}, - [2166] = {.lex_state = 126, .external_lex_state = 14}, - [2167] = {.lex_state = 234, .external_lex_state = 16}, - [2168] = {.lex_state = 126, .external_lex_state = 14}, - [2169] = {.lex_state = 234, .external_lex_state = 16}, - [2170] = {.lex_state = 126, .external_lex_state = 14}, - [2171] = {.lex_state = 234, .external_lex_state = 16}, - [2172] = {.lex_state = 126, .external_lex_state = 14}, - [2173] = {.lex_state = 126, .external_lex_state = 14}, - [2174] = {.lex_state = 126, .external_lex_state = 10}, - [2175] = {.lex_state = 126, .external_lex_state = 10}, - [2176] = {.lex_state = 126, .external_lex_state = 10}, - [2177] = {.lex_state = 126, .external_lex_state = 10}, - [2178] = {.lex_state = 234, .external_lex_state = 16}, - [2179] = {.lex_state = 126, .external_lex_state = 10}, - [2180] = {.lex_state = 234, .external_lex_state = 16}, - [2181] = {.lex_state = 126, .external_lex_state = 10}, - [2182] = {.lex_state = 234, .external_lex_state = 16}, - [2183] = {.lex_state = 126, .external_lex_state = 10}, - [2184] = {.lex_state = 126, .external_lex_state = 10}, - [2185] = {.lex_state = 169, .external_lex_state = 15}, - [2186] = {.lex_state = 169, .external_lex_state = 15}, - [2187] = {.lex_state = 169, .external_lex_state = 15}, - [2188] = {.lex_state = 169, .external_lex_state = 15}, - [2189] = {.lex_state = 234, .external_lex_state = 16}, - [2190] = {.lex_state = 169, .external_lex_state = 15}, - [2191] = {.lex_state = 234, .external_lex_state = 16}, - [2192] = {.lex_state = 169, .external_lex_state = 15}, - [2193] = {.lex_state = 234, .external_lex_state = 16}, - [2194] = {.lex_state = 169, .external_lex_state = 15}, - [2195] = {.lex_state = 169, .external_lex_state = 15}, - [2196] = {.lex_state = 91, .external_lex_state = 13}, - [2197] = {.lex_state = 91, .external_lex_state = 13}, - [2198] = {.lex_state = 91, .external_lex_state = 13}, - [2199] = {.lex_state = 91, .external_lex_state = 13}, - [2200] = {.lex_state = 234, .external_lex_state = 16}, - [2201] = {.lex_state = 91, .external_lex_state = 13}, - [2202] = {.lex_state = 234, .external_lex_state = 16}, - [2203] = {.lex_state = 91, .external_lex_state = 13}, - [2204] = {.lex_state = 234, .external_lex_state = 16}, - [2205] = {.lex_state = 91, .external_lex_state = 13}, - [2206] = {.lex_state = 91, .external_lex_state = 13}, - [2207] = {.lex_state = 157, .external_lex_state = 16}, - [2208] = {.lex_state = 157, .external_lex_state = 16}, - [2209] = {.lex_state = 213, .external_lex_state = 24}, - [2210] = {.lex_state = 213, .external_lex_state = 24}, - [2211] = {.lex_state = 213, .external_lex_state = 24}, - [2212] = {.lex_state = 213, .external_lex_state = 24}, - [2213] = {.lex_state = 213, .external_lex_state = 16}, - [2214] = {.lex_state = 234, .external_lex_state = 16}, - [2215] = {.lex_state = 213, .external_lex_state = 24}, - [2216] = {.lex_state = 232, .external_lex_state = 16}, - [2217] = {.lex_state = 213, .external_lex_state = 24}, - [2218] = {.lex_state = 236}, - [2219] = {.lex_state = 234, .external_lex_state = 16}, - [2220] = {.lex_state = 213, .external_lex_state = 24}, - [2221] = {.lex_state = 236}, - [2222] = {.lex_state = 234, .external_lex_state = 16}, - [2223] = {.lex_state = 236}, - [2224] = {.lex_state = 234, .external_lex_state = 16}, - [2225] = {.lex_state = 234, .external_lex_state = 16}, - [2226] = {.lex_state = 213, .external_lex_state = 24}, - [2227] = {.lex_state = 234, .external_lex_state = 16}, - [2228] = {.lex_state = 234, .external_lex_state = 24}, - [2229] = {.lex_state = 234, .external_lex_state = 24}, - [2230] = {.lex_state = 234, .external_lex_state = 24}, - [2231] = {.lex_state = 234, .external_lex_state = 16}, - [2232] = {.lex_state = 213, .external_lex_state = 24}, - [2233] = {.lex_state = 213, .external_lex_state = 24}, - [2234] = {.lex_state = 213, .external_lex_state = 16}, - [2235] = {.lex_state = 234, .external_lex_state = 16}, - [2236] = {.lex_state = 234, .external_lex_state = 24}, - [2237] = {.lex_state = 234, .external_lex_state = 16}, - [2238] = {.lex_state = 234, .external_lex_state = 24}, - [2239] = {.lex_state = 234, .external_lex_state = 16}, - [2240] = {.lex_state = 234, .external_lex_state = 24}, - [2241] = {.lex_state = 234, .external_lex_state = 16}, - [2242] = {.lex_state = 234, .external_lex_state = 24}, - [2243] = {.lex_state = 234, .external_lex_state = 16}, - [2244] = {.lex_state = 115, .external_lex_state = 5}, - [2245] = {.lex_state = 115, .external_lex_state = 5}, - [2246] = {.lex_state = 115, .external_lex_state = 5}, - [2247] = {.lex_state = 213, .external_lex_state = 22}, - [2248] = {.lex_state = 162}, - [2249] = {.lex_state = 269}, - [2250] = {.lex_state = 271}, - [2251] = {.lex_state = 249}, - [2252] = {.lex_state = 162}, - [2253] = {.lex_state = 162}, - [2254] = {.lex_state = 162}, - [2255] = {.lex_state = 73}, - [2256] = {.lex_state = 162}, - [2257] = {.lex_state = 73}, - [2258] = {.lex_state = 162}, - [2259] = {.lex_state = 73}, - [2260] = {.lex_state = 162}, - [2261] = {.lex_state = 73}, - [2262] = {.lex_state = 162}, - [2263] = {.lex_state = 73}, - [2264] = {.lex_state = 162}, - [2265] = {.lex_state = 169, .external_lex_state = 13}, - [2266] = {.lex_state = 169, .external_lex_state = 13}, - [2267] = {.lex_state = 162}, - [2268] = {.lex_state = 169, .external_lex_state = 13}, - [2269] = {.lex_state = 241, .external_lex_state = 28}, - [2270] = {.lex_state = 241, .external_lex_state = 28}, - [2271] = {.lex_state = 265, .external_lex_state = 26}, - [2272] = {.lex_state = 73}, - [2273] = {.lex_state = 241, .external_lex_state = 28}, - [2274] = {.lex_state = 265, .external_lex_state = 28}, - [2275] = {.lex_state = 151}, - [2276] = {.lex_state = 91}, - [2277] = {.lex_state = 265, .external_lex_state = 28}, - [2278] = {.lex_state = 265, .external_lex_state = 28}, - [2279] = {.lex_state = 265, .external_lex_state = 28}, - [2280] = {.lex_state = 62}, - [2281] = {.lex_state = 157, .external_lex_state = 16}, - [2282] = {.lex_state = 160, .external_lex_state = 6}, - [2283] = {.lex_state = 157, .external_lex_state = 16}, - [2284] = {.lex_state = 157, .external_lex_state = 16}, - [2285] = {.lex_state = 162}, - [2286] = {.lex_state = 169, .external_lex_state = 2}, - [2287] = {.lex_state = 162}, - [2288] = {.lex_state = 177, .external_lex_state = 2}, - [2289] = {.lex_state = 162}, - [2290] = {.lex_state = 169, .external_lex_state = 2}, - [2291] = {.lex_state = 162, .external_lex_state = 6}, - [2292] = {.lex_state = 162, .external_lex_state = 25}, - [2293] = {.lex_state = 162, .external_lex_state = 25}, - [2294] = {.lex_state = 162, .external_lex_state = 25}, - [2295] = {.lex_state = 234, .external_lex_state = 16}, - [2296] = {.lex_state = 213, .external_lex_state = 24}, - [2297] = {.lex_state = 213, .external_lex_state = 24}, - [2298] = {.lex_state = 213, .external_lex_state = 16}, - [2299] = {.lex_state = 234, .external_lex_state = 16}, - [2300] = {.lex_state = 162, .external_lex_state = 25}, - [2301] = {.lex_state = 234, .external_lex_state = 16}, - [2302] = {.lex_state = 162, .external_lex_state = 25}, - [2303] = {.lex_state = 234, .external_lex_state = 16}, - [2304] = {.lex_state = 162, .external_lex_state = 25}, - [2305] = {.lex_state = 234, .external_lex_state = 16}, - [2306] = {.lex_state = 162, .external_lex_state = 25}, - [2307] = {.lex_state = 234, .external_lex_state = 16}, - [2308] = {.lex_state = 162, .external_lex_state = 13}, - [2309] = {.lex_state = 162, .external_lex_state = 13}, - [2310] = {.lex_state = 162, .external_lex_state = 13}, - [2311] = {.lex_state = 234, .external_lex_state = 16}, - [2312] = {.lex_state = 213, .external_lex_state = 24}, - [2313] = {.lex_state = 213, .external_lex_state = 24}, - [2314] = {.lex_state = 213, .external_lex_state = 16}, - [2315] = {.lex_state = 234, .external_lex_state = 16}, - [2316] = {.lex_state = 162, .external_lex_state = 13}, - [2317] = {.lex_state = 234, .external_lex_state = 16}, - [2318] = {.lex_state = 162, .external_lex_state = 13}, - [2319] = {.lex_state = 234, .external_lex_state = 16}, - [2320] = {.lex_state = 162, .external_lex_state = 13}, - [2321] = {.lex_state = 234, .external_lex_state = 16}, - [2322] = {.lex_state = 162, .external_lex_state = 13}, - [2323] = {.lex_state = 234, .external_lex_state = 16}, - [2324] = {.lex_state = 164, .external_lex_state = 17}, - [2325] = {.lex_state = 164, .external_lex_state = 17}, - [2326] = {.lex_state = 164, .external_lex_state = 17}, - [2327] = {.lex_state = 164, .external_lex_state = 17}, - [2328] = {.lex_state = 234, .external_lex_state = 16}, - [2329] = {.lex_state = 164, .external_lex_state = 17}, - [2330] = {.lex_state = 234, .external_lex_state = 16}, - [2331] = {.lex_state = 164, .external_lex_state = 17}, - [2332] = {.lex_state = 234, .external_lex_state = 16}, - [2333] = {.lex_state = 164, .external_lex_state = 17}, - [2334] = {.lex_state = 164, .external_lex_state = 17}, - [2335] = {.lex_state = 169, .external_lex_state = 13}, - [2336] = {.lex_state = 169, .external_lex_state = 13}, - [2337] = {.lex_state = 169, .external_lex_state = 13}, - [2338] = {.lex_state = 243, .external_lex_state = 28}, - [2339] = {.lex_state = 243, .external_lex_state = 28}, - [2340] = {.lex_state = 243, .external_lex_state = 28}, - [2341] = {.lex_state = 182, .external_lex_state = 19}, - [2342] = {.lex_state = 182, .external_lex_state = 19}, - [2343] = {.lex_state = 182, .external_lex_state = 19}, - [2344] = {.lex_state = 234, .external_lex_state = 16}, - [2345] = {.lex_state = 213, .external_lex_state = 24}, - [2346] = {.lex_state = 213, .external_lex_state = 24}, - [2347] = {.lex_state = 213, .external_lex_state = 16}, - [2348] = {.lex_state = 234, .external_lex_state = 16}, - [2349] = {.lex_state = 182, .external_lex_state = 19}, - [2350] = {.lex_state = 234, .external_lex_state = 16}, - [2351] = {.lex_state = 182, .external_lex_state = 19}, - [2352] = {.lex_state = 234, .external_lex_state = 16}, - [2353] = {.lex_state = 182, .external_lex_state = 19}, - [2354] = {.lex_state = 234, .external_lex_state = 16}, - [2355] = {.lex_state = 182, .external_lex_state = 19}, - [2356] = {.lex_state = 234, .external_lex_state = 16}, - [2357] = {.lex_state = 247, .external_lex_state = 13}, - [2358] = {.lex_state = 247, .external_lex_state = 13}, - [2359] = {.lex_state = 247, .external_lex_state = 13}, - [2360] = {.lex_state = 234, .external_lex_state = 16}, - [2361] = {.lex_state = 213, .external_lex_state = 24}, - [2362] = {.lex_state = 213, .external_lex_state = 24}, - [2363] = {.lex_state = 213, .external_lex_state = 16}, - [2364] = {.lex_state = 234, .external_lex_state = 16}, - [2365] = {.lex_state = 247, .external_lex_state = 13}, - [2366] = {.lex_state = 234, .external_lex_state = 16}, - [2367] = {.lex_state = 247, .external_lex_state = 13}, - [2368] = {.lex_state = 234, .external_lex_state = 16}, - [2369] = {.lex_state = 247, .external_lex_state = 13}, - [2370] = {.lex_state = 234, .external_lex_state = 16}, - [2371] = {.lex_state = 247, .external_lex_state = 13}, - [2372] = {.lex_state = 234, .external_lex_state = 16}, - [2373] = {.lex_state = 130, .external_lex_state = 21}, - [2374] = {.lex_state = 130, .external_lex_state = 21}, - [2375] = {.lex_state = 130, .external_lex_state = 21}, - [2376] = {.lex_state = 130, .external_lex_state = 21}, - [2377] = {.lex_state = 234, .external_lex_state = 16}, - [2378] = {.lex_state = 130, .external_lex_state = 21}, - [2379] = {.lex_state = 234, .external_lex_state = 16}, - [2380] = {.lex_state = 130, .external_lex_state = 21}, - [2381] = {.lex_state = 234, .external_lex_state = 16}, - [2382] = {.lex_state = 130, .external_lex_state = 21}, - [2383] = {.lex_state = 130, .external_lex_state = 21}, - [2384] = {.lex_state = 132, .external_lex_state = 4}, - [2385] = {.lex_state = 271, .external_lex_state = 13}, - [2386] = {.lex_state = 271, .external_lex_state = 13}, - [2387] = {.lex_state = 213, .external_lex_state = 24}, - [2388] = {.lex_state = 213, .external_lex_state = 24}, - [2389] = {.lex_state = 213, .external_lex_state = 16}, - [2390] = {.lex_state = 234, .external_lex_state = 16}, - [2391] = {.lex_state = 271, .external_lex_state = 13}, - [2392] = {.lex_state = 232, .external_lex_state = 16}, - [2393] = {.lex_state = 271, .external_lex_state = 13}, - [2394] = {.lex_state = 236}, - [2395] = {.lex_state = 234, .external_lex_state = 16}, - [2396] = {.lex_state = 271, .external_lex_state = 13}, - [2397] = {.lex_state = 236}, - [2398] = {.lex_state = 234, .external_lex_state = 16}, - [2399] = {.lex_state = 236}, - [2400] = {.lex_state = 234, .external_lex_state = 16}, - [2401] = {.lex_state = 234, .external_lex_state = 16}, - [2402] = {.lex_state = 271, .external_lex_state = 13}, - [2403] = {.lex_state = 234, .external_lex_state = 16}, - [2404] = {.lex_state = 132, .external_lex_state = 4}, - [2405] = {.lex_state = 253, .external_lex_state = 10}, - [2406] = {.lex_state = 253, .external_lex_state = 10}, - [2407] = {.lex_state = 253, .external_lex_state = 10}, - [2408] = {.lex_state = 253, .external_lex_state = 10}, - [2409] = {.lex_state = 234, .external_lex_state = 16}, - [2410] = {.lex_state = 253, .external_lex_state = 10}, - [2411] = {.lex_state = 234, .external_lex_state = 16}, - [2412] = {.lex_state = 253, .external_lex_state = 10}, - [2413] = {.lex_state = 234, .external_lex_state = 16}, - [2414] = {.lex_state = 253, .external_lex_state = 10}, - [2415] = {.lex_state = 253, .external_lex_state = 10}, - [2416] = {.lex_state = 269}, - [2417] = {.lex_state = 117, .external_lex_state = 9}, - [2418] = {.lex_state = 73}, - [2419] = {.lex_state = 124}, - [2420] = {.lex_state = 134, .external_lex_state = 12}, - [2421] = {.lex_state = 147}, - [2422] = {.lex_state = 62}, - [2423] = {.lex_state = 83, .external_lex_state = 14}, - [2424] = {.lex_state = 91}, - [2425] = {.lex_state = 98}, - [2426] = {.lex_state = 83, .external_lex_state = 14}, - [2427] = {.lex_state = 107, .external_lex_state = 6}, - [2428] = {.lex_state = 56, .external_lex_state = 2}, - [2429] = {.lex_state = 56, .external_lex_state = 2}, - [2430] = {.lex_state = 56, .external_lex_state = 2}, - [2431] = {.lex_state = 83, .external_lex_state = 3}, - [2432] = {.lex_state = 83, .external_lex_state = 3}, - [2433] = {.lex_state = 62}, - [2434] = {.lex_state = 83, .external_lex_state = 3}, - [2435] = {.lex_state = 83, .external_lex_state = 10}, - [2436] = {.lex_state = 91}, - [2437] = {.lex_state = 98}, - [2438] = {.lex_state = 83, .external_lex_state = 10}, - [2439] = {.lex_state = 107, .external_lex_state = 6}, - [2440] = {.lex_state = 56, .external_lex_state = 2}, - [2441] = {.lex_state = 56, .external_lex_state = 2}, - [2442] = {.lex_state = 56, .external_lex_state = 2}, - [2443] = {.lex_state = 83, .external_lex_state = 4}, - [2444] = {.lex_state = 83, .external_lex_state = 4}, - [2445] = {.lex_state = 88, .external_lex_state = 5}, - [2446] = {.lex_state = 77}, - [2447] = {.lex_state = 56, .external_lex_state = 2}, - [2448] = {.lex_state = 179, .external_lex_state = 2}, - [2449] = {.lex_state = 56, .external_lex_state = 2}, - [2450] = {.lex_state = 56}, - [2451] = {.lex_state = 185}, - [2452] = {.lex_state = 73}, - [2453] = {.lex_state = 73}, - [2454] = {.lex_state = 88, .external_lex_state = 5}, - [2455] = {.lex_state = 88, .external_lex_state = 5}, - [2456] = {.lex_state = 278, .external_lex_state = 7}, - [2457] = {.lex_state = 88, .external_lex_state = 7}, - [2458] = {.lex_state = 73}, - [2459] = {.lex_state = 132, .external_lex_state = 4}, - [2460] = {.lex_state = 113, .external_lex_state = 8}, - [2461] = {.lex_state = 179, .external_lex_state = 2}, - [2462] = {.lex_state = 88, .external_lex_state = 7}, - [2463] = {.lex_state = 179, .external_lex_state = 2}, - [2464] = {.lex_state = 179, .external_lex_state = 2}, - [2465] = {.lex_state = 73}, - [2466] = {.lex_state = 132, .external_lex_state = 4}, - [2467] = {.lex_state = 113, .external_lex_state = 8}, - [2468] = {.lex_state = 179, .external_lex_state = 2}, - [2469] = {.lex_state = 179, .external_lex_state = 2}, - [2470] = {.lex_state = 273}, - [2471] = {.lex_state = 179, .external_lex_state = 2}, - [2472] = {.lex_state = 273}, - [2473] = {.lex_state = 132, .external_lex_state = 4}, - [2474] = {.lex_state = 132, .external_lex_state = 4}, - [2475] = {.lex_state = 122, .external_lex_state = 10}, - [2476] = {.lex_state = 122, .external_lex_state = 10}, - [2477] = {.lex_state = 122, .external_lex_state = 10}, - [2478] = {.lex_state = 132, .external_lex_state = 10}, - [2479] = {.lex_state = 220, .external_lex_state = 27}, - [2480] = {.lex_state = 134, .external_lex_state = 11}, - [2481] = {.lex_state = 134, .external_lex_state = 11}, - [2482] = {.lex_state = 134, .external_lex_state = 11}, - [2483] = {.lex_state = 245, .external_lex_state = 27}, - [2484] = {.lex_state = 245, .external_lex_state = 27}, - [2485] = {.lex_state = 213, .external_lex_state = 24}, - [2486] = {.lex_state = 213, .external_lex_state = 24}, - [2487] = {.lex_state = 213, .external_lex_state = 16}, - [2488] = {.lex_state = 234, .external_lex_state = 16}, - [2489] = {.lex_state = 245, .external_lex_state = 27}, - [2490] = {.lex_state = 232, .external_lex_state = 16}, - [2491] = {.lex_state = 245, .external_lex_state = 27}, - [2492] = {.lex_state = 236}, - [2493] = {.lex_state = 234, .external_lex_state = 16}, - [2494] = {.lex_state = 245, .external_lex_state = 27}, - [2495] = {.lex_state = 236}, - [2496] = {.lex_state = 234, .external_lex_state = 16}, - [2497] = {.lex_state = 236}, - [2498] = {.lex_state = 234, .external_lex_state = 16}, - [2499] = {.lex_state = 234, .external_lex_state = 16}, - [2500] = {.lex_state = 245, .external_lex_state = 27}, - [2501] = {.lex_state = 234, .external_lex_state = 16}, - [2502] = {.lex_state = 229, .external_lex_state = 13}, - [2503] = {.lex_state = 229, .external_lex_state = 13}, - [2504] = {.lex_state = 229, .external_lex_state = 13}, - [2505] = {.lex_state = 126, .external_lex_state = 14}, - [2506] = {.lex_state = 126, .external_lex_state = 14}, - [2507] = {.lex_state = 126, .external_lex_state = 14}, - [2508] = {.lex_state = 126, .external_lex_state = 10}, - [2509] = {.lex_state = 126, .external_lex_state = 10}, - [2510] = {.lex_state = 126, .external_lex_state = 10}, - [2511] = {.lex_state = 169, .external_lex_state = 15}, - [2512] = {.lex_state = 169, .external_lex_state = 15}, - [2513] = {.lex_state = 169, .external_lex_state = 15}, - [2514] = {.lex_state = 91, .external_lex_state = 13}, - [2515] = {.lex_state = 91, .external_lex_state = 13}, - [2516] = {.lex_state = 91, .external_lex_state = 13}, - [2517] = {.lex_state = 213, .external_lex_state = 24}, - [2518] = {.lex_state = 213, .external_lex_state = 24}, - [2519] = {.lex_state = 213, .external_lex_state = 24}, - [2520] = {.lex_state = 234, .external_lex_state = 16}, - [2521] = {.lex_state = 213, .external_lex_state = 24}, - [2522] = {.lex_state = 213, .external_lex_state = 24}, - [2523] = {.lex_state = 213, .external_lex_state = 16}, - [2524] = {.lex_state = 234, .external_lex_state = 16}, - [2525] = {.lex_state = 213, .external_lex_state = 24}, - [2526] = {.lex_state = 234, .external_lex_state = 16}, - [2527] = {.lex_state = 213, .external_lex_state = 24}, - [2528] = {.lex_state = 234, .external_lex_state = 16}, - [2529] = {.lex_state = 213, .external_lex_state = 24}, - [2530] = {.lex_state = 234, .external_lex_state = 16}, - [2531] = {.lex_state = 213, .external_lex_state = 24}, - [2532] = {.lex_state = 234, .external_lex_state = 16}, - [2533] = {.lex_state = 234, .external_lex_state = 24}, - [2534] = {.lex_state = 234, .external_lex_state = 24}, - [2535] = {.lex_state = 234, .external_lex_state = 24}, - [2536] = {.lex_state = 234, .external_lex_state = 24}, - [2537] = {.lex_state = 234, .external_lex_state = 16}, - [2538] = {.lex_state = 234, .external_lex_state = 24}, - [2539] = {.lex_state = 234, .external_lex_state = 16}, - [2540] = {.lex_state = 234, .external_lex_state = 24}, - [2541] = {.lex_state = 234, .external_lex_state = 16}, - [2542] = {.lex_state = 234, .external_lex_state = 24}, - [2543] = {.lex_state = 234, .external_lex_state = 24}, - [2544] = {.lex_state = 162}, - [2545] = {.lex_state = 213, .external_lex_state = 22}, - [2546] = {.lex_state = 162}, - [2547] = {.lex_state = 269}, - [2548] = {.lex_state = 271}, - [2549] = {.lex_state = 162}, - [2550] = {.lex_state = 162}, - [2551] = {.lex_state = 73}, - [2552] = {.lex_state = 162}, - [2553] = {.lex_state = 73}, - [2554] = {.lex_state = 169, .external_lex_state = 13}, - [2555] = {.lex_state = 265, .external_lex_state = 28}, - [2556] = {.lex_state = 241, .external_lex_state = 28}, - [2557] = {.lex_state = 265, .external_lex_state = 28}, - [2558] = {.lex_state = 151}, - [2559] = {.lex_state = 232, .external_lex_state = 16}, - [2560] = {.lex_state = 265, .external_lex_state = 28}, - [2561] = {.lex_state = 236}, - [2562] = {.lex_state = 234, .external_lex_state = 16}, - [2563] = {.lex_state = 62}, - [2564] = {.lex_state = 157, .external_lex_state = 16}, - [2565] = {.lex_state = 157, .external_lex_state = 16}, - [2566] = {.lex_state = 157, .external_lex_state = 16}, - [2567] = {.lex_state = 265, .external_lex_state = 28}, - [2568] = {.lex_state = 236}, - [2569] = {.lex_state = 234, .external_lex_state = 16}, - [2570] = {.lex_state = 265, .external_lex_state = 28}, - [2571] = {.lex_state = 236}, - [2572] = {.lex_state = 234, .external_lex_state = 16}, - [2573] = {.lex_state = 265, .external_lex_state = 28}, - [2574] = {.lex_state = 265, .external_lex_state = 28}, - [2575] = {.lex_state = 162, .external_lex_state = 25}, - [2576] = {.lex_state = 162, .external_lex_state = 25}, - [2577] = {.lex_state = 162, .external_lex_state = 25}, - [2578] = {.lex_state = 162, .external_lex_state = 25}, - [2579] = {.lex_state = 234, .external_lex_state = 16}, - [2580] = {.lex_state = 162, .external_lex_state = 25}, - [2581] = {.lex_state = 234, .external_lex_state = 16}, - [2582] = {.lex_state = 162, .external_lex_state = 25}, - [2583] = {.lex_state = 234, .external_lex_state = 16}, - [2584] = {.lex_state = 162, .external_lex_state = 25}, - [2585] = {.lex_state = 162, .external_lex_state = 25}, - [2586] = {.lex_state = 162, .external_lex_state = 13}, - [2587] = {.lex_state = 162, .external_lex_state = 13}, - [2588] = {.lex_state = 162, .external_lex_state = 13}, - [2589] = {.lex_state = 162, .external_lex_state = 13}, - [2590] = {.lex_state = 234, .external_lex_state = 16}, - [2591] = {.lex_state = 162, .external_lex_state = 13}, - [2592] = {.lex_state = 234, .external_lex_state = 16}, - [2593] = {.lex_state = 162, .external_lex_state = 13}, - [2594] = {.lex_state = 234, .external_lex_state = 16}, - [2595] = {.lex_state = 162, .external_lex_state = 13}, - [2596] = {.lex_state = 162, .external_lex_state = 13}, - [2597] = {.lex_state = 164, .external_lex_state = 17}, - [2598] = {.lex_state = 164, .external_lex_state = 17}, - [2599] = {.lex_state = 164, .external_lex_state = 17}, - [2600] = {.lex_state = 169, .external_lex_state = 13}, - [2601] = {.lex_state = 243, .external_lex_state = 28}, - [2602] = {.lex_state = 182, .external_lex_state = 19}, - [2603] = {.lex_state = 182, .external_lex_state = 19}, - [2604] = {.lex_state = 182, .external_lex_state = 19}, - [2605] = {.lex_state = 182, .external_lex_state = 19}, - [2606] = {.lex_state = 234, .external_lex_state = 16}, - [2607] = {.lex_state = 182, .external_lex_state = 19}, - [2608] = {.lex_state = 234, .external_lex_state = 16}, - [2609] = {.lex_state = 182, .external_lex_state = 19}, - [2610] = {.lex_state = 234, .external_lex_state = 16}, - [2611] = {.lex_state = 182, .external_lex_state = 19}, - [2612] = {.lex_state = 182, .external_lex_state = 19}, - [2613] = {.lex_state = 247, .external_lex_state = 13}, - [2614] = {.lex_state = 247, .external_lex_state = 13}, - [2615] = {.lex_state = 247, .external_lex_state = 13}, - [2616] = {.lex_state = 247, .external_lex_state = 13}, - [2617] = {.lex_state = 234, .external_lex_state = 16}, - [2618] = {.lex_state = 247, .external_lex_state = 13}, - [2619] = {.lex_state = 234, .external_lex_state = 16}, - [2620] = {.lex_state = 247, .external_lex_state = 13}, - [2621] = {.lex_state = 234, .external_lex_state = 16}, - [2622] = {.lex_state = 247, .external_lex_state = 13}, - [2623] = {.lex_state = 247, .external_lex_state = 13}, - [2624] = {.lex_state = 130, .external_lex_state = 21}, - [2625] = {.lex_state = 130, .external_lex_state = 21}, - [2626] = {.lex_state = 130, .external_lex_state = 21}, - [2627] = {.lex_state = 271, .external_lex_state = 13}, - [2628] = {.lex_state = 271, .external_lex_state = 13}, - [2629] = {.lex_state = 271, .external_lex_state = 13}, - [2630] = {.lex_state = 234, .external_lex_state = 16}, - [2631] = {.lex_state = 213, .external_lex_state = 24}, - [2632] = {.lex_state = 213, .external_lex_state = 24}, - [2633] = {.lex_state = 213, .external_lex_state = 16}, - [2634] = {.lex_state = 234, .external_lex_state = 16}, - [2635] = {.lex_state = 271, .external_lex_state = 13}, - [2636] = {.lex_state = 234, .external_lex_state = 16}, - [2637] = {.lex_state = 271, .external_lex_state = 13}, - [2638] = {.lex_state = 234, .external_lex_state = 16}, - [2639] = {.lex_state = 271, .external_lex_state = 13}, - [2640] = {.lex_state = 234, .external_lex_state = 16}, - [2641] = {.lex_state = 271, .external_lex_state = 13}, - [2642] = {.lex_state = 234, .external_lex_state = 16}, - [2643] = {.lex_state = 253, .external_lex_state = 10}, - [2644] = {.lex_state = 253, .external_lex_state = 10}, - [2645] = {.lex_state = 253, .external_lex_state = 10}, - [2646] = {.lex_state = 132, .external_lex_state = 4}, - [2647] = {.lex_state = 113, .external_lex_state = 21}, - [2648] = {.lex_state = 113, .external_lex_state = 21}, - [2649] = {.lex_state = 278, .external_lex_state = 7}, - [2650] = {.lex_state = 77}, - [2651] = {.lex_state = 280, .external_lex_state = 23}, - [2652] = {.lex_state = 278, .external_lex_state = 23}, - [2653] = {.lex_state = 117, .external_lex_state = 9}, - [2654] = {.lex_state = 73}, - [2655] = {.lex_state = 83, .external_lex_state = 14}, - [2656] = {.lex_state = 83, .external_lex_state = 14}, - [2657] = {.lex_state = 151}, - [2658] = {.lex_state = 91}, + [1875] = {.lex_state = 73}, + [1876] = {.lex_state = 75, .external_lex_state = 2}, + [1877] = {.lex_state = 77}, + [1878] = {.lex_state = 77}, + [1879] = {.lex_state = 83, .external_lex_state = 3}, + [1880] = {.lex_state = 83, .external_lex_state = 4}, + [1881] = {.lex_state = 88, .external_lex_state = 5}, + [1882] = {.lex_state = 88, .external_lex_state = 5}, + [1883] = {.lex_state = 109, .external_lex_state = 5}, + [1884] = {.lex_state = 132, .external_lex_state = 4}, + [1885] = {.lex_state = 88, .external_lex_state = 7}, + [1886] = {.lex_state = 113, .external_lex_state = 8}, + [1887] = {.lex_state = 62}, + [1888] = {.lex_state = 162, .external_lex_state = 2}, + [1889] = {.lex_state = 73, .external_lex_state = 2}, + [1890] = {.lex_state = 162, .external_lex_state = 2}, + [1891] = {.lex_state = 250}, + [1892] = {.lex_state = 250, .external_lex_state = 13}, + [1893] = {.lex_state = 73}, + [1894] = {.lex_state = 132, .external_lex_state = 4}, + [1895] = {.lex_state = 113, .external_lex_state = 8}, + [1896] = {.lex_state = 162, .external_lex_state = 2}, + [1897] = {.lex_state = 162, .external_lex_state = 2}, + [1898] = {.lex_state = 132, .external_lex_state = 4}, + [1899] = {.lex_state = 250, .external_lex_state = 13}, + [1900] = {.lex_state = 250, .external_lex_state = 13}, + [1901] = {.lex_state = 250}, + [1902] = {.lex_state = 73}, + [1903] = {.lex_state = 132, .external_lex_state = 4}, + [1904] = {.lex_state = 73}, + [1905] = {.lex_state = 122, .external_lex_state = 10}, + [1906] = {.lex_state = 122, .external_lex_state = 10}, + [1907] = {.lex_state = 122, .external_lex_state = 10}, + [1908] = {.lex_state = 122, .external_lex_state = 10}, + [1909] = {.lex_state = 219, .external_lex_state = 16}, + [1910] = {.lex_state = 122, .external_lex_state = 10}, + [1911] = {.lex_state = 219, .external_lex_state = 16}, + [1912] = {.lex_state = 122, .external_lex_state = 10}, + [1913] = {.lex_state = 219, .external_lex_state = 16}, + [1914] = {.lex_state = 122, .external_lex_state = 10}, + [1915] = {.lex_state = 122, .external_lex_state = 10}, + [1916] = {.lex_state = 132, .external_lex_state = 10}, + [1917] = {.lex_state = 132, .external_lex_state = 10}, + [1918] = {.lex_state = 132, .external_lex_state = 10}, + [1919] = {.lex_state = 132, .external_lex_state = 10}, + [1920] = {.lex_state = 205, .external_lex_state = 23}, + [1921] = {.lex_state = 205, .external_lex_state = 23}, + [1922] = {.lex_state = 205, .external_lex_state = 23}, + [1923] = {.lex_state = 134, .external_lex_state = 11}, + [1924] = {.lex_state = 134, .external_lex_state = 11}, + [1925] = {.lex_state = 134, .external_lex_state = 11}, + [1926] = {.lex_state = 134, .external_lex_state = 11}, + [1927] = {.lex_state = 219, .external_lex_state = 16}, + [1928] = {.lex_state = 134, .external_lex_state = 11}, + [1929] = {.lex_state = 219, .external_lex_state = 16}, + [1930] = {.lex_state = 134, .external_lex_state = 11}, + [1931] = {.lex_state = 219, .external_lex_state = 16}, + [1932] = {.lex_state = 134, .external_lex_state = 11}, + [1933] = {.lex_state = 134, .external_lex_state = 11}, + [1934] = {.lex_state = 228, .external_lex_state = 23}, + [1935] = {.lex_state = 188, .external_lex_state = 23}, + [1936] = {.lex_state = 228, .external_lex_state = 23}, + [1937] = {.lex_state = 151}, + [1938] = {.lex_state = 217, .external_lex_state = 16}, + [1939] = {.lex_state = 228, .external_lex_state = 23}, + [1940] = {.lex_state = 221}, + [1941] = {.lex_state = 219, .external_lex_state = 16}, + [1942] = {.lex_state = 62}, + [1943] = {.lex_state = 157, .external_lex_state = 16}, + [1944] = {.lex_state = 157, .external_lex_state = 16}, + [1945] = {.lex_state = 157, .external_lex_state = 16}, + [1946] = {.lex_state = 228, .external_lex_state = 23}, + [1947] = {.lex_state = 221}, + [1948] = {.lex_state = 219, .external_lex_state = 16}, + [1949] = {.lex_state = 228, .external_lex_state = 23}, + [1950] = {.lex_state = 221}, + [1951] = {.lex_state = 219, .external_lex_state = 16}, + [1952] = {.lex_state = 228, .external_lex_state = 23}, + [1953] = {.lex_state = 203, .external_lex_state = 2}, + [1954] = {.lex_state = 126, .external_lex_state = 4}, + [1955] = {.lex_state = 130, .external_lex_state = 8}, + [1956] = {.lex_state = 56, .external_lex_state = 2}, + [1957] = {.lex_state = 83, .external_lex_state = 4}, + [1958] = {.lex_state = 113, .external_lex_state = 8}, + [1959] = {.lex_state = 228, .external_lex_state = 23}, + [1960] = {.lex_state = 203, .external_lex_state = 2}, + [1961] = {.lex_state = 126, .external_lex_state = 4}, + [1962] = {.lex_state = 130, .external_lex_state = 8}, + [1963] = {.lex_state = 214, .external_lex_state = 13}, + [1964] = {.lex_state = 214, .external_lex_state = 13}, + [1965] = {.lex_state = 214, .external_lex_state = 13}, + [1966] = {.lex_state = 214, .external_lex_state = 13}, + [1967] = {.lex_state = 219, .external_lex_state = 16}, + [1968] = {.lex_state = 214, .external_lex_state = 13}, + [1969] = {.lex_state = 219, .external_lex_state = 16}, + [1970] = {.lex_state = 214, .external_lex_state = 13}, + [1971] = {.lex_state = 219, .external_lex_state = 16}, + [1972] = {.lex_state = 214, .external_lex_state = 13}, + [1973] = {.lex_state = 214, .external_lex_state = 13}, + [1974] = {.lex_state = 126, .external_lex_state = 14}, + [1975] = {.lex_state = 126, .external_lex_state = 14}, + [1976] = {.lex_state = 126, .external_lex_state = 14}, + [1977] = {.lex_state = 126, .external_lex_state = 14}, + [1978] = {.lex_state = 219, .external_lex_state = 16}, + [1979] = {.lex_state = 126, .external_lex_state = 14}, + [1980] = {.lex_state = 219, .external_lex_state = 16}, + [1981] = {.lex_state = 126, .external_lex_state = 14}, + [1982] = {.lex_state = 219, .external_lex_state = 16}, + [1983] = {.lex_state = 126, .external_lex_state = 14}, + [1984] = {.lex_state = 126, .external_lex_state = 14}, + [1985] = {.lex_state = 126, .external_lex_state = 10}, + [1986] = {.lex_state = 126, .external_lex_state = 10}, + [1987] = {.lex_state = 126, .external_lex_state = 10}, + [1988] = {.lex_state = 126, .external_lex_state = 10}, + [1989] = {.lex_state = 219, .external_lex_state = 16}, + [1990] = {.lex_state = 126, .external_lex_state = 10}, + [1991] = {.lex_state = 219, .external_lex_state = 16}, + [1992] = {.lex_state = 126, .external_lex_state = 10}, + [1993] = {.lex_state = 219, .external_lex_state = 16}, + [1994] = {.lex_state = 126, .external_lex_state = 10}, + [1995] = {.lex_state = 126, .external_lex_state = 10}, + [1996] = {.lex_state = 73, .external_lex_state = 15}, + [1997] = {.lex_state = 73, .external_lex_state = 15}, + [1998] = {.lex_state = 73, .external_lex_state = 15}, + [1999] = {.lex_state = 73, .external_lex_state = 15}, + [2000] = {.lex_state = 219, .external_lex_state = 16}, + [2001] = {.lex_state = 73, .external_lex_state = 15}, + [2002] = {.lex_state = 219, .external_lex_state = 16}, + [2003] = {.lex_state = 73, .external_lex_state = 15}, + [2004] = {.lex_state = 219, .external_lex_state = 16}, + [2005] = {.lex_state = 73, .external_lex_state = 15}, + [2006] = {.lex_state = 73, .external_lex_state = 15}, + [2007] = {.lex_state = 91, .external_lex_state = 13}, + [2008] = {.lex_state = 91, .external_lex_state = 13}, + [2009] = {.lex_state = 91, .external_lex_state = 13}, + [2010] = {.lex_state = 91, .external_lex_state = 13}, + [2011] = {.lex_state = 219, .external_lex_state = 16}, + [2012] = {.lex_state = 91, .external_lex_state = 13}, + [2013] = {.lex_state = 219, .external_lex_state = 16}, + [2014] = {.lex_state = 91, .external_lex_state = 13}, + [2015] = {.lex_state = 219, .external_lex_state = 16}, + [2016] = {.lex_state = 91, .external_lex_state = 13}, + [2017] = {.lex_state = 91, .external_lex_state = 13}, + [2018] = {.lex_state = 157, .external_lex_state = 16}, + [2019] = {.lex_state = 157, .external_lex_state = 16}, + [2020] = {.lex_state = 198, .external_lex_state = 22}, + [2021] = {.lex_state = 198, .external_lex_state = 22}, + [2022] = {.lex_state = 198, .external_lex_state = 22}, + [2023] = {.lex_state = 198, .external_lex_state = 22}, + [2024] = {.lex_state = 198, .external_lex_state = 16}, + [2025] = {.lex_state = 219, .external_lex_state = 16}, + [2026] = {.lex_state = 198, .external_lex_state = 22}, + [2027] = {.lex_state = 217, .external_lex_state = 16}, + [2028] = {.lex_state = 198, .external_lex_state = 22}, + [2029] = {.lex_state = 221}, + [2030] = {.lex_state = 219, .external_lex_state = 16}, + [2031] = {.lex_state = 198, .external_lex_state = 22}, + [2032] = {.lex_state = 221}, + [2033] = {.lex_state = 219, .external_lex_state = 16}, + [2034] = {.lex_state = 221}, + [2035] = {.lex_state = 219, .external_lex_state = 16}, + [2036] = {.lex_state = 219, .external_lex_state = 16}, + [2037] = {.lex_state = 198, .external_lex_state = 22}, + [2038] = {.lex_state = 219, .external_lex_state = 16}, + [2039] = {.lex_state = 198, .external_lex_state = 22}, + [2040] = {.lex_state = 203, .external_lex_state = 2}, + [2041] = {.lex_state = 56, .external_lex_state = 2}, + [2042] = {.lex_state = 198, .external_lex_state = 22}, + [2043] = {.lex_state = 203, .external_lex_state = 2}, + [2044] = {.lex_state = 219, .external_lex_state = 22}, + [2045] = {.lex_state = 219, .external_lex_state = 22}, + [2046] = {.lex_state = 219, .external_lex_state = 22}, + [2047] = {.lex_state = 219, .external_lex_state = 16}, + [2048] = {.lex_state = 198, .external_lex_state = 22}, + [2049] = {.lex_state = 198, .external_lex_state = 22}, + [2050] = {.lex_state = 198, .external_lex_state = 16}, + [2051] = {.lex_state = 219, .external_lex_state = 16}, + [2052] = {.lex_state = 219, .external_lex_state = 22}, + [2053] = {.lex_state = 219, .external_lex_state = 16}, + [2054] = {.lex_state = 219, .external_lex_state = 22}, + [2055] = {.lex_state = 219, .external_lex_state = 16}, + [2056] = {.lex_state = 219, .external_lex_state = 22}, + [2057] = {.lex_state = 219, .external_lex_state = 16}, + [2058] = {.lex_state = 219, .external_lex_state = 22}, + [2059] = {.lex_state = 219, .external_lex_state = 16}, + [2060] = {.lex_state = 219, .external_lex_state = 22}, + [2061] = {.lex_state = 219, .external_lex_state = 22}, + [2062] = {.lex_state = 115, .external_lex_state = 5}, + [2063] = {.lex_state = 115, .external_lex_state = 5}, + [2064] = {.lex_state = 115, .external_lex_state = 5}, + [2065] = {.lex_state = 132, .external_lex_state = 10}, + [2066] = {.lex_state = 132, .external_lex_state = 10}, + [2067] = {.lex_state = 132, .external_lex_state = 10}, + [2068] = {.lex_state = 226, .external_lex_state = 23}, + [2069] = {.lex_state = 226, .external_lex_state = 23}, + [2070] = {.lex_state = 226, .external_lex_state = 23}, + [2071] = {.lex_state = 165, .external_lex_state = 17}, + [2072] = {.lex_state = 165, .external_lex_state = 17}, + [2073] = {.lex_state = 165, .external_lex_state = 17}, + [2074] = {.lex_state = 219, .external_lex_state = 16}, + [2075] = {.lex_state = 198, .external_lex_state = 22}, + [2076] = {.lex_state = 198, .external_lex_state = 22}, + [2077] = {.lex_state = 198, .external_lex_state = 16}, + [2078] = {.lex_state = 219, .external_lex_state = 16}, + [2079] = {.lex_state = 165, .external_lex_state = 17}, + [2080] = {.lex_state = 219, .external_lex_state = 16}, + [2081] = {.lex_state = 165, .external_lex_state = 17}, + [2082] = {.lex_state = 219, .external_lex_state = 16}, + [2083] = {.lex_state = 165, .external_lex_state = 17}, + [2084] = {.lex_state = 219, .external_lex_state = 16}, + [2085] = {.lex_state = 165, .external_lex_state = 17}, + [2086] = {.lex_state = 219, .external_lex_state = 16}, + [2087] = {.lex_state = 194, .external_lex_state = 13}, + [2088] = {.lex_state = 194, .external_lex_state = 13}, + [2089] = {.lex_state = 194, .external_lex_state = 13}, + [2090] = {.lex_state = 219, .external_lex_state = 16}, + [2091] = {.lex_state = 198, .external_lex_state = 22}, + [2092] = {.lex_state = 198, .external_lex_state = 22}, + [2093] = {.lex_state = 198, .external_lex_state = 16}, + [2094] = {.lex_state = 219, .external_lex_state = 16}, + [2095] = {.lex_state = 194, .external_lex_state = 13}, + [2096] = {.lex_state = 219, .external_lex_state = 16}, + [2097] = {.lex_state = 194, .external_lex_state = 13}, + [2098] = {.lex_state = 219, .external_lex_state = 16}, + [2099] = {.lex_state = 194, .external_lex_state = 13}, + [2100] = {.lex_state = 219, .external_lex_state = 16}, + [2101] = {.lex_state = 194, .external_lex_state = 13}, + [2102] = {.lex_state = 219, .external_lex_state = 16}, + [2103] = {.lex_state = 194, .external_lex_state = 13}, + [2104] = {.lex_state = 194, .external_lex_state = 13}, + [2105] = {.lex_state = 130, .external_lex_state = 19}, + [2106] = {.lex_state = 130, .external_lex_state = 19}, + [2107] = {.lex_state = 130, .external_lex_state = 19}, + [2108] = {.lex_state = 130, .external_lex_state = 19}, + [2109] = {.lex_state = 219, .external_lex_state = 16}, + [2110] = {.lex_state = 130, .external_lex_state = 19}, + [2111] = {.lex_state = 219, .external_lex_state = 16}, + [2112] = {.lex_state = 130, .external_lex_state = 19}, + [2113] = {.lex_state = 219, .external_lex_state = 16}, + [2114] = {.lex_state = 130, .external_lex_state = 19}, + [2115] = {.lex_state = 130, .external_lex_state = 19}, + [2116] = {.lex_state = 132, .external_lex_state = 4}, + [2117] = {.lex_state = 248, .external_lex_state = 13}, + [2118] = {.lex_state = 248, .external_lex_state = 13}, + [2119] = {.lex_state = 198, .external_lex_state = 22}, + [2120] = {.lex_state = 198, .external_lex_state = 22}, + [2121] = {.lex_state = 198, .external_lex_state = 16}, + [2122] = {.lex_state = 219, .external_lex_state = 16}, + [2123] = {.lex_state = 248, .external_lex_state = 13}, + [2124] = {.lex_state = 217, .external_lex_state = 16}, + [2125] = {.lex_state = 248, .external_lex_state = 13}, + [2126] = {.lex_state = 221}, + [2127] = {.lex_state = 219, .external_lex_state = 16}, + [2128] = {.lex_state = 248, .external_lex_state = 13}, + [2129] = {.lex_state = 221}, + [2130] = {.lex_state = 219, .external_lex_state = 16}, + [2131] = {.lex_state = 221}, + [2132] = {.lex_state = 219, .external_lex_state = 16}, + [2133] = {.lex_state = 219, .external_lex_state = 16}, + [2134] = {.lex_state = 248, .external_lex_state = 13}, + [2135] = {.lex_state = 219, .external_lex_state = 16}, + [2136] = {.lex_state = 248, .external_lex_state = 13}, + [2137] = {.lex_state = 203, .external_lex_state = 2}, + [2138] = {.lex_state = 56, .external_lex_state = 2}, + [2139] = {.lex_state = 248, .external_lex_state = 13}, + [2140] = {.lex_state = 203, .external_lex_state = 2}, + [2141] = {.lex_state = 132, .external_lex_state = 4}, + [2142] = {.lex_state = 234, .external_lex_state = 10}, + [2143] = {.lex_state = 234, .external_lex_state = 10}, + [2144] = {.lex_state = 234, .external_lex_state = 10}, + [2145] = {.lex_state = 234, .external_lex_state = 10}, + [2146] = {.lex_state = 219, .external_lex_state = 16}, + [2147] = {.lex_state = 234, .external_lex_state = 10}, + [2148] = {.lex_state = 219, .external_lex_state = 16}, + [2149] = {.lex_state = 234, .external_lex_state = 10}, + [2150] = {.lex_state = 219, .external_lex_state = 16}, + [2151] = {.lex_state = 234, .external_lex_state = 10}, + [2152] = {.lex_state = 234, .external_lex_state = 10}, + [2153] = {.lex_state = 246}, + [2154] = {.lex_state = 117, .external_lex_state = 9}, + [2155] = {.lex_state = 73}, + [2156] = {.lex_state = 124}, + [2157] = {.lex_state = 134, .external_lex_state = 12}, + [2158] = {.lex_state = 147}, + [2159] = {.lex_state = 62}, + [2160] = {.lex_state = 83, .external_lex_state = 14}, + [2161] = {.lex_state = 91}, + [2162] = {.lex_state = 98}, + [2163] = {.lex_state = 83, .external_lex_state = 14}, + [2164] = {.lex_state = 107, .external_lex_state = 6}, + [2165] = {.lex_state = 56, .external_lex_state = 2}, + [2166] = {.lex_state = 56, .external_lex_state = 2}, + [2167] = {.lex_state = 56, .external_lex_state = 2}, + [2168] = {.lex_state = 83, .external_lex_state = 3}, + [2169] = {.lex_state = 62}, + [2170] = {.lex_state = 83, .external_lex_state = 3}, + [2171] = {.lex_state = 83, .external_lex_state = 10}, + [2172] = {.lex_state = 91}, + [2173] = {.lex_state = 98}, + [2174] = {.lex_state = 83, .external_lex_state = 10}, + [2175] = {.lex_state = 107, .external_lex_state = 6}, + [2176] = {.lex_state = 56, .external_lex_state = 2}, + [2177] = {.lex_state = 56, .external_lex_state = 2}, + [2178] = {.lex_state = 56, .external_lex_state = 2}, + [2179] = {.lex_state = 83, .external_lex_state = 4}, + [2180] = {.lex_state = 83, .external_lex_state = 4}, + [2181] = {.lex_state = 88, .external_lex_state = 5}, + [2182] = {.lex_state = 77}, + [2183] = {.lex_state = 56, .external_lex_state = 2}, + [2184] = {.lex_state = 162, .external_lex_state = 2}, + [2185] = {.lex_state = 56, .external_lex_state = 2}, + [2186] = {.lex_state = 56}, + [2187] = {.lex_state = 168}, + [2188] = {.lex_state = 73}, + [2189] = {.lex_state = 73}, + [2190] = {.lex_state = 88, .external_lex_state = 5}, + [2191] = {.lex_state = 88, .external_lex_state = 5}, + [2192] = {.lex_state = 253, .external_lex_state = 7}, + [2193] = {.lex_state = 88, .external_lex_state = 7}, + [2194] = {.lex_state = 73}, + [2195] = {.lex_state = 132, .external_lex_state = 4}, + [2196] = {.lex_state = 113, .external_lex_state = 8}, + [2197] = {.lex_state = 162, .external_lex_state = 2}, + [2198] = {.lex_state = 88, .external_lex_state = 7}, + [2199] = {.lex_state = 162, .external_lex_state = 2}, + [2200] = {.lex_state = 162, .external_lex_state = 2}, + [2201] = {.lex_state = 73}, + [2202] = {.lex_state = 132, .external_lex_state = 4}, + [2203] = {.lex_state = 113, .external_lex_state = 8}, + [2204] = {.lex_state = 162, .external_lex_state = 2}, + [2205] = {.lex_state = 162, .external_lex_state = 2}, + [2206] = {.lex_state = 250}, + [2207] = {.lex_state = 162, .external_lex_state = 2}, + [2208] = {.lex_state = 250}, + [2209] = {.lex_state = 132, .external_lex_state = 4}, + [2210] = {.lex_state = 132, .external_lex_state = 4}, + [2211] = {.lex_state = 122, .external_lex_state = 10}, + [2212] = {.lex_state = 122, .external_lex_state = 10}, + [2213] = {.lex_state = 122, .external_lex_state = 10}, + [2214] = {.lex_state = 132, .external_lex_state = 10}, + [2215] = {.lex_state = 205, .external_lex_state = 23}, + [2216] = {.lex_state = 134, .external_lex_state = 11}, + [2217] = {.lex_state = 134, .external_lex_state = 11}, + [2218] = {.lex_state = 134, .external_lex_state = 11}, + [2219] = {.lex_state = 228, .external_lex_state = 23}, + [2220] = {.lex_state = 228, .external_lex_state = 23}, + [2221] = {.lex_state = 198, .external_lex_state = 22}, + [2222] = {.lex_state = 198, .external_lex_state = 22}, + [2223] = {.lex_state = 198, .external_lex_state = 16}, + [2224] = {.lex_state = 219, .external_lex_state = 16}, + [2225] = {.lex_state = 228, .external_lex_state = 23}, + [2226] = {.lex_state = 217, .external_lex_state = 16}, + [2227] = {.lex_state = 228, .external_lex_state = 23}, + [2228] = {.lex_state = 221}, + [2229] = {.lex_state = 219, .external_lex_state = 16}, + [2230] = {.lex_state = 228, .external_lex_state = 23}, + [2231] = {.lex_state = 221}, + [2232] = {.lex_state = 219, .external_lex_state = 16}, + [2233] = {.lex_state = 221}, + [2234] = {.lex_state = 219, .external_lex_state = 16}, + [2235] = {.lex_state = 219, .external_lex_state = 16}, + [2236] = {.lex_state = 228, .external_lex_state = 23}, + [2237] = {.lex_state = 219, .external_lex_state = 16}, + [2238] = {.lex_state = 228, .external_lex_state = 23}, + [2239] = {.lex_state = 203, .external_lex_state = 2}, + [2240] = {.lex_state = 56, .external_lex_state = 2}, + [2241] = {.lex_state = 228, .external_lex_state = 23}, + [2242] = {.lex_state = 203, .external_lex_state = 2}, + [2243] = {.lex_state = 214, .external_lex_state = 13}, + [2244] = {.lex_state = 214, .external_lex_state = 13}, + [2245] = {.lex_state = 214, .external_lex_state = 13}, + [2246] = {.lex_state = 126, .external_lex_state = 14}, + [2247] = {.lex_state = 126, .external_lex_state = 14}, + [2248] = {.lex_state = 126, .external_lex_state = 14}, + [2249] = {.lex_state = 126, .external_lex_state = 10}, + [2250] = {.lex_state = 126, .external_lex_state = 10}, + [2251] = {.lex_state = 126, .external_lex_state = 10}, + [2252] = {.lex_state = 73, .external_lex_state = 15}, + [2253] = {.lex_state = 73, .external_lex_state = 15}, + [2254] = {.lex_state = 73, .external_lex_state = 15}, + [2255] = {.lex_state = 91, .external_lex_state = 13}, + [2256] = {.lex_state = 91, .external_lex_state = 13}, + [2257] = {.lex_state = 91, .external_lex_state = 13}, + [2258] = {.lex_state = 198, .external_lex_state = 22}, + [2259] = {.lex_state = 198, .external_lex_state = 22}, + [2260] = {.lex_state = 198, .external_lex_state = 22}, + [2261] = {.lex_state = 219, .external_lex_state = 16}, + [2262] = {.lex_state = 198, .external_lex_state = 22}, + [2263] = {.lex_state = 198, .external_lex_state = 22}, + [2264] = {.lex_state = 198, .external_lex_state = 16}, + [2265] = {.lex_state = 219, .external_lex_state = 16}, + [2266] = {.lex_state = 198, .external_lex_state = 22}, + [2267] = {.lex_state = 219, .external_lex_state = 16}, + [2268] = {.lex_state = 198, .external_lex_state = 22}, + [2269] = {.lex_state = 219, .external_lex_state = 16}, + [2270] = {.lex_state = 198, .external_lex_state = 22}, + [2271] = {.lex_state = 219, .external_lex_state = 16}, + [2272] = {.lex_state = 198, .external_lex_state = 22}, + [2273] = {.lex_state = 219, .external_lex_state = 16}, + [2274] = {.lex_state = 198, .external_lex_state = 22}, + [2275] = {.lex_state = 198, .external_lex_state = 22}, + [2276] = {.lex_state = 219, .external_lex_state = 22}, + [2277] = {.lex_state = 219, .external_lex_state = 22}, + [2278] = {.lex_state = 219, .external_lex_state = 22}, + [2279] = {.lex_state = 219, .external_lex_state = 22}, + [2280] = {.lex_state = 219, .external_lex_state = 16}, + [2281] = {.lex_state = 219, .external_lex_state = 22}, + [2282] = {.lex_state = 219, .external_lex_state = 16}, + [2283] = {.lex_state = 219, .external_lex_state = 22}, + [2284] = {.lex_state = 219, .external_lex_state = 16}, + [2285] = {.lex_state = 219, .external_lex_state = 22}, + [2286] = {.lex_state = 219, .external_lex_state = 22}, + [2287] = {.lex_state = 132, .external_lex_state = 10}, + [2288] = {.lex_state = 226, .external_lex_state = 23}, + [2289] = {.lex_state = 165, .external_lex_state = 17}, + [2290] = {.lex_state = 165, .external_lex_state = 17}, + [2291] = {.lex_state = 165, .external_lex_state = 17}, + [2292] = {.lex_state = 165, .external_lex_state = 17}, + [2293] = {.lex_state = 219, .external_lex_state = 16}, + [2294] = {.lex_state = 165, .external_lex_state = 17}, + [2295] = {.lex_state = 219, .external_lex_state = 16}, + [2296] = {.lex_state = 165, .external_lex_state = 17}, + [2297] = {.lex_state = 219, .external_lex_state = 16}, + [2298] = {.lex_state = 165, .external_lex_state = 17}, + [2299] = {.lex_state = 165, .external_lex_state = 17}, + [2300] = {.lex_state = 194, .external_lex_state = 13}, + [2301] = {.lex_state = 194, .external_lex_state = 13}, + [2302] = {.lex_state = 194, .external_lex_state = 13}, + [2303] = {.lex_state = 194, .external_lex_state = 13}, + [2304] = {.lex_state = 219, .external_lex_state = 16}, + [2305] = {.lex_state = 194, .external_lex_state = 13}, + [2306] = {.lex_state = 219, .external_lex_state = 16}, + [2307] = {.lex_state = 194, .external_lex_state = 13}, + [2308] = {.lex_state = 219, .external_lex_state = 16}, + [2309] = {.lex_state = 194, .external_lex_state = 13}, + [2310] = {.lex_state = 194, .external_lex_state = 13}, + [2311] = {.lex_state = 130, .external_lex_state = 19}, + [2312] = {.lex_state = 130, .external_lex_state = 19}, + [2313] = {.lex_state = 130, .external_lex_state = 19}, + [2314] = {.lex_state = 248, .external_lex_state = 13}, + [2315] = {.lex_state = 248, .external_lex_state = 13}, + [2316] = {.lex_state = 248, .external_lex_state = 13}, + [2317] = {.lex_state = 219, .external_lex_state = 16}, + [2318] = {.lex_state = 198, .external_lex_state = 22}, + [2319] = {.lex_state = 198, .external_lex_state = 22}, + [2320] = {.lex_state = 198, .external_lex_state = 16}, + [2321] = {.lex_state = 219, .external_lex_state = 16}, + [2322] = {.lex_state = 248, .external_lex_state = 13}, + [2323] = {.lex_state = 219, .external_lex_state = 16}, + [2324] = {.lex_state = 248, .external_lex_state = 13}, + [2325] = {.lex_state = 219, .external_lex_state = 16}, + [2326] = {.lex_state = 248, .external_lex_state = 13}, + [2327] = {.lex_state = 219, .external_lex_state = 16}, + [2328] = {.lex_state = 248, .external_lex_state = 13}, + [2329] = {.lex_state = 219, .external_lex_state = 16}, + [2330] = {.lex_state = 248, .external_lex_state = 13}, + [2331] = {.lex_state = 248, .external_lex_state = 13}, + [2332] = {.lex_state = 234, .external_lex_state = 10}, + [2333] = {.lex_state = 234, .external_lex_state = 10}, + [2334] = {.lex_state = 234, .external_lex_state = 10}, + [2335] = {.lex_state = 132, .external_lex_state = 4}, + [2336] = {.lex_state = 113, .external_lex_state = 19}, + [2337] = {.lex_state = 113, .external_lex_state = 19}, + [2338] = {.lex_state = 253, .external_lex_state = 7}, + [2339] = {.lex_state = 77}, + [2340] = {.lex_state = 255, .external_lex_state = 21}, + [2341] = {.lex_state = 253, .external_lex_state = 21}, + [2342] = {.lex_state = 117, .external_lex_state = 9}, + [2343] = {.lex_state = 73}, + [2344] = {.lex_state = 83, .external_lex_state = 14}, + [2345] = {.lex_state = 83, .external_lex_state = 14}, + [2346] = {.lex_state = 151}, + [2347] = {.lex_state = 91}, + [2348] = {.lex_state = 83, .external_lex_state = 14}, + [2349] = {.lex_state = 83, .external_lex_state = 14}, + [2350] = {.lex_state = 83, .external_lex_state = 14}, + [2351] = {.lex_state = 62}, + [2352] = {.lex_state = 157, .external_lex_state = 16}, + [2353] = {.lex_state = 160, .external_lex_state = 6}, + [2354] = {.lex_state = 157, .external_lex_state = 16}, + [2355] = {.lex_state = 157, .external_lex_state = 16}, + [2356] = {.lex_state = 126, .external_lex_state = 4}, + [2357] = {.lex_state = 130, .external_lex_state = 8}, + [2358] = {.lex_state = 56, .external_lex_state = 2}, + [2359] = {.lex_state = 83, .external_lex_state = 4}, + [2360] = {.lex_state = 113, .external_lex_state = 8}, + [2361] = {.lex_state = 56, .external_lex_state = 2}, + [2362] = {.lex_state = 126, .external_lex_state = 4}, + [2363] = {.lex_state = 130, .external_lex_state = 8}, + [2364] = {.lex_state = 56, .external_lex_state = 2}, + [2365] = {.lex_state = 83, .external_lex_state = 3}, + [2366] = {.lex_state = 73}, + [2367] = {.lex_state = 83, .external_lex_state = 10}, + [2368] = {.lex_state = 83, .external_lex_state = 10}, + [2369] = {.lex_state = 151}, + [2370] = {.lex_state = 91}, + [2371] = {.lex_state = 83, .external_lex_state = 10}, + [2372] = {.lex_state = 83, .external_lex_state = 10}, + [2373] = {.lex_state = 83, .external_lex_state = 10}, + [2374] = {.lex_state = 62}, + [2375] = {.lex_state = 157, .external_lex_state = 16}, + [2376] = {.lex_state = 160, .external_lex_state = 6}, + [2377] = {.lex_state = 157, .external_lex_state = 16}, + [2378] = {.lex_state = 157, .external_lex_state = 16}, + [2379] = {.lex_state = 126, .external_lex_state = 4}, + [2380] = {.lex_state = 130, .external_lex_state = 8}, + [2381] = {.lex_state = 56, .external_lex_state = 2}, + [2382] = {.lex_state = 83, .external_lex_state = 4}, + [2383] = {.lex_state = 113, .external_lex_state = 8}, + [2384] = {.lex_state = 56, .external_lex_state = 2}, + [2385] = {.lex_state = 126, .external_lex_state = 4}, + [2386] = {.lex_state = 130, .external_lex_state = 8}, + [2387] = {.lex_state = 56, .external_lex_state = 2}, + [2388] = {.lex_state = 83, .external_lex_state = 4}, + [2389] = {.lex_state = 88, .external_lex_state = 5}, + [2390] = {.lex_state = 124}, + [2391] = {.lex_state = 132, .external_lex_state = 4}, + [2392] = {.lex_state = 113, .external_lex_state = 8}, + [2393] = {.lex_state = 73}, + [2394] = {.lex_state = 88, .external_lex_state = 5}, + [2395] = {.lex_state = 88, .external_lex_state = 5}, + [2396] = {.lex_state = 253, .external_lex_state = 5}, + [2397] = {.lex_state = 253, .external_lex_state = 5}, + [2398] = {.lex_state = 253, .external_lex_state = 5}, + [2399] = {.lex_state = 253, .external_lex_state = 5}, + [2400] = {.lex_state = 253, .external_lex_state = 7}, + [2401] = {.lex_state = 253, .external_lex_state = 7}, + [2402] = {.lex_state = 88, .external_lex_state = 7}, + [2403] = {.lex_state = 162, .external_lex_state = 2}, + [2404] = {.lex_state = 88, .external_lex_state = 7}, + [2405] = {.lex_state = 73}, + [2406] = {.lex_state = 132, .external_lex_state = 4}, + [2407] = {.lex_state = 113, .external_lex_state = 8}, + [2408] = {.lex_state = 162, .external_lex_state = 2}, + [2409] = {.lex_state = 73}, + [2410] = {.lex_state = 132, .external_lex_state = 4}, + [2411] = {.lex_state = 113, .external_lex_state = 8}, + [2412] = {.lex_state = 73}, + [2413] = {.lex_state = 83, .external_lex_state = 4}, + [2414] = {.lex_state = 113, .external_lex_state = 8}, + [2415] = {.lex_state = 162, .external_lex_state = 2}, + [2416] = {.lex_state = 162, .external_lex_state = 2}, + [2417] = {.lex_state = 73}, + [2418] = {.lex_state = 83, .external_lex_state = 4}, + [2419] = {.lex_state = 113, .external_lex_state = 8}, + [2420] = {.lex_state = 162, .external_lex_state = 2}, + [2421] = {.lex_state = 162, .external_lex_state = 2}, + [2422] = {.lex_state = 228, .external_lex_state = 23}, + [2423] = {.lex_state = 228, .external_lex_state = 23}, + [2424] = {.lex_state = 228, .external_lex_state = 23}, + [2425] = {.lex_state = 219, .external_lex_state = 16}, + [2426] = {.lex_state = 198, .external_lex_state = 22}, + [2427] = {.lex_state = 198, .external_lex_state = 22}, + [2428] = {.lex_state = 198, .external_lex_state = 16}, + [2429] = {.lex_state = 219, .external_lex_state = 16}, + [2430] = {.lex_state = 228, .external_lex_state = 23}, + [2431] = {.lex_state = 219, .external_lex_state = 16}, + [2432] = {.lex_state = 228, .external_lex_state = 23}, + [2433] = {.lex_state = 219, .external_lex_state = 16}, + [2434] = {.lex_state = 228, .external_lex_state = 23}, + [2435] = {.lex_state = 219, .external_lex_state = 16}, + [2436] = {.lex_state = 228, .external_lex_state = 23}, + [2437] = {.lex_state = 219, .external_lex_state = 16}, + [2438] = {.lex_state = 228, .external_lex_state = 23}, + [2439] = {.lex_state = 228, .external_lex_state = 23}, + [2440] = {.lex_state = 198, .external_lex_state = 22}, + [2441] = {.lex_state = 198, .external_lex_state = 22}, + [2442] = {.lex_state = 198, .external_lex_state = 22}, + [2443] = {.lex_state = 198, .external_lex_state = 22}, + [2444] = {.lex_state = 219, .external_lex_state = 16}, + [2445] = {.lex_state = 198, .external_lex_state = 22}, + [2446] = {.lex_state = 219, .external_lex_state = 16}, + [2447] = {.lex_state = 198, .external_lex_state = 22}, + [2448] = {.lex_state = 219, .external_lex_state = 16}, + [2449] = {.lex_state = 198, .external_lex_state = 22}, + [2450] = {.lex_state = 198, .external_lex_state = 22}, + [2451] = {.lex_state = 219, .external_lex_state = 22}, + [2452] = {.lex_state = 219, .external_lex_state = 22}, + [2453] = {.lex_state = 219, .external_lex_state = 22}, + [2454] = {.lex_state = 165, .external_lex_state = 17}, + [2455] = {.lex_state = 165, .external_lex_state = 17}, + [2456] = {.lex_state = 165, .external_lex_state = 17}, + [2457] = {.lex_state = 194, .external_lex_state = 13}, + [2458] = {.lex_state = 194, .external_lex_state = 13}, + [2459] = {.lex_state = 194, .external_lex_state = 13}, + [2460] = {.lex_state = 248, .external_lex_state = 13}, + [2461] = {.lex_state = 248, .external_lex_state = 13}, + [2462] = {.lex_state = 248, .external_lex_state = 13}, + [2463] = {.lex_state = 248, .external_lex_state = 13}, + [2464] = {.lex_state = 219, .external_lex_state = 16}, + [2465] = {.lex_state = 248, .external_lex_state = 13}, + [2466] = {.lex_state = 219, .external_lex_state = 16}, + [2467] = {.lex_state = 248, .external_lex_state = 13}, + [2468] = {.lex_state = 219, .external_lex_state = 16}, + [2469] = {.lex_state = 248, .external_lex_state = 13}, + [2470] = {.lex_state = 248, .external_lex_state = 13}, + [2471] = {.lex_state = 113, .external_lex_state = 19}, + [2472] = {.lex_state = 253, .external_lex_state = 7}, + [2473] = {.lex_state = 124}, + [2474] = {.lex_state = 56}, + [2475] = {.lex_state = 73}, + [2476] = {.lex_state = 56}, + [2477] = {.lex_state = 73}, + [2478] = {.lex_state = 73}, + [2479] = {.lex_state = 253, .external_lex_state = 21}, + [2480] = {.lex_state = 83, .external_lex_state = 3}, + [2481] = {.lex_state = 194}, + [2482] = {.lex_state = 83, .external_lex_state = 14}, + [2483] = {.lex_state = 83, .external_lex_state = 14}, + [2484] = {.lex_state = 83, .external_lex_state = 14}, + [2485] = {.lex_state = 83, .external_lex_state = 14}, + [2486] = {.lex_state = 83, .external_lex_state = 14}, + [2487] = {.lex_state = 151}, + [2488] = {.lex_state = 217, .external_lex_state = 16}, + [2489] = {.lex_state = 83, .external_lex_state = 14}, + [2490] = {.lex_state = 221}, + [2491] = {.lex_state = 219, .external_lex_state = 16}, + [2492] = {.lex_state = 62}, + [2493] = {.lex_state = 157, .external_lex_state = 16}, + [2494] = {.lex_state = 157, .external_lex_state = 16}, + [2495] = {.lex_state = 157, .external_lex_state = 16}, + [2496] = {.lex_state = 83, .external_lex_state = 14}, + [2497] = {.lex_state = 221}, + [2498] = {.lex_state = 219, .external_lex_state = 16}, + [2499] = {.lex_state = 83, .external_lex_state = 14}, + [2500] = {.lex_state = 221}, + [2501] = {.lex_state = 219, .external_lex_state = 16}, + [2502] = {.lex_state = 83, .external_lex_state = 14}, + [2503] = {.lex_state = 203, .external_lex_state = 2}, + [2504] = {.lex_state = 126, .external_lex_state = 4}, + [2505] = {.lex_state = 130, .external_lex_state = 8}, + [2506] = {.lex_state = 56, .external_lex_state = 2}, + [2507] = {.lex_state = 83, .external_lex_state = 4}, + [2508] = {.lex_state = 113, .external_lex_state = 8}, + [2509] = {.lex_state = 83, .external_lex_state = 14}, + [2510] = {.lex_state = 203, .external_lex_state = 2}, + [2511] = {.lex_state = 126, .external_lex_state = 4}, + [2512] = {.lex_state = 130, .external_lex_state = 8}, + [2513] = {.lex_state = 83, .external_lex_state = 10}, + [2514] = {.lex_state = 83, .external_lex_state = 10}, + [2515] = {.lex_state = 83, .external_lex_state = 10}, + [2516] = {.lex_state = 151}, + [2517] = {.lex_state = 217, .external_lex_state = 16}, + [2518] = {.lex_state = 83, .external_lex_state = 10}, + [2519] = {.lex_state = 221}, + [2520] = {.lex_state = 219, .external_lex_state = 16}, + [2521] = {.lex_state = 62}, + [2522] = {.lex_state = 157, .external_lex_state = 16}, + [2523] = {.lex_state = 157, .external_lex_state = 16}, + [2524] = {.lex_state = 157, .external_lex_state = 16}, + [2525] = {.lex_state = 83, .external_lex_state = 10}, + [2526] = {.lex_state = 221}, + [2527] = {.lex_state = 219, .external_lex_state = 16}, + [2528] = {.lex_state = 83, .external_lex_state = 10}, + [2529] = {.lex_state = 221}, + [2530] = {.lex_state = 219, .external_lex_state = 16}, + [2531] = {.lex_state = 83, .external_lex_state = 10}, + [2532] = {.lex_state = 203, .external_lex_state = 2}, + [2533] = {.lex_state = 126, .external_lex_state = 4}, + [2534] = {.lex_state = 130, .external_lex_state = 8}, + [2535] = {.lex_state = 56, .external_lex_state = 2}, + [2536] = {.lex_state = 83, .external_lex_state = 4}, + [2537] = {.lex_state = 113, .external_lex_state = 8}, + [2538] = {.lex_state = 83, .external_lex_state = 10}, + [2539] = {.lex_state = 203, .external_lex_state = 2}, + [2540] = {.lex_state = 126, .external_lex_state = 4}, + [2541] = {.lex_state = 130, .external_lex_state = 8}, + [2542] = {.lex_state = 255, .external_lex_state = 21}, + [2543] = {.lex_state = 253, .external_lex_state = 5}, + [2544] = {.lex_state = 253, .external_lex_state = 5}, + [2545] = {.lex_state = 253, .external_lex_state = 5}, + [2546] = {.lex_state = 253, .external_lex_state = 7}, + [2547] = {.lex_state = 162, .external_lex_state = 2}, + [2548] = {.lex_state = 162, .external_lex_state = 2}, + [2549] = {.lex_state = 162, .external_lex_state = 2}, + [2550] = {.lex_state = 73}, + [2551] = {.lex_state = 83, .external_lex_state = 4}, + [2552] = {.lex_state = 113, .external_lex_state = 8}, + [2553] = {.lex_state = 162, .external_lex_state = 2}, + [2554] = {.lex_state = 162, .external_lex_state = 2}, + [2555] = {.lex_state = 162, .external_lex_state = 2}, + [2556] = {.lex_state = 73}, + [2557] = {.lex_state = 83, .external_lex_state = 4}, + [2558] = {.lex_state = 113, .external_lex_state = 8}, + [2559] = {.lex_state = 162, .external_lex_state = 2}, + [2560] = {.lex_state = 228, .external_lex_state = 23}, + [2561] = {.lex_state = 228, .external_lex_state = 23}, + [2562] = {.lex_state = 228, .external_lex_state = 23}, + [2563] = {.lex_state = 228, .external_lex_state = 23}, + [2564] = {.lex_state = 219, .external_lex_state = 16}, + [2565] = {.lex_state = 228, .external_lex_state = 23}, + [2566] = {.lex_state = 219, .external_lex_state = 16}, + [2567] = {.lex_state = 228, .external_lex_state = 23}, + [2568] = {.lex_state = 219, .external_lex_state = 16}, + [2569] = {.lex_state = 228, .external_lex_state = 23}, + [2570] = {.lex_state = 228, .external_lex_state = 23}, + [2571] = {.lex_state = 198, .external_lex_state = 22}, + [2572] = {.lex_state = 198, .external_lex_state = 22}, + [2573] = {.lex_state = 198, .external_lex_state = 22}, + [2574] = {.lex_state = 248, .external_lex_state = 13}, + [2575] = {.lex_state = 248, .external_lex_state = 13}, + [2576] = {.lex_state = 248, .external_lex_state = 13}, + [2577] = {.lex_state = 113, .external_lex_state = 19}, + [2578] = {.lex_state = 255, .external_lex_state = 21}, + [2579] = {.lex_state = 73}, + [2580] = {.lex_state = 132, .external_lex_state = 10}, + [2581] = {.lex_state = 132, .external_lex_state = 10}, + [2582] = {.lex_state = 73}, + [2583] = {.lex_state = 253, .external_lex_state = 23}, + [2584] = {.lex_state = 253, .external_lex_state = 23}, + [2585] = {.lex_state = 253, .external_lex_state = 23}, + [2586] = {.lex_state = 253, .external_lex_state = 23}, + [2587] = {.lex_state = 253, .external_lex_state = 21}, + [2588] = {.lex_state = 83, .external_lex_state = 3}, + [2589] = {.lex_state = 194}, + [2590] = {.lex_state = 83, .external_lex_state = 14}, + [2591] = {.lex_state = 83, .external_lex_state = 14}, + [2592] = {.lex_state = 198, .external_lex_state = 22}, + [2593] = {.lex_state = 198, .external_lex_state = 22}, + [2594] = {.lex_state = 198, .external_lex_state = 16}, + [2595] = {.lex_state = 219, .external_lex_state = 16}, + [2596] = {.lex_state = 83, .external_lex_state = 14}, + [2597] = {.lex_state = 217, .external_lex_state = 16}, + [2598] = {.lex_state = 83, .external_lex_state = 14}, + [2599] = {.lex_state = 221}, + [2600] = {.lex_state = 219, .external_lex_state = 16}, + [2601] = {.lex_state = 83, .external_lex_state = 14}, + [2602] = {.lex_state = 221}, + [2603] = {.lex_state = 219, .external_lex_state = 16}, + [2604] = {.lex_state = 221}, + [2605] = {.lex_state = 219, .external_lex_state = 16}, + [2606] = {.lex_state = 219, .external_lex_state = 16}, + [2607] = {.lex_state = 83, .external_lex_state = 14}, + [2608] = {.lex_state = 219, .external_lex_state = 16}, + [2609] = {.lex_state = 83, .external_lex_state = 14}, + [2610] = {.lex_state = 203, .external_lex_state = 2}, + [2611] = {.lex_state = 56, .external_lex_state = 2}, + [2612] = {.lex_state = 83, .external_lex_state = 14}, + [2613] = {.lex_state = 203, .external_lex_state = 2}, + [2614] = {.lex_state = 83, .external_lex_state = 10}, + [2615] = {.lex_state = 83, .external_lex_state = 10}, + [2616] = {.lex_state = 198, .external_lex_state = 22}, + [2617] = {.lex_state = 198, .external_lex_state = 22}, + [2618] = {.lex_state = 198, .external_lex_state = 16}, + [2619] = {.lex_state = 219, .external_lex_state = 16}, + [2620] = {.lex_state = 83, .external_lex_state = 10}, + [2621] = {.lex_state = 217, .external_lex_state = 16}, + [2622] = {.lex_state = 83, .external_lex_state = 10}, + [2623] = {.lex_state = 221}, + [2624] = {.lex_state = 219, .external_lex_state = 16}, + [2625] = {.lex_state = 83, .external_lex_state = 10}, + [2626] = {.lex_state = 221}, + [2627] = {.lex_state = 219, .external_lex_state = 16}, + [2628] = {.lex_state = 221}, + [2629] = {.lex_state = 219, .external_lex_state = 16}, + [2630] = {.lex_state = 219, .external_lex_state = 16}, + [2631] = {.lex_state = 83, .external_lex_state = 10}, + [2632] = {.lex_state = 219, .external_lex_state = 16}, + [2633] = {.lex_state = 83, .external_lex_state = 10}, + [2634] = {.lex_state = 203, .external_lex_state = 2}, + [2635] = {.lex_state = 56, .external_lex_state = 2}, + [2636] = {.lex_state = 83, .external_lex_state = 10}, + [2637] = {.lex_state = 203, .external_lex_state = 2}, + [2638] = {.lex_state = 253, .external_lex_state = 5}, + [2639] = {.lex_state = 162, .external_lex_state = 2}, + [2640] = {.lex_state = 73}, + [2641] = {.lex_state = 83, .external_lex_state = 4}, + [2642] = {.lex_state = 113, .external_lex_state = 8}, + [2643] = {.lex_state = 162, .external_lex_state = 2}, + [2644] = {.lex_state = 73}, + [2645] = {.lex_state = 83, .external_lex_state = 4}, + [2646] = {.lex_state = 113, .external_lex_state = 8}, + [2647] = {.lex_state = 228, .external_lex_state = 23}, + [2648] = {.lex_state = 228, .external_lex_state = 23}, + [2649] = {.lex_state = 228, .external_lex_state = 23}, + [2650] = {.lex_state = 132, .external_lex_state = 10}, + [2651] = {.lex_state = 132, .external_lex_state = 10}, + [2652] = {.lex_state = 132, .external_lex_state = 10}, + [2653] = {.lex_state = 253, .external_lex_state = 23}, + [2654] = {.lex_state = 253, .external_lex_state = 23}, + [2655] = {.lex_state = 253, .external_lex_state = 23}, + [2656] = {.lex_state = 83, .external_lex_state = 3}, + [2657] = {.lex_state = 83, .external_lex_state = 14}, + [2658] = {.lex_state = 83, .external_lex_state = 14}, [2659] = {.lex_state = 83, .external_lex_state = 14}, - [2660] = {.lex_state = 83, .external_lex_state = 14}, - [2661] = {.lex_state = 83, .external_lex_state = 14}, - [2662] = {.lex_state = 62}, - [2663] = {.lex_state = 157, .external_lex_state = 16}, - [2664] = {.lex_state = 160, .external_lex_state = 6}, - [2665] = {.lex_state = 157, .external_lex_state = 16}, - [2666] = {.lex_state = 157, .external_lex_state = 16}, - [2667] = {.lex_state = 162}, - [2668] = {.lex_state = 169, .external_lex_state = 2}, - [2669] = {.lex_state = 162}, - [2670] = {.lex_state = 177, .external_lex_state = 2}, - [2671] = {.lex_state = 162}, - [2672] = {.lex_state = 169, .external_lex_state = 2}, - [2673] = {.lex_state = 83, .external_lex_state = 3}, - [2674] = {.lex_state = 73}, + [2660] = {.lex_state = 219, .external_lex_state = 16}, + [2661] = {.lex_state = 198, .external_lex_state = 22}, + [2662] = {.lex_state = 198, .external_lex_state = 22}, + [2663] = {.lex_state = 198, .external_lex_state = 16}, + [2664] = {.lex_state = 219, .external_lex_state = 16}, + [2665] = {.lex_state = 83, .external_lex_state = 14}, + [2666] = {.lex_state = 219, .external_lex_state = 16}, + [2667] = {.lex_state = 83, .external_lex_state = 14}, + [2668] = {.lex_state = 219, .external_lex_state = 16}, + [2669] = {.lex_state = 83, .external_lex_state = 14}, + [2670] = {.lex_state = 219, .external_lex_state = 16}, + [2671] = {.lex_state = 83, .external_lex_state = 14}, + [2672] = {.lex_state = 219, .external_lex_state = 16}, + [2673] = {.lex_state = 83, .external_lex_state = 14}, + [2674] = {.lex_state = 83, .external_lex_state = 14}, [2675] = {.lex_state = 83, .external_lex_state = 10}, [2676] = {.lex_state = 83, .external_lex_state = 10}, - [2677] = {.lex_state = 151}, - [2678] = {.lex_state = 91}, - [2679] = {.lex_state = 83, .external_lex_state = 10}, - [2680] = {.lex_state = 83, .external_lex_state = 10}, - [2681] = {.lex_state = 83, .external_lex_state = 10}, - [2682] = {.lex_state = 62}, - [2683] = {.lex_state = 157, .external_lex_state = 16}, - [2684] = {.lex_state = 160, .external_lex_state = 6}, - [2685] = {.lex_state = 157, .external_lex_state = 16}, - [2686] = {.lex_state = 157, .external_lex_state = 16}, - [2687] = {.lex_state = 162}, - [2688] = {.lex_state = 169, .external_lex_state = 2}, - [2689] = {.lex_state = 162}, - [2690] = {.lex_state = 177, .external_lex_state = 2}, - [2691] = {.lex_state = 162}, - [2692] = {.lex_state = 169, .external_lex_state = 2}, - [2693] = {.lex_state = 83, .external_lex_state = 4}, - [2694] = {.lex_state = 88, .external_lex_state = 5}, - [2695] = {.lex_state = 124}, - [2696] = {.lex_state = 132, .external_lex_state = 4}, - [2697] = {.lex_state = 113, .external_lex_state = 8}, - [2698] = {.lex_state = 73}, - [2699] = {.lex_state = 88, .external_lex_state = 5}, - [2700] = {.lex_state = 88, .external_lex_state = 5}, - [2701] = {.lex_state = 278, .external_lex_state = 5}, - [2702] = {.lex_state = 278, .external_lex_state = 5}, - [2703] = {.lex_state = 278, .external_lex_state = 5}, - [2704] = {.lex_state = 278, .external_lex_state = 5}, - [2705] = {.lex_state = 278, .external_lex_state = 7}, - [2706] = {.lex_state = 278, .external_lex_state = 7}, - [2707] = {.lex_state = 88, .external_lex_state = 7}, - [2708] = {.lex_state = 179, .external_lex_state = 2}, - [2709] = {.lex_state = 88, .external_lex_state = 7}, - [2710] = {.lex_state = 73}, - [2711] = {.lex_state = 132, .external_lex_state = 4}, - [2712] = {.lex_state = 113, .external_lex_state = 8}, - [2713] = {.lex_state = 179, .external_lex_state = 2}, - [2714] = {.lex_state = 73}, - [2715] = {.lex_state = 132, .external_lex_state = 4}, - [2716] = {.lex_state = 113, .external_lex_state = 8}, - [2717] = {.lex_state = 73}, - [2718] = {.lex_state = 83, .external_lex_state = 4}, - [2719] = {.lex_state = 113, .external_lex_state = 8}, - [2720] = {.lex_state = 179, .external_lex_state = 2}, - [2721] = {.lex_state = 179, .external_lex_state = 2}, - [2722] = {.lex_state = 73}, - [2723] = {.lex_state = 83, .external_lex_state = 4}, - [2724] = {.lex_state = 113, .external_lex_state = 8}, - [2725] = {.lex_state = 179, .external_lex_state = 2}, - [2726] = {.lex_state = 179, .external_lex_state = 2}, - [2727] = {.lex_state = 245, .external_lex_state = 27}, - [2728] = {.lex_state = 245, .external_lex_state = 27}, - [2729] = {.lex_state = 245, .external_lex_state = 27}, - [2730] = {.lex_state = 234, .external_lex_state = 16}, - [2731] = {.lex_state = 213, .external_lex_state = 24}, - [2732] = {.lex_state = 213, .external_lex_state = 24}, - [2733] = {.lex_state = 213, .external_lex_state = 16}, - [2734] = {.lex_state = 234, .external_lex_state = 16}, - [2735] = {.lex_state = 245, .external_lex_state = 27}, - [2736] = {.lex_state = 234, .external_lex_state = 16}, - [2737] = {.lex_state = 245, .external_lex_state = 27}, - [2738] = {.lex_state = 234, .external_lex_state = 16}, - [2739] = {.lex_state = 245, .external_lex_state = 27}, - [2740] = {.lex_state = 234, .external_lex_state = 16}, - [2741] = {.lex_state = 245, .external_lex_state = 27}, - [2742] = {.lex_state = 234, .external_lex_state = 16}, - [2743] = {.lex_state = 213, .external_lex_state = 24}, - [2744] = {.lex_state = 213, .external_lex_state = 24}, - [2745] = {.lex_state = 213, .external_lex_state = 24}, - [2746] = {.lex_state = 213, .external_lex_state = 24}, - [2747] = {.lex_state = 234, .external_lex_state = 16}, - [2748] = {.lex_state = 213, .external_lex_state = 24}, - [2749] = {.lex_state = 234, .external_lex_state = 16}, - [2750] = {.lex_state = 213, .external_lex_state = 24}, - [2751] = {.lex_state = 234, .external_lex_state = 16}, - [2752] = {.lex_state = 213, .external_lex_state = 24}, - [2753] = {.lex_state = 213, .external_lex_state = 24}, - [2754] = {.lex_state = 234, .external_lex_state = 24}, - [2755] = {.lex_state = 234, .external_lex_state = 24}, - [2756] = {.lex_state = 234, .external_lex_state = 24}, - [2757] = {.lex_state = 162}, - [2758] = {.lex_state = 162}, - [2759] = {.lex_state = 269}, - [2760] = {.lex_state = 162}, - [2761] = {.lex_state = 162}, - [2762] = {.lex_state = 265, .external_lex_state = 28}, - [2763] = {.lex_state = 265, .external_lex_state = 28}, - [2764] = {.lex_state = 213, .external_lex_state = 24}, - [2765] = {.lex_state = 213, .external_lex_state = 24}, - [2766] = {.lex_state = 213, .external_lex_state = 16}, - [2767] = {.lex_state = 234, .external_lex_state = 16}, - [2768] = {.lex_state = 265, .external_lex_state = 28}, - [2769] = {.lex_state = 232, .external_lex_state = 16}, - [2770] = {.lex_state = 265, .external_lex_state = 28}, - [2771] = {.lex_state = 236}, - [2772] = {.lex_state = 234, .external_lex_state = 16}, - [2773] = {.lex_state = 265, .external_lex_state = 28}, - [2774] = {.lex_state = 236}, - [2775] = {.lex_state = 234, .external_lex_state = 16}, - [2776] = {.lex_state = 236}, - [2777] = {.lex_state = 234, .external_lex_state = 16}, - [2778] = {.lex_state = 234, .external_lex_state = 16}, - [2779] = {.lex_state = 265, .external_lex_state = 28}, - [2780] = {.lex_state = 234, .external_lex_state = 16}, - [2781] = {.lex_state = 162, .external_lex_state = 25}, - [2782] = {.lex_state = 162, .external_lex_state = 25}, - [2783] = {.lex_state = 162, .external_lex_state = 25}, - [2784] = {.lex_state = 162, .external_lex_state = 13}, - [2785] = {.lex_state = 162, .external_lex_state = 13}, - [2786] = {.lex_state = 162, .external_lex_state = 13}, - [2787] = {.lex_state = 182, .external_lex_state = 19}, - [2788] = {.lex_state = 182, .external_lex_state = 19}, - [2789] = {.lex_state = 182, .external_lex_state = 19}, - [2790] = {.lex_state = 247, .external_lex_state = 13}, - [2791] = {.lex_state = 247, .external_lex_state = 13}, - [2792] = {.lex_state = 247, .external_lex_state = 13}, - [2793] = {.lex_state = 271, .external_lex_state = 13}, - [2794] = {.lex_state = 271, .external_lex_state = 13}, - [2795] = {.lex_state = 271, .external_lex_state = 13}, - [2796] = {.lex_state = 271, .external_lex_state = 13}, - [2797] = {.lex_state = 234, .external_lex_state = 16}, - [2798] = {.lex_state = 271, .external_lex_state = 13}, - [2799] = {.lex_state = 234, .external_lex_state = 16}, - [2800] = {.lex_state = 271, .external_lex_state = 13}, - [2801] = {.lex_state = 234, .external_lex_state = 16}, - [2802] = {.lex_state = 271, .external_lex_state = 13}, - [2803] = {.lex_state = 271, .external_lex_state = 13}, - [2804] = {.lex_state = 113, .external_lex_state = 21}, - [2805] = {.lex_state = 278, .external_lex_state = 7}, - [2806] = {.lex_state = 124}, - [2807] = {.lex_state = 56}, - [2808] = {.lex_state = 73}, - [2809] = {.lex_state = 56}, - [2810] = {.lex_state = 73}, - [2811] = {.lex_state = 73}, - [2812] = {.lex_state = 278, .external_lex_state = 23}, - [2813] = {.lex_state = 83, .external_lex_state = 3}, - [2814] = {.lex_state = 169}, - [2815] = {.lex_state = 83, .external_lex_state = 14}, - [2816] = {.lex_state = 83, .external_lex_state = 14}, - [2817] = {.lex_state = 83, .external_lex_state = 14}, - [2818] = {.lex_state = 83, .external_lex_state = 14}, - [2819] = {.lex_state = 83, .external_lex_state = 14}, - [2820] = {.lex_state = 151}, - [2821] = {.lex_state = 232, .external_lex_state = 16}, - [2822] = {.lex_state = 83, .external_lex_state = 14}, - [2823] = {.lex_state = 236}, - [2824] = {.lex_state = 234, .external_lex_state = 16}, - [2825] = {.lex_state = 62}, - [2826] = {.lex_state = 157, .external_lex_state = 16}, - [2827] = {.lex_state = 157, .external_lex_state = 16}, - [2828] = {.lex_state = 157, .external_lex_state = 16}, - [2829] = {.lex_state = 83, .external_lex_state = 14}, - [2830] = {.lex_state = 236}, - [2831] = {.lex_state = 234, .external_lex_state = 16}, - [2832] = {.lex_state = 83, .external_lex_state = 14}, - [2833] = {.lex_state = 236}, - [2834] = {.lex_state = 234, .external_lex_state = 16}, - [2835] = {.lex_state = 83, .external_lex_state = 14}, - [2836] = {.lex_state = 83, .external_lex_state = 14}, - [2837] = {.lex_state = 83, .external_lex_state = 10}, - [2838] = {.lex_state = 83, .external_lex_state = 10}, - [2839] = {.lex_state = 83, .external_lex_state = 10}, - [2840] = {.lex_state = 151}, - [2841] = {.lex_state = 232, .external_lex_state = 16}, - [2842] = {.lex_state = 83, .external_lex_state = 10}, - [2843] = {.lex_state = 236}, - [2844] = {.lex_state = 234, .external_lex_state = 16}, - [2845] = {.lex_state = 62}, - [2846] = {.lex_state = 157, .external_lex_state = 16}, - [2847] = {.lex_state = 157, .external_lex_state = 16}, - [2848] = {.lex_state = 157, .external_lex_state = 16}, - [2849] = {.lex_state = 83, .external_lex_state = 10}, - [2850] = {.lex_state = 236}, - [2851] = {.lex_state = 234, .external_lex_state = 16}, - [2852] = {.lex_state = 83, .external_lex_state = 10}, - [2853] = {.lex_state = 236}, - [2854] = {.lex_state = 234, .external_lex_state = 16}, - [2855] = {.lex_state = 83, .external_lex_state = 10}, - [2856] = {.lex_state = 83, .external_lex_state = 10}, - [2857] = {.lex_state = 280, .external_lex_state = 23}, - [2858] = {.lex_state = 278, .external_lex_state = 5}, - [2859] = {.lex_state = 278, .external_lex_state = 5}, - [2860] = {.lex_state = 278, .external_lex_state = 5}, - [2861] = {.lex_state = 278, .external_lex_state = 7}, - [2862] = {.lex_state = 179, .external_lex_state = 2}, - [2863] = {.lex_state = 179, .external_lex_state = 2}, - [2864] = {.lex_state = 179, .external_lex_state = 2}, - [2865] = {.lex_state = 73}, - [2866] = {.lex_state = 83, .external_lex_state = 4}, - [2867] = {.lex_state = 113, .external_lex_state = 8}, - [2868] = {.lex_state = 179, .external_lex_state = 2}, - [2869] = {.lex_state = 179, .external_lex_state = 2}, - [2870] = {.lex_state = 179, .external_lex_state = 2}, - [2871] = {.lex_state = 73}, - [2872] = {.lex_state = 83, .external_lex_state = 4}, - [2873] = {.lex_state = 113, .external_lex_state = 8}, - [2874] = {.lex_state = 179, .external_lex_state = 2}, - [2875] = {.lex_state = 245, .external_lex_state = 27}, - [2876] = {.lex_state = 245, .external_lex_state = 27}, - [2877] = {.lex_state = 245, .external_lex_state = 27}, - [2878] = {.lex_state = 245, .external_lex_state = 27}, - [2879] = {.lex_state = 234, .external_lex_state = 16}, - [2880] = {.lex_state = 245, .external_lex_state = 27}, - [2881] = {.lex_state = 234, .external_lex_state = 16}, - [2882] = {.lex_state = 245, .external_lex_state = 27}, - [2883] = {.lex_state = 234, .external_lex_state = 16}, - [2884] = {.lex_state = 245, .external_lex_state = 27}, - [2885] = {.lex_state = 245, .external_lex_state = 27}, - [2886] = {.lex_state = 213, .external_lex_state = 24}, - [2887] = {.lex_state = 213, .external_lex_state = 24}, - [2888] = {.lex_state = 213, .external_lex_state = 24}, - [2889] = {.lex_state = 162}, - [2890] = {.lex_state = 265, .external_lex_state = 28}, - [2891] = {.lex_state = 265, .external_lex_state = 28}, - [2892] = {.lex_state = 265, .external_lex_state = 28}, - [2893] = {.lex_state = 234, .external_lex_state = 16}, - [2894] = {.lex_state = 213, .external_lex_state = 24}, - [2895] = {.lex_state = 213, .external_lex_state = 24}, - [2896] = {.lex_state = 213, .external_lex_state = 16}, - [2897] = {.lex_state = 234, .external_lex_state = 16}, - [2898] = {.lex_state = 265, .external_lex_state = 28}, - [2899] = {.lex_state = 234, .external_lex_state = 16}, - [2900] = {.lex_state = 265, .external_lex_state = 28}, - [2901] = {.lex_state = 234, .external_lex_state = 16}, - [2902] = {.lex_state = 265, .external_lex_state = 28}, - [2903] = {.lex_state = 234, .external_lex_state = 16}, - [2904] = {.lex_state = 265, .external_lex_state = 28}, - [2905] = {.lex_state = 234, .external_lex_state = 16}, - [2906] = {.lex_state = 271, .external_lex_state = 13}, - [2907] = {.lex_state = 271, .external_lex_state = 13}, - [2908] = {.lex_state = 271, .external_lex_state = 13}, - [2909] = {.lex_state = 113, .external_lex_state = 21}, - [2910] = {.lex_state = 280, .external_lex_state = 23}, - [2911] = {.lex_state = 73}, - [2912] = {.lex_state = 132, .external_lex_state = 10}, - [2913] = {.lex_state = 132, .external_lex_state = 10}, - [2914] = {.lex_state = 73}, - [2915] = {.lex_state = 278, .external_lex_state = 27}, - [2916] = {.lex_state = 278, .external_lex_state = 27}, - [2917] = {.lex_state = 278, .external_lex_state = 27}, - [2918] = {.lex_state = 278, .external_lex_state = 27}, - [2919] = {.lex_state = 278, .external_lex_state = 23}, - [2920] = {.lex_state = 83, .external_lex_state = 3}, - [2921] = {.lex_state = 169}, - [2922] = {.lex_state = 83, .external_lex_state = 14}, - [2923] = {.lex_state = 83, .external_lex_state = 14}, - [2924] = {.lex_state = 213, .external_lex_state = 24}, - [2925] = {.lex_state = 213, .external_lex_state = 24}, - [2926] = {.lex_state = 213, .external_lex_state = 16}, - [2927] = {.lex_state = 234, .external_lex_state = 16}, - [2928] = {.lex_state = 83, .external_lex_state = 14}, - [2929] = {.lex_state = 232, .external_lex_state = 16}, - [2930] = {.lex_state = 83, .external_lex_state = 14}, - [2931] = {.lex_state = 236}, - [2932] = {.lex_state = 234, .external_lex_state = 16}, - [2933] = {.lex_state = 83, .external_lex_state = 14}, - [2934] = {.lex_state = 236}, - [2935] = {.lex_state = 234, .external_lex_state = 16}, - [2936] = {.lex_state = 236}, - [2937] = {.lex_state = 234, .external_lex_state = 16}, - [2938] = {.lex_state = 234, .external_lex_state = 16}, - [2939] = {.lex_state = 83, .external_lex_state = 14}, - [2940] = {.lex_state = 234, .external_lex_state = 16}, - [2941] = {.lex_state = 83, .external_lex_state = 10}, - [2942] = {.lex_state = 83, .external_lex_state = 10}, - [2943] = {.lex_state = 213, .external_lex_state = 24}, - [2944] = {.lex_state = 213, .external_lex_state = 24}, - [2945] = {.lex_state = 213, .external_lex_state = 16}, - [2946] = {.lex_state = 234, .external_lex_state = 16}, - [2947] = {.lex_state = 83, .external_lex_state = 10}, - [2948] = {.lex_state = 232, .external_lex_state = 16}, - [2949] = {.lex_state = 83, .external_lex_state = 10}, - [2950] = {.lex_state = 236}, - [2951] = {.lex_state = 234, .external_lex_state = 16}, - [2952] = {.lex_state = 83, .external_lex_state = 10}, - [2953] = {.lex_state = 236}, - [2954] = {.lex_state = 234, .external_lex_state = 16}, - [2955] = {.lex_state = 236}, - [2956] = {.lex_state = 234, .external_lex_state = 16}, - [2957] = {.lex_state = 234, .external_lex_state = 16}, - [2958] = {.lex_state = 83, .external_lex_state = 10}, - [2959] = {.lex_state = 234, .external_lex_state = 16}, - [2960] = {.lex_state = 278, .external_lex_state = 5}, - [2961] = {.lex_state = 179, .external_lex_state = 2}, - [2962] = {.lex_state = 73}, - [2963] = {.lex_state = 83, .external_lex_state = 4}, - [2964] = {.lex_state = 113, .external_lex_state = 8}, - [2965] = {.lex_state = 179, .external_lex_state = 2}, - [2966] = {.lex_state = 73}, - [2967] = {.lex_state = 83, .external_lex_state = 4}, - [2968] = {.lex_state = 113, .external_lex_state = 8}, - [2969] = {.lex_state = 245, .external_lex_state = 27}, - [2970] = {.lex_state = 245, .external_lex_state = 27}, - [2971] = {.lex_state = 245, .external_lex_state = 27}, - [2972] = {.lex_state = 265, .external_lex_state = 28}, - [2973] = {.lex_state = 265, .external_lex_state = 28}, - [2974] = {.lex_state = 265, .external_lex_state = 28}, - [2975] = {.lex_state = 265, .external_lex_state = 28}, - [2976] = {.lex_state = 234, .external_lex_state = 16}, - [2977] = {.lex_state = 265, .external_lex_state = 28}, - [2978] = {.lex_state = 234, .external_lex_state = 16}, - [2979] = {.lex_state = 265, .external_lex_state = 28}, - [2980] = {.lex_state = 234, .external_lex_state = 16}, - [2981] = {.lex_state = 265, .external_lex_state = 28}, - [2982] = {.lex_state = 265, .external_lex_state = 28}, - [2983] = {.lex_state = 132, .external_lex_state = 10}, - [2984] = {.lex_state = 132, .external_lex_state = 10}, - [2985] = {.lex_state = 132, .external_lex_state = 10}, - [2986] = {.lex_state = 278, .external_lex_state = 27}, - [2987] = {.lex_state = 278, .external_lex_state = 27}, - [2988] = {.lex_state = 278, .external_lex_state = 27}, - [2989] = {.lex_state = 83, .external_lex_state = 3}, - [2990] = {.lex_state = 83, .external_lex_state = 14}, - [2991] = {.lex_state = 83, .external_lex_state = 14}, - [2992] = {.lex_state = 83, .external_lex_state = 14}, - [2993] = {.lex_state = 234, .external_lex_state = 16}, - [2994] = {.lex_state = 213, .external_lex_state = 24}, - [2995] = {.lex_state = 213, .external_lex_state = 24}, - [2996] = {.lex_state = 213, .external_lex_state = 16}, - [2997] = {.lex_state = 234, .external_lex_state = 16}, - [2998] = {.lex_state = 83, .external_lex_state = 14}, - [2999] = {.lex_state = 234, .external_lex_state = 16}, - [3000] = {.lex_state = 83, .external_lex_state = 14}, - [3001] = {.lex_state = 234, .external_lex_state = 16}, - [3002] = {.lex_state = 83, .external_lex_state = 14}, - [3003] = {.lex_state = 234, .external_lex_state = 16}, - [3004] = {.lex_state = 83, .external_lex_state = 14}, - [3005] = {.lex_state = 234, .external_lex_state = 16}, - [3006] = {.lex_state = 83, .external_lex_state = 10}, - [3007] = {.lex_state = 83, .external_lex_state = 10}, - [3008] = {.lex_state = 83, .external_lex_state = 10}, - [3009] = {.lex_state = 234, .external_lex_state = 16}, - [3010] = {.lex_state = 213, .external_lex_state = 24}, - [3011] = {.lex_state = 213, .external_lex_state = 24}, - [3012] = {.lex_state = 213, .external_lex_state = 16}, - [3013] = {.lex_state = 234, .external_lex_state = 16}, - [3014] = {.lex_state = 83, .external_lex_state = 10}, - [3015] = {.lex_state = 234, .external_lex_state = 16}, - [3016] = {.lex_state = 83, .external_lex_state = 10}, - [3017] = {.lex_state = 234, .external_lex_state = 16}, - [3018] = {.lex_state = 83, .external_lex_state = 10}, - [3019] = {.lex_state = 234, .external_lex_state = 16}, - [3020] = {.lex_state = 83, .external_lex_state = 10}, - [3021] = {.lex_state = 234, .external_lex_state = 16}, - [3022] = {.lex_state = 179, .external_lex_state = 2}, - [3023] = {.lex_state = 179, .external_lex_state = 2}, - [3024] = {.lex_state = 265, .external_lex_state = 28}, - [3025] = {.lex_state = 265, .external_lex_state = 28}, - [3026] = {.lex_state = 265, .external_lex_state = 28}, - [3027] = {.lex_state = 132, .external_lex_state = 10}, - [3028] = {.lex_state = 278, .external_lex_state = 27}, - [3029] = {.lex_state = 83, .external_lex_state = 14}, - [3030] = {.lex_state = 83, .external_lex_state = 14}, - [3031] = {.lex_state = 83, .external_lex_state = 14}, - [3032] = {.lex_state = 83, .external_lex_state = 14}, - [3033] = {.lex_state = 234, .external_lex_state = 16}, - [3034] = {.lex_state = 83, .external_lex_state = 14}, - [3035] = {.lex_state = 234, .external_lex_state = 16}, - [3036] = {.lex_state = 83, .external_lex_state = 14}, - [3037] = {.lex_state = 234, .external_lex_state = 16}, - [3038] = {.lex_state = 83, .external_lex_state = 14}, - [3039] = {.lex_state = 83, .external_lex_state = 14}, - [3040] = {.lex_state = 83, .external_lex_state = 10}, - [3041] = {.lex_state = 83, .external_lex_state = 10}, - [3042] = {.lex_state = 83, .external_lex_state = 10}, - [3043] = {.lex_state = 83, .external_lex_state = 10}, - [3044] = {.lex_state = 234, .external_lex_state = 16}, - [3045] = {.lex_state = 83, .external_lex_state = 10}, - [3046] = {.lex_state = 234, .external_lex_state = 16}, - [3047] = {.lex_state = 83, .external_lex_state = 10}, - [3048] = {.lex_state = 234, .external_lex_state = 16}, - [3049] = {.lex_state = 83, .external_lex_state = 10}, - [3050] = {.lex_state = 83, .external_lex_state = 10}, - [3051] = {.lex_state = 83, .external_lex_state = 14}, - [3052] = {.lex_state = 83, .external_lex_state = 14}, - [3053] = {.lex_state = 83, .external_lex_state = 14}, - [3054] = {.lex_state = 83, .external_lex_state = 10}, - [3055] = {.lex_state = 83, .external_lex_state = 10}, - [3056] = {.lex_state = 83, .external_lex_state = 10}, + [2677] = {.lex_state = 83, .external_lex_state = 10}, + [2678] = {.lex_state = 219, .external_lex_state = 16}, + [2679] = {.lex_state = 198, .external_lex_state = 22}, + [2680] = {.lex_state = 198, .external_lex_state = 22}, + [2681] = {.lex_state = 198, .external_lex_state = 16}, + [2682] = {.lex_state = 219, .external_lex_state = 16}, + [2683] = {.lex_state = 83, .external_lex_state = 10}, + [2684] = {.lex_state = 219, .external_lex_state = 16}, + [2685] = {.lex_state = 83, .external_lex_state = 10}, + [2686] = {.lex_state = 219, .external_lex_state = 16}, + [2687] = {.lex_state = 83, .external_lex_state = 10}, + [2688] = {.lex_state = 219, .external_lex_state = 16}, + [2689] = {.lex_state = 83, .external_lex_state = 10}, + [2690] = {.lex_state = 219, .external_lex_state = 16}, + [2691] = {.lex_state = 83, .external_lex_state = 10}, + [2692] = {.lex_state = 83, .external_lex_state = 10}, + [2693] = {.lex_state = 162, .external_lex_state = 2}, + [2694] = {.lex_state = 162, .external_lex_state = 2}, + [2695] = {.lex_state = 132, .external_lex_state = 10}, + [2696] = {.lex_state = 253, .external_lex_state = 23}, + [2697] = {.lex_state = 83, .external_lex_state = 14}, + [2698] = {.lex_state = 83, .external_lex_state = 14}, + [2699] = {.lex_state = 83, .external_lex_state = 14}, + [2700] = {.lex_state = 83, .external_lex_state = 14}, + [2701] = {.lex_state = 219, .external_lex_state = 16}, + [2702] = {.lex_state = 83, .external_lex_state = 14}, + [2703] = {.lex_state = 219, .external_lex_state = 16}, + [2704] = {.lex_state = 83, .external_lex_state = 14}, + [2705] = {.lex_state = 219, .external_lex_state = 16}, + [2706] = {.lex_state = 83, .external_lex_state = 14}, + [2707] = {.lex_state = 83, .external_lex_state = 14}, + [2708] = {.lex_state = 83, .external_lex_state = 10}, + [2709] = {.lex_state = 83, .external_lex_state = 10}, + [2710] = {.lex_state = 83, .external_lex_state = 10}, + [2711] = {.lex_state = 83, .external_lex_state = 10}, + [2712] = {.lex_state = 219, .external_lex_state = 16}, + [2713] = {.lex_state = 83, .external_lex_state = 10}, + [2714] = {.lex_state = 219, .external_lex_state = 16}, + [2715] = {.lex_state = 83, .external_lex_state = 10}, + [2716] = {.lex_state = 219, .external_lex_state = 16}, + [2717] = {.lex_state = 83, .external_lex_state = 10}, + [2718] = {.lex_state = 83, .external_lex_state = 10}, + [2719] = {.lex_state = 83, .external_lex_state = 14}, + [2720] = {.lex_state = 83, .external_lex_state = 14}, + [2721] = {.lex_state = 83, .external_lex_state = 14}, + [2722] = {.lex_state = 83, .external_lex_state = 10}, + [2723] = {.lex_state = 83, .external_lex_state = 10}, + [2724] = {.lex_state = 83, .external_lex_state = 10}, }; enum { @@ -8681,7 +7825,7 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = anon_sym_LF, }; -static bool ts_external_scanner_states[29][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token__simple_heredoc_body] = true, @@ -8758,58 +7902,36 @@ static bool ts_external_scanner_states[29][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = true, }, [17] = { - [ts_external_token__simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - }, - [18] = { - [ts_external_token__simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, - [ts_external_token_file_descriptor] = true, - }, - [19] = { [ts_external_token__heredoc_body_middle] = true, [ts_external_token__heredoc_body_end] = true, }, - [20] = { + [18] = { [ts_external_token_heredoc_start] = true, }, - [21] = { + [19] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, - [22] = { + [20] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_RBRACE] = true, }, + [21] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LF] = true, + }, + [22] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACE] = true, + }, [23] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_LF] = true, - }, - [24] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACE] = true, - }, - [25] = { - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - }, - [26] = { - [ts_external_token_file_descriptor] = true, - }, - [27] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_LF] = true, }, - [28] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - }, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { @@ -8898,7 +8020,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1] = { [sym_program] = STATE(25), - [sym__terminated_statement] = STATE(31), + [sym__terminated_statement] = STATE(32), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -8916,16 +8038,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [ts_builtin_sym_end] = ACTIONS(9), @@ -8986,33 +8108,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(67), }, [5] = { - [sym__terminated_statement] = STATE(38), - [sym_for_statement] = STATE(39), - [sym_c_style_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), + [sym__terminated_statement] = STATE(39), + [sym_for_statement] = STATE(40), + [sym_c_style_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_negated_command] = STATE(40), + [sym_test_command] = STATE(40), + [sym_declaration_command] = STATE(40), + [sym_unset_command] = STATE(40), + [sym_command] = STATE(40), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), + [sym_variable_assignment] = STATE(41), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -9051,33 +8173,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [6] = { - [sym__terminated_statement] = STATE(41), - [sym_for_statement] = STATE(39), - [sym_c_style_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), + [sym__terminated_statement] = STATE(42), + [sym_for_statement] = STATE(40), + [sym_c_style_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_negated_command] = STATE(40), + [sym_test_command] = STATE(40), + [sym_declaration_command] = STATE(40), + [sym_unset_command] = STATE(40), + [sym_command] = STATE(40), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), + [sym_variable_assignment] = STATE(41), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -9116,13 +8238,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [7] = { - [sym_concatenation] = STATE(50), - [sym_string] = STATE(45), - [sym_simple_expansion] = STATE(45), - [sym_string_expansion] = STATE(45), - [sym_expansion] = STATE(45), - [sym_command_substitution] = STATE(45), - [sym_process_substitution] = STATE(45), + [sym_concatenation] = STATE(51), + [sym_string] = STATE(46), + [sym_simple_expansion] = STATE(46), + [sym_string_expansion] = STATE(46), + [sym_expansion] = STATE(46), + [sym_command_substitution] = STATE(46), + [sym_process_substitution] = STATE(46), [sym__special_characters] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_DOLLAR] = ACTIONS(73), @@ -9140,34 +8262,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(85), }, [9] = { - [sym__terminated_statement] = STATE(67), - [sym_for_statement] = STATE(63), - [sym_c_style_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_case_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_subshell] = STATE(63), - [sym_pipeline] = STATE(63), - [sym_list] = STATE(63), - [sym_negated_command] = STATE(63), - [sym_test_command] = STATE(63), - [sym_declaration_command] = STATE(63), - [sym_unset_command] = STATE(63), - [sym_command] = STATE(63), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(68), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(67), - [aux_sym_command_repeat1] = STATE(68), + [sym__terminated_statement] = STATE(68), + [sym_for_statement] = STATE(64), + [sym_c_style_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_subshell] = STATE(64), + [sym_pipeline] = STATE(64), + [sym_list] = STATE(64), + [sym_negated_command] = STATE(64), + [sym_test_command] = STATE(64), + [sym_declaration_command] = STATE(64), + [sym_unset_command] = STATE(64), + [sym_command] = STATE(64), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(66), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(68), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), @@ -9206,21 +8328,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [10] = { - [sym_subshell] = STATE(70), - [sym_test_command] = STATE(70), - [sym_command] = STATE(70), + [sym_subshell] = STATE(71), + [sym_test_command] = STATE(71), + [sym_command] = STATE(71), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(32), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), @@ -9246,17 +8368,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(43), }, [11] = { - [sym__expression] = STATE(82), - [sym_binary_expression] = STATE(82), - [sym_unary_expression] = STATE(82), - [sym_parenthesized_expression] = STATE(82), - [sym_concatenation] = STATE(82), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), + [sym__expression] = STATE(83), + [sym_binary_expression] = STATE(83), + [sym_unary_expression] = STATE(83), + [sym_parenthesized_expression] = STATE(83), + [sym_concatenation] = STATE(83), + [sym_string] = STATE(78), + [sym_simple_expansion] = STATE(78), + [sym_string_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [sym_process_substitution] = STATE(78), [anon_sym_LPAREN] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(113), [sym__special_characters] = ACTIONS(115), @@ -9273,17 +8395,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(133), }, [12] = { - [sym__expression] = STATE(93), - [sym_binary_expression] = STATE(93), - [sym_unary_expression] = STATE(93), - [sym_parenthesized_expression] = STATE(93), - [sym_concatenation] = STATE(93), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), + [sym__expression] = STATE(94), + [sym_binary_expression] = STATE(94), + [sym_unary_expression] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_concatenation] = STATE(94), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), [anon_sym_LPAREN] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(137), [sym__special_characters] = ACTIONS(139), @@ -9300,15 +8422,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(157), }, [13] = { - [sym_variable_assignment] = STATE(104), + [sym_variable_assignment] = STATE(106), [sym_subscript] = STATE(105), - [sym_concatenation] = STATE(104), - [sym_string] = STATE(98), - [sym_simple_expansion] = STATE(98), - [sym_string_expansion] = STATE(98), - [sym_expansion] = STATE(98), - [sym_command_substitution] = STATE(98), - [sym_process_substitution] = STATE(98), + [sym_concatenation] = STATE(106), + [sym_string] = STATE(99), + [sym_simple_expansion] = STATE(99), + [sym_string_expansion] = STATE(99), + [sym_expansion] = STATE(99), + [sym_command_substitution] = STATE(99), + [sym_process_substitution] = STATE(99), [aux_sym_declaration_command_repeat1] = STATE(106), [sym_variable_name] = ACTIONS(159), [anon_sym_PIPE] = ACTIONS(161), @@ -9501,1373 +8623,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(261), }, [21] = { - [sym_for_statement] = STATE(164), - [sym_c_style_for_statement] = STATE(164), - [sym_while_statement] = STATE(164), - [sym_if_statement] = STATE(164), - [sym_case_statement] = STATE(164), - [sym_function_definition] = STATE(164), - [sym_subshell] = STATE(164), - [sym_pipeline] = STATE(164), - [sym_list] = STATE(164), - [sym_negated_command] = STATE(164), - [sym_test_command] = STATE(164), - [sym_declaration_command] = STATE(164), - [sym_unset_command] = STATE(164), - [sym_command] = STATE(164), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(166), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [22] = { - [sym_for_statement] = STATE(181), - [sym_c_style_for_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_function_definition] = STATE(181), - [sym_subshell] = STATE(181), - [sym_pipeline] = STATE(181), - [sym_list] = STATE(181), - [sym_negated_command] = STATE(181), - [sym_test_command] = STATE(181), - [sym_declaration_command] = STATE(181), - [sym_unset_command] = STATE(181), - [sym_command] = STATE(181), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(183), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [23] = { - [sym_for_statement] = STATE(186), - [sym_c_style_for_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_function_definition] = STATE(186), - [sym_subshell] = STATE(186), - [sym_pipeline] = STATE(186), - [sym_list] = STATE(186), - [sym_negated_command] = STATE(186), - [sym_test_command] = STATE(186), - [sym_declaration_command] = STATE(186), - [sym_unset_command] = STATE(186), - [sym_command] = STATE(186), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(187), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [24] = { - [aux_sym_concatenation_repeat1] = STATE(127), - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_SEMI_SEMI] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_PIPE_AMP] = ACTIONS(251), - [anon_sym_AMP_AMP] = ACTIONS(251), - [anon_sym_PIPE_PIPE] = ACTIONS(251), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(251), - [anon_sym_LT_AMP] = ACTIONS(251), - [anon_sym_GT_AMP] = ACTIONS(251), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(251), - [anon_sym_LT_LT_LT] = ACTIONS(251), - [sym__special_characters] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_BQUOTE] = ACTIONS(251), - [anon_sym_LT_LPAREN] = ACTIONS(251), - [anon_sym_GT_LPAREN] = ACTIONS(251), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(251), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(249), - [anon_sym_AMP] = ACTIONS(251), - }, - [25] = { - [ts_builtin_sym_end] = ACTIONS(329), - [sym_comment] = ACTIONS(53), - }, - [26] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(333), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [27] = { - [sym_file_redirect] = STATE(203), - [sym_heredoc_redirect] = STATE(203), - [sym_heredoc_body] = STATE(201), - [sym_herestring_redirect] = STATE(203), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(200), - [sym_simple_expansion] = STATE(200), - [sym_string_expansion] = STATE(200), - [sym_expansion] = STATE(200), - [sym_command_substitution] = STATE(200), - [sym_process_substitution] = STATE(200), - [aux_sym_while_statement_repeat1] = STATE(203), - [aux_sym_command_repeat2] = STATE(204), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_EQ_TILDE] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(349), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [sym__special_characters] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym_LF] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(345), - }, - [28] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(333), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [29] = { - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [sym_comment] = ACTIONS(53), - }, - [30] = { - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [anon_sym_esac] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(251), - [anon_sym_SEMI_SEMI] = ACTIONS(251), - [anon_sym_PIPE_AMP] = ACTIONS(251), - [anon_sym_AMP_AMP] = ACTIONS(251), - [anon_sym_PIPE_PIPE] = ACTIONS(251), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(251), - [anon_sym_LT_AMP] = ACTIONS(251), - [anon_sym_GT_AMP] = ACTIONS(251), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(251), - [anon_sym_LT_LT_LT] = ACTIONS(251), - [sym__special_characters] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_BQUOTE] = ACTIONS(251), - [anon_sym_LT_LPAREN] = ACTIONS(251), - [anon_sym_GT_LPAREN] = ACTIONS(251), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(251), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(249), - [anon_sym_AMP] = ACTIONS(251), - }, - [31] = { - [sym__terminated_statement] = STATE(205), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(205), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [ts_builtin_sym_end] = ACTIONS(375), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [32] = { - [sym_command_name] = STATE(206), - [sym_variable_assignment] = STATE(207), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(207), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(207), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(377), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(43), - }, - [33] = { - [sym_concatenation] = STATE(210), - [sym_string] = STATE(209), - [sym_simple_expansion] = STATE(209), - [sym_string_expansion] = STATE(209), - [sym_expansion] = STATE(209), - [sym_command_substitution] = STATE(209), - [sym_process_substitution] = STATE(209), - [sym__special_characters] = ACTIONS(379), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym_raw_string] = ACTIONS(381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), - [anon_sym_BQUOTE] = ACTIONS(219), - [anon_sym_LT_LPAREN] = ACTIONS(221), - [anon_sym_GT_LPAREN] = ACTIONS(221), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(381), - }, - [34] = { - [sym_concatenation] = STATE(213), - [sym_string] = STATE(212), - [sym_simple_expansion] = STATE(212), - [sym_string_expansion] = STATE(212), - [sym_expansion] = STATE(212), - [sym_command_substitution] = STATE(212), - [sym_process_substitution] = STATE(212), - [sym__special_characters] = ACTIONS(383), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(385), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(385), - }, - [35] = { - [sym_concatenation] = STATE(214), - [sym_string] = STATE(219), - [sym_array] = STATE(214), - [sym_simple_expansion] = STATE(219), - [sym_string_expansion] = STATE(219), - [sym_expansion] = STATE(219), - [sym_command_substitution] = STATE(219), - [sym_process_substitution] = STATE(219), - [sym__empty_value] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(389), - [sym__special_characters] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(397), - }, - [36] = { - [sym__expression] = STATE(235), - [sym_binary_expression] = STATE(235), - [sym_unary_expression] = STATE(235), - [sym_parenthesized_expression] = STATE(235), - [sym_concatenation] = STATE(235), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [anon_sym_SEMI_SEMI] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [sym__special_characters] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_LT_LPAREN] = ACTIONS(427), - [anon_sym_GT_LPAREN] = ACTIONS(427), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(419), - [sym_test_operator] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_LF] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(407), - }, - [37] = { - [anon_sym_in] = ACTIONS(431), - [anon_sym_SEMI_SEMI] = ACTIONS(433), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(433), - [anon_sym_LF] = ACTIONS(435), - [anon_sym_AMP] = ACTIONS(433), - }, - [38] = { - [sym_do_group] = STATE(239), - [anon_sym_do] = ACTIONS(437), - [sym_comment] = ACTIONS(53), - }, - [39] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(439), - }, - [40] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(439), - }, - [41] = { - [anon_sym_then] = ACTIONS(443), - [sym_comment] = ACTIONS(53), - }, - [42] = { - [aux_sym_concatenation_repeat1] = STATE(245), - [sym__concat] = ACTIONS(445), - [anon_sym_in] = ACTIONS(447), - [anon_sym_SEMI_SEMI] = ACTIONS(449), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(449), - [anon_sym_LF] = ACTIONS(451), - [anon_sym_AMP] = ACTIONS(449), - }, - [43] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(248), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(455), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [44] = { - [sym_string] = STATE(250), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_AT] = ACTIONS(457), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_0] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - }, - [45] = { - [aux_sym_concatenation_repeat1] = STATE(245), - [sym__concat] = ACTIONS(445), - [anon_sym_in] = ACTIONS(465), - [anon_sym_SEMI_SEMI] = ACTIONS(467), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(467), - }, - [46] = { - [sym_subscript] = STATE(258), - [sym_variable_name] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_POUND] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(473), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(473), - [anon_sym_QMARK] = ACTIONS(473), - [anon_sym_0] = ACTIONS(479), - [anon_sym__] = ACTIONS(479), - }, - [47] = { - [sym_for_statement] = STATE(259), - [sym_c_style_for_statement] = STATE(259), - [sym_while_statement] = STATE(259), - [sym_if_statement] = STATE(259), - [sym_case_statement] = STATE(259), - [sym_function_definition] = STATE(259), - [sym_subshell] = STATE(259), - [sym_pipeline] = STATE(259), - [sym_list] = STATE(259), - [sym_negated_command] = STATE(259), - [sym_test_command] = STATE(259), - [sym_declaration_command] = STATE(259), - [sym_unset_command] = STATE(259), - [sym_command] = STATE(259), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(260), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [48] = { - [sym_for_statement] = STATE(261), - [sym_c_style_for_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_function_definition] = STATE(261), - [sym_subshell] = STATE(261), - [sym_pipeline] = STATE(261), - [sym_list] = STATE(261), - [sym_negated_command] = STATE(261), - [sym_test_command] = STATE(261), - [sym_declaration_command] = STATE(261), - [sym_unset_command] = STATE(261), - [sym_command] = STATE(261), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(262), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [49] = { - [sym_for_statement] = STATE(263), - [sym_c_style_for_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_function_definition] = STATE(263), - [sym_subshell] = STATE(263), - [sym_pipeline] = STATE(263), - [sym_list] = STATE(263), - [sym_negated_command] = STATE(263), - [sym_test_command] = STATE(263), - [sym_declaration_command] = STATE(263), - [sym_unset_command] = STATE(263), - [sym_command] = STATE(263), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(264), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [50] = { - [anon_sym_in] = ACTIONS(465), - [anon_sym_SEMI_SEMI] = ACTIONS(467), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(467), - }, - [51] = { - [sym_compound_statement] = STATE(267), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(483), - [sym_comment] = ACTIONS(53), - }, - [52] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(485), - [anon_sym_PLUS_EQ] = ACTIONS(485), - [sym_comment] = ACTIONS(53), - }, - [53] = { - [sym__terminated_statement] = STATE(269), - [sym_for_statement] = STATE(39), - [sym_c_style_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [54] = { - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(487), - }, - [55] = { - [sym_subshell] = STATE(70), - [sym_test_command] = STATE(70), - [sym_command] = STATE(70), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(68), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(68), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_command_repeat1] = STATE(68), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LBRACK_LBRACK] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(105), - }, - [56] = { - [sym__expression] = STATE(271), - [sym_binary_expression] = STATE(271), - [sym_unary_expression] = STATE(271), - [sym_parenthesized_expression] = STATE(271), - [sym_concatenation] = STATE(271), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(113), - [sym__special_characters] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(131), - [sym_test_operator] = ACTIONS(133), - }, - [57] = { - [sym__expression] = STATE(272), - [sym_binary_expression] = STATE(272), - [sym_unary_expression] = STATE(272), - [sym_parenthesized_expression] = STATE(272), - [sym_concatenation] = STATE(272), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(137), - [sym__special_characters] = ACTIONS(139), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(155), - [sym_test_operator] = ACTIONS(157), - }, - [58] = { - [sym_variable_assignment] = STATE(104), - [sym_subscript] = STATE(276), - [sym_concatenation] = STATE(104), - [sym_string] = STATE(275), - [sym_simple_expansion] = STATE(275), - [sym_string_expansion] = STATE(275), - [sym_expansion] = STATE(275), - [sym_command_substitution] = STATE(275), - [sym_process_substitution] = STATE(275), - [aux_sym_declaration_command_repeat1] = STATE(277), - [sym_variable_name] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_SEMI_SEMI] = ACTIONS(161), - [anon_sym_PIPE_AMP] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(161), - [anon_sym_PIPE_PIPE] = ACTIONS(161), - [sym__special_characters] = ACTIONS(491), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(167), - [sym_raw_string] = ACTIONS(493), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), - [anon_sym_BQUOTE] = ACTIONS(175), - [anon_sym_LT_LPAREN] = ACTIONS(177), - [anon_sym_GT_LPAREN] = ACTIONS(177), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), - [sym_word] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LF] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(161), - }, - [59] = { - [sym_concatenation] = STATE(280), - [sym_string] = STATE(279), - [sym_simple_expansion] = STATE(279), - [sym_string_expansion] = STATE(279), - [sym_expansion] = STATE(279), - [sym_command_substitution] = STATE(279), - [sym_process_substitution] = STATE(279), - [aux_sym_unset_command_repeat1] = STATE(280), - [anon_sym_PIPE] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_SEMI_SEMI] = ACTIONS(185), - [anon_sym_PIPE_AMP] = ACTIONS(185), - [anon_sym_AMP_AMP] = ACTIONS(185), - [anon_sym_PIPE_PIPE] = ACTIONS(185), - [sym__special_characters] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(497), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), - [sym_word] = ACTIONS(497), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_LF] = ACTIONS(205), - [anon_sym_AMP] = ACTIONS(185), - }, - [60] = { - [aux_sym_concatenation_repeat1] = STATE(281), - [sym__simple_heredoc_body] = ACTIONS(223), - [sym__heredoc_body_beginning] = ACTIONS(223), - [sym_file_descriptor] = ACTIONS(223), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(227), - [anon_sym_RPAREN] = ACTIONS(227), - [anon_sym_SEMI_SEMI] = ACTIONS(227), - [anon_sym_PIPE_AMP] = ACTIONS(227), - [anon_sym_AMP_AMP] = ACTIONS(227), - [anon_sym_PIPE_PIPE] = ACTIONS(227), - [anon_sym_EQ_TILDE] = ACTIONS(227), - [anon_sym_EQ_EQ] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_GT] = ACTIONS(227), - [anon_sym_GT_GT] = ACTIONS(227), - [anon_sym_AMP_GT] = ACTIONS(227), - [anon_sym_AMP_GT_GT] = ACTIONS(227), - [anon_sym_LT_AMP] = ACTIONS(227), - [anon_sym_GT_AMP] = ACTIONS(227), - [anon_sym_LT_LT] = ACTIONS(227), - [anon_sym_LT_LT_DASH] = ACTIONS(227), - [anon_sym_LT_LT_LT] = ACTIONS(227), - [sym__special_characters] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(227), - [anon_sym_DOLLAR] = ACTIONS(227), - [sym_raw_string] = ACTIONS(227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(227), - [anon_sym_LT_LPAREN] = ACTIONS(227), - [anon_sym_GT_LPAREN] = ACTIONS(227), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(227), - [anon_sym_SEMI] = ACTIONS(227), - [anon_sym_LF] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(227), - }, - [61] = { - [aux_sym_concatenation_repeat1] = STATE(281), - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(251), - [anon_sym_SEMI_SEMI] = ACTIONS(251), - [anon_sym_PIPE_AMP] = ACTIONS(251), - [anon_sym_AMP_AMP] = ACTIONS(251), - [anon_sym_PIPE_PIPE] = ACTIONS(251), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(251), - [anon_sym_LT_AMP] = ACTIONS(251), - [anon_sym_GT_AMP] = ACTIONS(251), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(251), - [anon_sym_LT_LT_LT] = ACTIONS(251), - [sym__special_characters] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_BQUOTE] = ACTIONS(251), - [anon_sym_LT_LPAREN] = ACTIONS(251), - [anon_sym_GT_LPAREN] = ACTIONS(251), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(251), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(249), - [anon_sym_AMP] = ACTIONS(251), - }, - [62] = { - [aux_sym_concatenation_repeat1] = STATE(281), - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(251), - [anon_sym_SEMI_SEMI] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_PIPE_AMP] = ACTIONS(251), - [anon_sym_AMP_AMP] = ACTIONS(251), - [anon_sym_PIPE_PIPE] = ACTIONS(251), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(251), - [anon_sym_LT_AMP] = ACTIONS(251), - [anon_sym_GT_AMP] = ACTIONS(251), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(251), - [anon_sym_LT_LT_LT] = ACTIONS(251), - [sym__special_characters] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_BQUOTE] = ACTIONS(251), - [anon_sym_LT_LPAREN] = ACTIONS(251), - [anon_sym_GT_LPAREN] = ACTIONS(251), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(251), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(249), - [anon_sym_AMP] = ACTIONS(251), - }, - [63] = { - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(505), - }, - [64] = { - [sym_file_redirect] = STATE(293), - [sym_heredoc_redirect] = STATE(293), - [sym_heredoc_body] = STATE(201), - [sym_herestring_redirect] = STATE(293), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_string_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [sym_command_substitution] = STATE(292), - [sym_process_substitution] = STATE(292), - [aux_sym_while_statement_repeat1] = STATE(293), - [aux_sym_command_repeat2] = STATE(294), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(345), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(515), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(517), - [sym__special_characters] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym_LF] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(345), - }, - [65] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(505), - }, - [66] = { - [anon_sym_EQ] = ACTIONS(485), - [anon_sym_PLUS_EQ] = ACTIONS(485), - [sym_comment] = ACTIONS(53), - }, - [67] = { - [sym__terminated_statement] = STATE(297), - [sym_for_statement] = STATE(295), - [sym_c_style_for_statement] = STATE(295), - [sym_while_statement] = STATE(295), - [sym_if_statement] = STATE(295), - [sym_case_statement] = STATE(295), - [sym_function_definition] = STATE(295), - [sym_subshell] = STATE(295), - [sym_pipeline] = STATE(295), - [sym_list] = STATE(295), - [sym_negated_command] = STATE(295), - [sym_test_command] = STATE(295), - [sym_declaration_command] = STATE(295), - [sym_unset_command] = STATE(295), - [sym_command] = STATE(295), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(296), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(68), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(297), - [aux_sym_command_repeat1] = STATE(68), + [sym__terminated_statement] = STATE(145), + [sym_for_statement] = STATE(143), + [sym_c_style_for_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_case_statement] = STATE(143), + [sym_function_definition] = STATE(143), + [sym_subshell] = STATE(143), + [sym_pipeline] = STATE(143), + [sym_list] = STATE(143), + [sym_negated_command] = STATE(143), + [sym_test_command] = STATE(143), + [sym_declaration_command] = STATE(143), + [sym_unset_command] = STATE(143), + [sym_command] = STATE(143), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(144), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(145), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), @@ -10905,21 +8688,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [68] = { - [sym_command_name] = STATE(298), - [sym_variable_assignment] = STATE(207), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(207), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_command_repeat1] = STATE(207), + [22] = { + [sym__terminated_statement] = STATE(157), + [sym_for_statement] = STATE(154), + [sym_c_style_for_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_function_definition] = STATE(154), + [sym_subshell] = STATE(154), + [sym_pipeline] = STATE(154), + [sym_list] = STATE(154), + [sym_negated_command] = STATE(154), + [sym_test_command] = STATE(154), + [sym_declaration_command] = STATE(154), + [sym_unset_command] = STATE(154), + [sym_command] = STATE(154), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(156), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(157), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -10927,7 +8742,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(523), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [23] = { + [sym__terminated_statement] = STATE(161), + [sym_for_statement] = STATE(159), + [sym_c_style_for_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_function_definition] = STATE(159), + [sym_subshell] = STATE(159), + [sym_pipeline] = STATE(159), + [sym_list] = STATE(159), + [sym_negated_command] = STATE(159), + [sym_test_command] = STATE(159), + [sym_declaration_command] = STATE(159), + [sym_unset_command] = STATE(159), + [sym_command] = STATE(159), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(160), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(161), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), [sym_raw_string] = ACTIONS(105), @@ -10937,2248 +8818,767 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(105), + [sym_word] = ACTIONS(107), }, - [69] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(525), - [anon_sym_PLUS_EQ] = ACTIONS(525), - [sym_comment] = ACTIONS(53), - }, - [70] = { - [anon_sym_esac] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_SEMI_SEMI] = ACTIONS(527), - [anon_sym_PIPE_AMP] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(527), - [anon_sym_PIPE_PIPE] = ACTIONS(527), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_LF] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(527), - }, - [71] = { - [anon_sym_EQ] = ACTIONS(525), - [anon_sym_PLUS_EQ] = ACTIONS(525), - [sym_comment] = ACTIONS(53), - }, - [72] = { - [sym__expression] = STATE(303), - [sym_binary_expression] = STATE(303), - [sym_unary_expression] = STATE(303), - [sym_parenthesized_expression] = STATE(303), - [sym_concatenation] = STATE(303), - [sym_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_string_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(531), - [sym__special_characters] = ACTIONS(533), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(537), - [sym_test_operator] = ACTIONS(539), - }, - [73] = { - [sym__expression] = STATE(304), - [sym_binary_expression] = STATE(304), - [sym_unary_expression] = STATE(304), - [sym_parenthesized_expression] = STATE(304), - [sym_concatenation] = STATE(304), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(113), - [sym__special_characters] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(131), - [sym_test_operator] = ACTIONS(133), - }, - [74] = { - [aux_sym_concatenation_repeat1] = STATE(306), - [sym__concat] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(543), - [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(543), - [anon_sym_EQ_TILDE] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), - }, - [75] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(309), - [anon_sym_DQUOTE] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(549), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [76] = { - [sym_string] = STATE(311), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(551), - [sym_raw_string] = ACTIONS(553), - [anon_sym_POUND] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(551), - [anon_sym_0] = ACTIONS(557), - [anon_sym__] = ACTIONS(557), - }, - [77] = { - [aux_sym_concatenation_repeat1] = STATE(306), - [sym__concat] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(559), - [anon_sym_EQ_TILDE] = ACTIONS(559), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(559), - }, - [78] = { - [sym_subscript] = STATE(317), - [sym_variable_name] = ACTIONS(563), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_0] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - }, - [79] = { - [sym_for_statement] = STATE(318), - [sym_c_style_for_statement] = STATE(318), - [sym_while_statement] = STATE(318), - [sym_if_statement] = STATE(318), - [sym_case_statement] = STATE(318), - [sym_function_definition] = STATE(318), - [sym_subshell] = STATE(318), - [sym_pipeline] = STATE(318), - [sym_list] = STATE(318), - [sym_negated_command] = STATE(318), - [sym_test_command] = STATE(318), - [sym_declaration_command] = STATE(318), - [sym_unset_command] = STATE(318), - [sym_command] = STATE(318), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(319), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [80] = { - [sym_for_statement] = STATE(320), - [sym_c_style_for_statement] = STATE(320), - [sym_while_statement] = STATE(320), - [sym_if_statement] = STATE(320), - [sym_case_statement] = STATE(320), - [sym_function_definition] = STATE(320), - [sym_subshell] = STATE(320), - [sym_pipeline] = STATE(320), - [sym_list] = STATE(320), - [sym_negated_command] = STATE(320), - [sym_test_command] = STATE(320), - [sym_declaration_command] = STATE(320), - [sym_unset_command] = STATE(320), - [sym_command] = STATE(320), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(321), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [81] = { - [sym_for_statement] = STATE(322), - [sym_c_style_for_statement] = STATE(322), - [sym_while_statement] = STATE(322), - [sym_if_statement] = STATE(322), - [sym_case_statement] = STATE(322), - [sym_function_definition] = STATE(322), - [sym_subshell] = STATE(322), - [sym_pipeline] = STATE(322), - [sym_list] = STATE(322), - [sym_negated_command] = STATE(322), - [sym_test_command] = STATE(322), - [sym_declaration_command] = STATE(322), - [sym_unset_command] = STATE(322), - [sym_command] = STATE(322), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(323), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [82] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(575), - [anon_sym_EQ_TILDE] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(577), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), - }, - [83] = { - [sym__expression] = STATE(327), - [sym_binary_expression] = STATE(327), - [sym_unary_expression] = STATE(327), - [sym_parenthesized_expression] = STATE(327), - [sym_concatenation] = STATE(327), - [sym_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_string_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(531), - [sym__special_characters] = ACTIONS(533), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(537), - [sym_test_operator] = ACTIONS(539), - }, - [84] = { - [sym__expression] = STATE(328), - [sym_binary_expression] = STATE(328), - [sym_unary_expression] = STATE(328), - [sym_parenthesized_expression] = STATE(328), - [sym_concatenation] = STATE(328), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(137), - [sym__special_characters] = ACTIONS(139), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(155), - [sym_test_operator] = ACTIONS(157), - }, - [85] = { - [aux_sym_concatenation_repeat1] = STATE(330), - [sym__concat] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(543), - [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_RBRACK_RBRACK] = ACTIONS(543), - [anon_sym_EQ_TILDE] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), - }, - [86] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(333), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_DOLLAR] = ACTIONS(585), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [87] = { - [sym_string] = STATE(335), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(587), - [sym_raw_string] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), - [anon_sym_0] = ACTIONS(593), - [anon_sym__] = ACTIONS(593), - }, - [88] = { - [aux_sym_concatenation_repeat1] = STATE(330), - [sym__concat] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_RBRACK_RBRACK] = ACTIONS(559), - [anon_sym_EQ_TILDE] = ACTIONS(559), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(559), - }, - [89] = { - [sym_subscript] = STATE(341), - [sym_variable_name] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(597), - [anon_sym_POUND] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(597), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_AT] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(597), - [anon_sym_0] = ACTIONS(603), - [anon_sym__] = ACTIONS(603), - }, - [90] = { - [sym_for_statement] = STATE(342), - [sym_c_style_for_statement] = STATE(342), - [sym_while_statement] = STATE(342), - [sym_if_statement] = STATE(342), - [sym_case_statement] = STATE(342), - [sym_function_definition] = STATE(342), - [sym_subshell] = STATE(342), - [sym_pipeline] = STATE(342), - [sym_list] = STATE(342), - [sym_negated_command] = STATE(342), - [sym_test_command] = STATE(342), - [sym_declaration_command] = STATE(342), - [sym_unset_command] = STATE(342), - [sym_command] = STATE(342), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(343), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [91] = { - [sym_for_statement] = STATE(344), - [sym_c_style_for_statement] = STATE(344), - [sym_while_statement] = STATE(344), - [sym_if_statement] = STATE(344), - [sym_case_statement] = STATE(344), - [sym_function_definition] = STATE(344), - [sym_subshell] = STATE(344), - [sym_pipeline] = STATE(344), - [sym_list] = STATE(344), - [sym_negated_command] = STATE(344), - [sym_test_command] = STATE(344), - [sym_declaration_command] = STATE(344), - [sym_unset_command] = STATE(344), - [sym_command] = STATE(344), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(345), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [92] = { - [sym_for_statement] = STATE(346), - [sym_c_style_for_statement] = STATE(346), - [sym_while_statement] = STATE(346), - [sym_if_statement] = STATE(346), - [sym_case_statement] = STATE(346), - [sym_function_definition] = STATE(346), - [sym_subshell] = STATE(346), - [sym_pipeline] = STATE(346), - [sym_list] = STATE(346), - [sym_negated_command] = STATE(346), - [sym_test_command] = STATE(346), - [sym_declaration_command] = STATE(346), - [sym_unset_command] = STATE(346), - [sym_command] = STATE(346), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(347), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [93] = { - [anon_sym_AMP_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(605), - [anon_sym_RBRACK_RBRACK] = ACTIONS(575), - [anon_sym_EQ_TILDE] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(605), - }, - [94] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [sym_comment] = ACTIONS(53), - }, - [95] = { - [aux_sym_concatenation_repeat1] = STATE(352), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [sym__special_characters] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_raw_string] = ACTIONS(617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_LT_LPAREN] = ACTIONS(617), - [anon_sym_GT_LPAREN] = ACTIONS(617), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), - [sym_word] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - }, - [96] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(355), - [anon_sym_DQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [97] = { - [sym_string] = STATE(357), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(625), - [sym_raw_string] = ACTIONS(627), - [anon_sym_POUND] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(625), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(629), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_AT] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(625), - [anon_sym_0] = ACTIONS(631), - [anon_sym__] = ACTIONS(631), - }, - [98] = { - [aux_sym_concatenation_repeat1] = STATE(352), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_SEMI_SEMI] = ACTIONS(635), - [anon_sym_PIPE_AMP] = ACTIONS(635), - [anon_sym_AMP_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(635), - [sym__special_characters] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_raw_string] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), - [anon_sym_BQUOTE] = ACTIONS(635), - [anon_sym_LT_LPAREN] = ACTIONS(635), - [anon_sym_GT_LPAREN] = ACTIONS(635), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), - [sym_word] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(635), - [anon_sym_LF] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(635), - }, - [99] = { - [sym_subscript] = STATE(363), - [sym_variable_name] = ACTIONS(637), - [anon_sym_DOLLAR] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(639), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_0] = ACTIONS(645), - [anon_sym__] = ACTIONS(645), - }, - [100] = { - [sym_for_statement] = STATE(364), - [sym_c_style_for_statement] = STATE(364), - [sym_while_statement] = STATE(364), - [sym_if_statement] = STATE(364), - [sym_case_statement] = STATE(364), - [sym_function_definition] = STATE(364), - [sym_subshell] = STATE(364), - [sym_pipeline] = STATE(364), - [sym_list] = STATE(364), - [sym_negated_command] = STATE(364), - [sym_test_command] = STATE(364), - [sym_declaration_command] = STATE(364), - [sym_unset_command] = STATE(364), - [sym_command] = STATE(364), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(365), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [101] = { - [sym_for_statement] = STATE(366), - [sym_c_style_for_statement] = STATE(366), - [sym_while_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [sym_function_definition] = STATE(366), - [sym_subshell] = STATE(366), - [sym_pipeline] = STATE(366), - [sym_list] = STATE(366), - [sym_negated_command] = STATE(366), - [sym_test_command] = STATE(366), - [sym_declaration_command] = STATE(366), - [sym_unset_command] = STATE(366), - [sym_command] = STATE(366), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(367), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [102] = { - [sym_for_statement] = STATE(368), - [sym_c_style_for_statement] = STATE(368), - [sym_while_statement] = STATE(368), - [sym_if_statement] = STATE(368), - [sym_case_statement] = STATE(368), - [sym_function_definition] = STATE(368), - [sym_subshell] = STATE(368), - [sym_pipeline] = STATE(368), - [sym_list] = STATE(368), - [sym_negated_command] = STATE(368), - [sym_test_command] = STATE(368), - [sym_declaration_command] = STATE(368), - [sym_unset_command] = STATE(368), - [sym_command] = STATE(368), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(369), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [103] = { - [sym_variable_name] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_SEMI_SEMI] = ACTIONS(649), - [anon_sym_PIPE_AMP] = ACTIONS(649), - [anon_sym_AMP_AMP] = ACTIONS(649), - [anon_sym_PIPE_PIPE] = ACTIONS(649), - [sym__special_characters] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(649), - [anon_sym_DOLLAR] = ACTIONS(649), - [sym_raw_string] = ACTIONS(649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(649), - [anon_sym_BQUOTE] = ACTIONS(649), - [anon_sym_LT_LPAREN] = ACTIONS(649), - [anon_sym_GT_LPAREN] = ACTIONS(649), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), - [sym_word] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_LF] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(649), - }, - [104] = { - [sym_variable_name] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_SEMI_SEMI] = ACTIONS(635), - [anon_sym_PIPE_AMP] = ACTIONS(635), - [anon_sym_AMP_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(635), - [sym__special_characters] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_raw_string] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), - [anon_sym_BQUOTE] = ACTIONS(635), - [anon_sym_LT_LPAREN] = ACTIONS(635), - [anon_sym_GT_LPAREN] = ACTIONS(635), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), - [sym_word] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(635), - [anon_sym_LF] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(635), - }, - [105] = { - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [sym_comment] = ACTIONS(53), - }, - [106] = { - [sym_variable_assignment] = STATE(104), - [sym_subscript] = STATE(105), - [sym_concatenation] = STATE(104), - [sym_string] = STATE(98), - [sym_simple_expansion] = STATE(98), - [sym_string_expansion] = STATE(98), - [sym_expansion] = STATE(98), - [sym_command_substitution] = STATE(98), - [sym_process_substitution] = STATE(98), - [aux_sym_declaration_command_repeat1] = STATE(370), - [sym_variable_name] = ACTIONS(159), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_SEMI_SEMI] = ACTIONS(651), - [anon_sym_PIPE_AMP] = ACTIONS(651), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [sym__special_characters] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(167), - [sym_raw_string] = ACTIONS(169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), - [anon_sym_BQUOTE] = ACTIONS(175), - [anon_sym_LT_LPAREN] = ACTIONS(177), - [anon_sym_GT_LPAREN] = ACTIONS(177), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), - [sym_word] = ACTIONS(169), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_LF] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(651), - }, - [107] = { - [aux_sym_concatenation_repeat1] = STATE(372), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_SEMI_SEMI] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(657), - [sym__special_characters] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [sym_raw_string] = ACTIONS(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), - [sym_word] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_LF] = ACTIONS(659), - [anon_sym_AMP] = ACTIONS(657), - }, - [108] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(375), - [anon_sym_DQUOTE] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [109] = { - [sym_string] = STATE(377), - [anon_sym_DQUOTE] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(667), - [sym_raw_string] = ACTIONS(669), - [anon_sym_POUND] = ACTIONS(667), - [anon_sym_DASH] = ACTIONS(667), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(667), - [anon_sym_0] = ACTIONS(673), - [anon_sym__] = ACTIONS(673), - }, - [110] = { - [aux_sym_concatenation_repeat1] = STATE(372), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [sym__special_characters] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(675), - }, - [111] = { - [sym_subscript] = STATE(383), - [sym_variable_name] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_POUND] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(681), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(685), - [anon_sym_STAR] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_QMARK] = ACTIONS(681), - [anon_sym_0] = ACTIONS(687), - [anon_sym__] = ACTIONS(687), - }, - [112] = { - [sym_for_statement] = STATE(384), - [sym_c_style_for_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_case_statement] = STATE(384), - [sym_function_definition] = STATE(384), - [sym_subshell] = STATE(384), - [sym_pipeline] = STATE(384), - [sym_list] = STATE(384), - [sym_negated_command] = STATE(384), - [sym_test_command] = STATE(384), - [sym_declaration_command] = STATE(384), - [sym_unset_command] = STATE(384), - [sym_command] = STATE(384), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(385), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [113] = { - [sym_for_statement] = STATE(386), - [sym_c_style_for_statement] = STATE(386), - [sym_while_statement] = STATE(386), - [sym_if_statement] = STATE(386), - [sym_case_statement] = STATE(386), - [sym_function_definition] = STATE(386), - [sym_subshell] = STATE(386), - [sym_pipeline] = STATE(386), - [sym_list] = STATE(386), - [sym_negated_command] = STATE(386), - [sym_test_command] = STATE(386), - [sym_declaration_command] = STATE(386), - [sym_unset_command] = STATE(386), - [sym_command] = STATE(386), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(387), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [114] = { - [sym_for_statement] = STATE(388), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_if_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_subshell] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [115] = { - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(689), - [anon_sym_PIPE_AMP] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [sym__special_characters] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(689), - [sym_raw_string] = ACTIONS(689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), - [sym_word] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_LF] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(689), - }, - [116] = { - [sym_concatenation] = STATE(390), - [sym_string] = STATE(110), - [sym_simple_expansion] = STATE(110), - [sym_string_expansion] = STATE(110), - [sym_expansion] = STATE(110), - [sym_command_substitution] = STATE(110), - [sym_process_substitution] = STATE(110), - [aux_sym_unset_command_repeat1] = STATE(390), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_SEMI_SEMI] = ACTIONS(693), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [sym__special_characters] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(193), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), - [sym_word] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_LF] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(693), - }, - [117] = { - [aux_sym_concatenation_repeat1] = STATE(392), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(697), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(697), - [anon_sym_LT_AMP] = ACTIONS(697), - [anon_sym_GT_AMP] = ACTIONS(697), - [sym__special_characters] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(701), - [sym_raw_string] = ACTIONS(697), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LT_LPAREN] = ACTIONS(697), - [anon_sym_GT_LPAREN] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(697), - }, - [118] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(395), - [anon_sym_DQUOTE] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [119] = { - [sym_string] = STATE(397), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(709), - [anon_sym_POUND] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(707), - [anon_sym_0] = ACTIONS(713), - [anon_sym__] = ACTIONS(713), - }, - [120] = { - [aux_sym_concatenation_repeat1] = STATE(392), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [sym__special_characters] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_raw_string] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [anon_sym_LT_LPAREN] = ACTIONS(715), - [anon_sym_GT_LPAREN] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(715), - }, - [121] = { - [sym_subscript] = STATE(403), - [sym_variable_name] = ACTIONS(719), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_POUND] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), - [anon_sym_STAR] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(721), - [anon_sym_QMARK] = ACTIONS(721), - [anon_sym_0] = ACTIONS(727), - [anon_sym__] = ACTIONS(727), - }, - [122] = { - [sym_for_statement] = STATE(404), - [sym_c_style_for_statement] = STATE(404), - [sym_while_statement] = STATE(404), - [sym_if_statement] = STATE(404), - [sym_case_statement] = STATE(404), - [sym_function_definition] = STATE(404), - [sym_subshell] = STATE(404), - [sym_pipeline] = STATE(404), - [sym_list] = STATE(404), - [sym_negated_command] = STATE(404), - [sym_test_command] = STATE(404), - [sym_declaration_command] = STATE(404), - [sym_unset_command] = STATE(404), - [sym_command] = STATE(404), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(405), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [123] = { - [sym_for_statement] = STATE(406), - [sym_c_style_for_statement] = STATE(406), - [sym_while_statement] = STATE(406), - [sym_if_statement] = STATE(406), - [sym_case_statement] = STATE(406), - [sym_function_definition] = STATE(406), - [sym_subshell] = STATE(406), - [sym_pipeline] = STATE(406), - [sym_list] = STATE(406), - [sym_negated_command] = STATE(406), - [sym_test_command] = STATE(406), - [sym_declaration_command] = STATE(406), - [sym_unset_command] = STATE(406), - [sym_command] = STATE(406), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(407), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [124] = { - [sym_for_statement] = STATE(408), - [sym_c_style_for_statement] = STATE(408), - [sym_while_statement] = STATE(408), - [sym_if_statement] = STATE(408), - [sym_case_statement] = STATE(408), - [sym_function_definition] = STATE(408), - [sym_subshell] = STATE(408), - [sym_pipeline] = STATE(408), - [sym_list] = STATE(408), - [sym_negated_command] = STATE(408), - [sym_test_command] = STATE(408), - [sym_declaration_command] = STATE(408), - [sym_unset_command] = STATE(408), - [sym_command] = STATE(408), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [125] = { - [sym_file_descriptor] = ACTIONS(715), - [sym_variable_name] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [sym__special_characters] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_raw_string] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [anon_sym_LT_LPAREN] = ACTIONS(715), - [anon_sym_GT_LPAREN] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(715), - }, - [126] = { - [sym_string] = STATE(410), - [sym_simple_expansion] = STATE(410), - [sym_string_expansion] = STATE(410), - [sym_expansion] = STATE(410), - [sym_command_substitution] = STATE(410), - [sym_process_substitution] = STATE(410), - [sym__special_characters] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(729), - }, - [127] = { - [aux_sym_concatenation_repeat1] = STATE(411), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), + [24] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), }, - [128] = { - [sym__simple_heredoc_body] = ACTIONS(735), - [sym__heredoc_body_beginning] = ACTIONS(735), - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(737), - [anon_sym_LT_LT_LT] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [129] = { - [anon_sym_DQUOTE] = ACTIONS(739), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [130] = { - [sym__concat] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym__string_content] = ACTIONS(753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [sym_comment] = ACTIONS(179), - }, - [131] = { - [sym_subscript] = STATE(421), - [sym_variable_name] = ACTIONS(755), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(757), - [anon_sym_0] = ACTIONS(763), - [anon_sym__] = ACTIONS(763), - }, - [132] = { - [sym_for_statement] = STATE(422), - [sym_c_style_for_statement] = STATE(422), - [sym_while_statement] = STATE(422), - [sym_if_statement] = STATE(422), - [sym_case_statement] = STATE(422), - [sym_function_definition] = STATE(422), - [sym_subshell] = STATE(422), - [sym_pipeline] = STATE(422), - [sym_list] = STATE(422), - [sym_negated_command] = STATE(422), - [sym_test_command] = STATE(422), - [sym_declaration_command] = STATE(422), - [sym_unset_command] = STATE(422), - [sym_command] = STATE(422), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(423), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [25] = { + [ts_builtin_sym_end] = ACTIONS(281), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), }, - [133] = { - [sym_for_statement] = STATE(424), - [sym_c_style_for_statement] = STATE(424), - [sym_while_statement] = STATE(424), - [sym_if_statement] = STATE(424), - [sym_case_statement] = STATE(424), - [sym_function_definition] = STATE(424), - [sym_subshell] = STATE(424), - [sym_pipeline] = STATE(424), - [sym_list] = STATE(424), - [sym_negated_command] = STATE(424), - [sym_test_command] = STATE(424), - [sym_declaration_command] = STATE(424), - [sym_unset_command] = STATE(424), - [sym_command] = STATE(424), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(425), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), + [26] = { + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [27] = { + [sym_file_redirect] = STATE(176), + [sym_heredoc_redirect] = STATE(176), + [sym_heredoc_body] = STATE(175), + [sym_herestring_redirect] = STATE(176), + [sym_concatenation] = STATE(177), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_string_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [aux_sym_while_statement_repeat1] = STATE(176), + [aux_sym_command_repeat2] = STATE(177), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(297), + [anon_sym_SEMI_SEMI] = ACTIONS(297), + [anon_sym_PIPE_AMP] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_PIPE_PIPE] = ACTIONS(297), + [anon_sym_EQ_TILDE] = ACTIONS(299), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_AMP_GT] = ACTIONS(301), + [anon_sym_AMP_GT_GT] = ACTIONS(301), + [anon_sym_LT_AMP] = ACTIONS(301), + [anon_sym_GT_AMP] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(305), + [sym__special_characters] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(297), + [anon_sym_LF] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(297), + }, + [28] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [134] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(739), - [anon_sym_DOLLAR] = ACTIONS(765), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [135] = { - [sym__simple_heredoc_body] = ACTIONS(767), - [sym__heredoc_body_beginning] = ACTIONS(767), - [sym_file_descriptor] = ACTIONS(767), - [sym__concat] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(769), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(769), - [anon_sym_LT_LT_DASH] = ACTIONS(769), - [anon_sym_LT_LT_LT] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), - }, - [136] = { - [sym__simple_heredoc_body] = ACTIONS(771), - [sym__heredoc_body_beginning] = ACTIONS(771), - [sym_file_descriptor] = ACTIONS(771), - [sym__concat] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym__special_characters] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(773), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LF] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - }, - [137] = { - [sym__simple_heredoc_body] = ACTIONS(775), - [sym__heredoc_body_beginning] = ACTIONS(775), - [sym_file_descriptor] = ACTIONS(775), - [sym__concat] = ACTIONS(775), - [anon_sym_esac] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [anon_sym_PIPE_AMP] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(777), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(777), - [anon_sym_LT_AMP] = ACTIONS(777), - [anon_sym_GT_AMP] = ACTIONS(777), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(777), - [anon_sym_LT_LT_LT] = ACTIONS(777), - [sym__special_characters] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(777), - [anon_sym_GT_LPAREN] = ACTIONS(777), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - }, - [138] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(781), + [29] = { + [anon_sym_EQ] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(63), [sym_comment] = ACTIONS(53), }, - [139] = { - [sym_concatenation] = STATE(440), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(440), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(785), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(795), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(785), - [anon_sym_COLON_QMARK] = ACTIONS(785), - [anon_sym_COLON_DASH] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [140] = { - [sym_subscript] = STATE(444), - [sym_variable_name] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), + [30] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(323), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(323), + [anon_sym_LT_AMP] = ACTIONS(323), + [anon_sym_GT_AMP] = ACTIONS(323), + [sym__special_characters] = ACTIONS(323), + [anon_sym_DQUOTE] = ACTIONS(323), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), + [anon_sym_BQUOTE] = ACTIONS(323), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(811), - [anon_sym_0] = ACTIONS(815), - [anon_sym__] = ACTIONS(815), + [sym_word] = ACTIONS(323), }, - [141] = { - [sym_concatenation] = STATE(447), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(447), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_EQ] = ACTIONS(819), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_COLON_QMARK] = ACTIONS(819), - [anon_sym_COLON_DASH] = ACTIONS(819), - [anon_sym_PERCENT] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [31] = { + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [anon_sym_esac] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), }, - [142] = { - [sym_concatenation] = STATE(450), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(450), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(827), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(829), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(831), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_COLON_QMARK] = ACTIONS(827), - [anon_sym_COLON_DASH] = ACTIONS(827), - [anon_sym_PERCENT] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [143] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [sym_comment] = ACTIONS(53), - }, - [144] = { - [anon_sym_LPAREN_LPAREN] = ACTIONS(835), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(837), - }, - [145] = { - [sym__terminated_statement] = STATE(454), - [sym_for_statement] = STATE(39), - [sym_c_style_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), + [32] = { + [sym__terminated_statement] = STATE(178), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(178), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(327), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [33] = { + [sym_command_name] = STATE(179), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(180), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(43), + }, + [34] = { + [sym_concatenation] = STATE(183), + [sym_string] = STATE(182), + [sym_simple_expansion] = STATE(182), + [sym_string_expansion] = STATE(182), + [sym_expansion] = STATE(182), + [sym_command_substitution] = STATE(182), + [sym_process_substitution] = STATE(182), + [sym__special_characters] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [anon_sym_LT_LPAREN] = ACTIONS(221), + [anon_sym_GT_LPAREN] = ACTIONS(221), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(333), + }, + [35] = { + [sym_concatenation] = STATE(186), + [sym_string] = STATE(185), + [sym_simple_expansion] = STATE(185), + [sym_string_expansion] = STATE(185), + [sym_expansion] = STATE(185), + [sym_command_substitution] = STATE(185), + [sym_process_substitution] = STATE(185), + [sym__special_characters] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(337), + }, + [36] = { + [sym_concatenation] = STATE(187), + [sym_string] = STATE(192), + [sym_array] = STATE(187), + [sym_simple_expansion] = STATE(192), + [sym_string_expansion] = STATE(192), + [sym_expansion] = STATE(192), + [sym_command_substitution] = STATE(192), + [sym_process_substitution] = STATE(192), + [sym__empty_value] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [sym__special_characters] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(355), + [anon_sym_LT_LPAREN] = ACTIONS(357), + [anon_sym_GT_LPAREN] = ACTIONS(357), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(349), + }, + [37] = { + [sym__expression] = STATE(208), + [sym_binary_expression] = STATE(208), + [sym_unary_expression] = STATE(208), + [sym_parenthesized_expression] = STATE(208), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(203), + [sym_simple_expansion] = STATE(203), + [sym_string_expansion] = STATE(203), + [sym_expansion] = STATE(203), + [sym_command_substitution] = STATE(203), + [sym_process_substitution] = STATE(203), + [anon_sym_SEMI_SEMI] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(363), + [sym__special_characters] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(371), + [sym_test_operator] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(359), + [anon_sym_LF] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(359), + }, + [38] = { + [anon_sym_in] = ACTIONS(383), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LF] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + }, + [39] = { + [sym_do_group] = STATE(212), + [anon_sym_do] = ACTIONS(389), + [sym_comment] = ACTIONS(53), + }, + [40] = { + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(391), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_LF] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(391), + }, + [41] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(391), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_LF] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(391), + }, + [42] = { + [anon_sym_then] = ACTIONS(395), + [sym_comment] = ACTIONS(53), + }, + [43] = { + [aux_sym_concatenation_repeat1] = STATE(218), + [sym__concat] = ACTIONS(397), + [anon_sym_in] = ACTIONS(399), + [anon_sym_SEMI_SEMI] = ACTIONS(401), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(401), + }, + [44] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(221), + [anon_sym_DQUOTE] = ACTIONS(405), + [anon_sym_DOLLAR] = ACTIONS(407), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [45] = { + [sym_string] = STATE(223), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym_raw_string] = ACTIONS(411), + [anon_sym_POUND] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_AT] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(409), + [anon_sym_0] = ACTIONS(415), + [anon_sym__] = ACTIONS(415), + }, + [46] = { + [aux_sym_concatenation_repeat1] = STATE(218), + [sym__concat] = ACTIONS(397), + [anon_sym_in] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(419), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(419), + }, + [47] = { + [sym_subscript] = STATE(231), + [sym_variable_name] = ACTIONS(423), + [anon_sym_DOLLAR] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AT] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_0] = ACTIONS(431), + [anon_sym__] = ACTIONS(431), + }, + [48] = { + [sym__terminated_statement] = STATE(234), + [sym_for_statement] = STATE(232), + [sym_c_style_for_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_case_statement] = STATE(232), + [sym_function_definition] = STATE(232), + [sym_subshell] = STATE(232), + [sym_pipeline] = STATE(232), + [sym_list] = STATE(232), + [sym_negated_command] = STATE(232), + [sym_test_command] = STATE(232), + [sym_declaration_command] = STATE(232), + [sym_unset_command] = STATE(232), + [sym_command] = STATE(232), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(233), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(234), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [49] = { + [sym__terminated_statement] = STATE(237), + [sym_for_statement] = STATE(235), + [sym_c_style_for_statement] = STATE(235), + [sym_while_statement] = STATE(235), + [sym_if_statement] = STATE(235), + [sym_case_statement] = STATE(235), + [sym_function_definition] = STATE(235), + [sym_subshell] = STATE(235), + [sym_pipeline] = STATE(235), + [sym_list] = STATE(235), + [sym_negated_command] = STATE(235), + [sym_test_command] = STATE(235), + [sym_declaration_command] = STATE(235), + [sym_unset_command] = STATE(235), + [sym_command] = STATE(235), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(236), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(237), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [50] = { + [sym__terminated_statement] = STATE(240), + [sym_for_statement] = STATE(238), + [sym_c_style_for_statement] = STATE(238), + [sym_while_statement] = STATE(238), + [sym_if_statement] = STATE(238), + [sym_case_statement] = STATE(238), + [sym_function_definition] = STATE(238), + [sym_subshell] = STATE(238), + [sym_pipeline] = STATE(238), + [sym_list] = STATE(238), + [sym_negated_command] = STATE(238), + [sym_test_command] = STATE(238), + [sym_declaration_command] = STATE(238), + [sym_unset_command] = STATE(238), + [sym_command] = STATE(238), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(239), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(240), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [51] = { + [anon_sym_in] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(419), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(419), + }, + [52] = { + [sym_compound_statement] = STATE(243), + [anon_sym_LPAREN] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(435), + [sym_comment] = ACTIONS(53), + }, + [53] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(437), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [sym_comment] = ACTIONS(53), + }, + [54] = { + [sym__terminated_statement] = STATE(245), + [sym_for_statement] = STATE(40), + [sym_c_style_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_negated_command] = STATE(40), + [sym_test_command] = STATE(40), + [sym_declaration_command] = STATE(40), + [sym_unset_command] = STATE(40), + [sym_command] = STATE(40), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(41), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -13216,34 +9616,2834 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [146] = { - [sym__terminated_statement] = STATE(455), - [sym_for_statement] = STATE(39), - [sym_c_style_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), + [55] = { + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(439), + }, + [56] = { + [sym_subshell] = STATE(71), + [sym_test_command] = STATE(71), + [sym_command] = STATE(71), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(105), + }, + [57] = { + [sym__expression] = STATE(247), + [sym_binary_expression] = STATE(247), + [sym_unary_expression] = STATE(247), + [sym_parenthesized_expression] = STATE(247), + [sym_concatenation] = STATE(247), + [sym_string] = STATE(78), + [sym_simple_expansion] = STATE(78), + [sym_string_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [sym_process_substitution] = STATE(78), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), + }, + [58] = { + [sym__expression] = STATE(248), + [sym_binary_expression] = STATE(248), + [sym_unary_expression] = STATE(248), + [sym_parenthesized_expression] = STATE(248), + [sym_concatenation] = STATE(248), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), + }, + [59] = { + [sym_variable_assignment] = STATE(253), + [sym_subscript] = STATE(252), + [sym_concatenation] = STATE(253), + [sym_string] = STATE(251), + [sym_simple_expansion] = STATE(251), + [sym_string_expansion] = STATE(251), + [sym_expansion] = STATE(251), + [sym_command_substitution] = STATE(251), + [sym_process_substitution] = STATE(251), + [aux_sym_declaration_command_repeat1] = STATE(253), + [sym_variable_name] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_SEMI_SEMI] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(161), + [anon_sym_PIPE_PIPE] = ACTIONS(161), + [sym__special_characters] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), + [anon_sym_BQUOTE] = ACTIONS(175), + [anon_sym_LT_LPAREN] = ACTIONS(177), + [anon_sym_GT_LPAREN] = ACTIONS(177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), + [sym_word] = ACTIONS(445), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LF] = ACTIONS(183), + [anon_sym_AMP] = ACTIONS(161), + }, + [60] = { + [sym_concatenation] = STATE(256), + [sym_string] = STATE(255), + [sym_simple_expansion] = STATE(255), + [sym_string_expansion] = STATE(255), + [sym_expansion] = STATE(255), + [sym_command_substitution] = STATE(255), + [sym_process_substitution] = STATE(255), + [aux_sym_unset_command_repeat1] = STATE(256), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [sym__special_characters] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), + [sym_word] = ACTIONS(449), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(205), + [anon_sym_AMP] = ACTIONS(185), + }, + [61] = { + [aux_sym_concatenation_repeat1] = STATE(257), + [sym__simple_heredoc_body] = ACTIONS(223), + [sym__heredoc_body_beginning] = ACTIONS(223), + [sym_file_descriptor] = ACTIONS(223), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(227), + [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_SEMI_SEMI] = ACTIONS(227), + [anon_sym_PIPE_AMP] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_EQ_TILDE] = ACTIONS(227), + [anon_sym_EQ_EQ] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_GT] = ACTIONS(227), + [anon_sym_AMP_GT] = ACTIONS(227), + [anon_sym_AMP_GT_GT] = ACTIONS(227), + [anon_sym_LT_AMP] = ACTIONS(227), + [anon_sym_GT_AMP] = ACTIONS(227), + [anon_sym_LT_LT] = ACTIONS(227), + [anon_sym_LT_LT_DASH] = ACTIONS(227), + [anon_sym_LT_LT_LT] = ACTIONS(227), + [sym__special_characters] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(227), + [sym_raw_string] = ACTIONS(227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(227), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(227), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(227), + }, + [62] = { + [aux_sym_concatenation_repeat1] = STATE(257), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), + }, + [63] = { + [aux_sym_concatenation_repeat1] = STATE(257), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), + }, + [64] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_SEMI_SEMI] = ACTIONS(457), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_LF] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(457), + }, + [65] = { + [sym_file_redirect] = STATE(269), + [sym_heredoc_redirect] = STATE(269), + [sym_heredoc_body] = STATE(175), + [sym_herestring_redirect] = STATE(269), + [sym_concatenation] = STATE(270), + [sym_string] = STATE(268), + [sym_simple_expansion] = STATE(268), + [sym_string_expansion] = STATE(268), + [sym_expansion] = STATE(268), + [sym_command_substitution] = STATE(268), + [sym_process_substitution] = STATE(268), + [aux_sym_while_statement_repeat1] = STATE(269), + [aux_sym_command_repeat2] = STATE(270), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(297), + [anon_sym_RPAREN] = ACTIONS(297), + [anon_sym_SEMI_SEMI] = ACTIONS(297), + [anon_sym_PIPE_AMP] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_PIPE_PIPE] = ACTIONS(297), + [anon_sym_EQ_TILDE] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(469), + [sym__special_characters] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(297), + [anon_sym_LF] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(297), + }, + [66] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_SEMI_SEMI] = ACTIONS(457), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_LF] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(457), + }, + [67] = { + [anon_sym_EQ] = ACTIONS(437), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [sym_comment] = ACTIONS(53), + }, + [68] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(271), + [sym_c_style_for_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_if_statement] = STATE(271), + [sym_case_statement] = STATE(271), + [sym_function_definition] = STATE(271), + [sym_subshell] = STATE(271), + [sym_pipeline] = STATE(271), + [sym_list] = STATE(271), + [sym_negated_command] = STATE(271), + [sym_test_command] = STATE(271), + [sym_declaration_command] = STATE(271), + [sym_unset_command] = STATE(271), + [sym_command] = STATE(271), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(272), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [69] = { + [sym_command_name] = STATE(274), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_command_repeat1] = STATE(180), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(105), + }, + [70] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [sym_comment] = ACTIONS(53), + }, + [71] = { + [anon_sym_esac] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(479), + [anon_sym_SEMI_SEMI] = ACTIONS(479), + [anon_sym_PIPE_AMP] = ACTIONS(479), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_LF] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(479), + }, + [72] = { + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [sym_comment] = ACTIONS(53), + }, + [73] = { + [sym__expression] = STATE(279), + [sym_binary_expression] = STATE(279), + [sym_unary_expression] = STATE(279), + [sym_parenthesized_expression] = STATE(279), + [sym_concatenation] = STATE(279), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + }, + [74] = { + [sym__expression] = STATE(280), + [sym_binary_expression] = STATE(280), + [sym_unary_expression] = STATE(280), + [sym_parenthesized_expression] = STATE(280), + [sym_concatenation] = STATE(280), + [sym_string] = STATE(78), + [sym_simple_expansion] = STATE(78), + [sym_string_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [sym_process_substitution] = STATE(78), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), + }, + [75] = { + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__concat] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_RBRACK] = ACTIONS(495), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_LT] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(495), + [anon_sym_BANG_EQ] = ACTIONS(495), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(495), + }, + [76] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(285), + [anon_sym_DQUOTE] = ACTIONS(499), + [anon_sym_DOLLAR] = ACTIONS(501), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [77] = { + [sym_string] = STATE(287), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(503), + [sym_raw_string] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_AT] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(503), + [anon_sym_0] = ACTIONS(509), + [anon_sym__] = ACTIONS(509), + }, + [78] = { + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__concat] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(511), + [anon_sym_PIPE_PIPE] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(511), + [anon_sym_EQ_TILDE] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(511), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(511), + [anon_sym_GT] = ACTIONS(511), + [anon_sym_BANG_EQ] = ACTIONS(511), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(511), + }, + [79] = { + [sym_subscript] = STATE(293), + [sym_variable_name] = ACTIONS(515), + [anon_sym_DOLLAR] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(517), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_0] = ACTIONS(523), + [anon_sym__] = ACTIONS(523), + }, + [80] = { + [sym__terminated_statement] = STATE(296), + [sym_for_statement] = STATE(294), + [sym_c_style_for_statement] = STATE(294), + [sym_while_statement] = STATE(294), + [sym_if_statement] = STATE(294), + [sym_case_statement] = STATE(294), + [sym_function_definition] = STATE(294), + [sym_subshell] = STATE(294), + [sym_pipeline] = STATE(294), + [sym_list] = STATE(294), + [sym_negated_command] = STATE(294), + [sym_test_command] = STATE(294), + [sym_declaration_command] = STATE(294), + [sym_unset_command] = STATE(294), + [sym_command] = STATE(294), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(295), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(296), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [81] = { + [sym__terminated_statement] = STATE(299), + [sym_for_statement] = STATE(297), + [sym_c_style_for_statement] = STATE(297), + [sym_while_statement] = STATE(297), + [sym_if_statement] = STATE(297), + [sym_case_statement] = STATE(297), + [sym_function_definition] = STATE(297), + [sym_subshell] = STATE(297), + [sym_pipeline] = STATE(297), + [sym_list] = STATE(297), + [sym_negated_command] = STATE(297), + [sym_test_command] = STATE(297), + [sym_declaration_command] = STATE(297), + [sym_unset_command] = STATE(297), + [sym_command] = STATE(297), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(298), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(299), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [82] = { + [sym__terminated_statement] = STATE(302), + [sym_for_statement] = STATE(300), + [sym_c_style_for_statement] = STATE(300), + [sym_while_statement] = STATE(300), + [sym_if_statement] = STATE(300), + [sym_case_statement] = STATE(300), + [sym_function_definition] = STATE(300), + [sym_subshell] = STATE(300), + [sym_pipeline] = STATE(300), + [sym_list] = STATE(300), + [sym_negated_command] = STATE(300), + [sym_test_command] = STATE(300), + [sym_declaration_command] = STATE(300), + [sym_unset_command] = STATE(300), + [sym_command] = STATE(300), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(301), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(302), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [83] = { + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(527), + [anon_sym_EQ_TILDE] = ACTIONS(529), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(525), + }, + [84] = { + [sym__expression] = STATE(306), + [sym_binary_expression] = STATE(306), + [sym_unary_expression] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_concatenation] = STATE(306), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + }, + [85] = { + [sym__expression] = STATE(307), + [sym_binary_expression] = STATE(307), + [sym_unary_expression] = STATE(307), + [sym_parenthesized_expression] = STATE(307), + [sym_concatenation] = STATE(307), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), + }, + [86] = { + [aux_sym_concatenation_repeat1] = STATE(309), + [sym__concat] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(495), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_LT] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(495), + [anon_sym_BANG_EQ] = ACTIONS(495), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(495), + }, + [87] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(312), + [anon_sym_DQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(537), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [88] = { + [sym_string] = STATE(314), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(539), + [sym_raw_string] = ACTIONS(541), + [anon_sym_POUND] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_QMARK] = ACTIONS(539), + [anon_sym_0] = ACTIONS(545), + [anon_sym__] = ACTIONS(545), + }, + [89] = { + [aux_sym_concatenation_repeat1] = STATE(309), + [sym__concat] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(511), + [anon_sym_PIPE_PIPE] = ACTIONS(511), + [anon_sym_RBRACK_RBRACK] = ACTIONS(511), + [anon_sym_EQ_TILDE] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(511), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(511), + [anon_sym_GT] = ACTIONS(511), + [anon_sym_BANG_EQ] = ACTIONS(511), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(511), + }, + [90] = { + [sym_subscript] = STATE(320), + [sym_variable_name] = ACTIONS(547), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_POUND] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(549), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(549), + [anon_sym_0] = ACTIONS(555), + [anon_sym__] = ACTIONS(555), + }, + [91] = { + [sym__terminated_statement] = STATE(323), + [sym_for_statement] = STATE(321), + [sym_c_style_for_statement] = STATE(321), + [sym_while_statement] = STATE(321), + [sym_if_statement] = STATE(321), + [sym_case_statement] = STATE(321), + [sym_function_definition] = STATE(321), + [sym_subshell] = STATE(321), + [sym_pipeline] = STATE(321), + [sym_list] = STATE(321), + [sym_negated_command] = STATE(321), + [sym_test_command] = STATE(321), + [sym_declaration_command] = STATE(321), + [sym_unset_command] = STATE(321), + [sym_command] = STATE(321), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(322), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(323), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [92] = { + [sym__terminated_statement] = STATE(326), + [sym_for_statement] = STATE(324), + [sym_c_style_for_statement] = STATE(324), + [sym_while_statement] = STATE(324), + [sym_if_statement] = STATE(324), + [sym_case_statement] = STATE(324), + [sym_function_definition] = STATE(324), + [sym_subshell] = STATE(324), + [sym_pipeline] = STATE(324), + [sym_list] = STATE(324), + [sym_negated_command] = STATE(324), + [sym_test_command] = STATE(324), + [sym_declaration_command] = STATE(324), + [sym_unset_command] = STATE(324), + [sym_command] = STATE(324), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(325), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(326), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [93] = { + [sym__terminated_statement] = STATE(329), + [sym_for_statement] = STATE(327), + [sym_c_style_for_statement] = STATE(327), + [sym_while_statement] = STATE(327), + [sym_if_statement] = STATE(327), + [sym_case_statement] = STATE(327), + [sym_function_definition] = STATE(327), + [sym_subshell] = STATE(327), + [sym_pipeline] = STATE(327), + [sym_list] = STATE(327), + [sym_negated_command] = STATE(327), + [sym_test_command] = STATE(327), + [sym_declaration_command] = STATE(327), + [sym_unset_command] = STATE(327), + [sym_command] = STATE(327), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(328), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(329), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [94] = { + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_RBRACK_RBRACK] = ACTIONS(527), + [anon_sym_EQ_TILDE] = ACTIONS(559), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(557), + }, + [95] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [sym_comment] = ACTIONS(53), + }, + [96] = { + [aux_sym_concatenation_repeat1] = STATE(334), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_SEMI_SEMI] = ACTIONS(569), + [anon_sym_PIPE_AMP] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [sym__special_characters] = ACTIONS(569), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(569), + [sym_raw_string] = ACTIONS(569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(569), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(569), + [anon_sym_BQUOTE] = ACTIONS(569), + [anon_sym_LT_LPAREN] = ACTIONS(569), + [anon_sym_GT_LPAREN] = ACTIONS(569), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(569), + [sym_word] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(569), + }, + [97] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(337), + [anon_sym_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR] = ACTIONS(573), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [98] = { + [sym_string] = STATE(339), + [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_DOLLAR] = ACTIONS(577), + [sym_raw_string] = ACTIONS(579), + [anon_sym_POUND] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_0] = ACTIONS(583), + [anon_sym__] = ACTIONS(583), + }, + [99] = { + [aux_sym_concatenation_repeat1] = STATE(334), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_SEMI_SEMI] = ACTIONS(587), + [anon_sym_PIPE_AMP] = ACTIONS(587), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [sym__special_characters] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(587), + [sym_raw_string] = ACTIONS(587), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(587), + [anon_sym_LT_LPAREN] = ACTIONS(587), + [anon_sym_GT_LPAREN] = ACTIONS(587), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(587), + [sym_word] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(587), + }, + [100] = { + [sym_subscript] = STATE(345), + [sym_variable_name] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_POUND] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(591), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(595), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(591), + [anon_sym_QMARK] = ACTIONS(591), + [anon_sym_0] = ACTIONS(597), + [anon_sym__] = ACTIONS(597), + }, + [101] = { + [sym__terminated_statement] = STATE(348), + [sym_for_statement] = STATE(346), + [sym_c_style_for_statement] = STATE(346), + [sym_while_statement] = STATE(346), + [sym_if_statement] = STATE(346), + [sym_case_statement] = STATE(346), + [sym_function_definition] = STATE(346), + [sym_subshell] = STATE(346), + [sym_pipeline] = STATE(346), + [sym_list] = STATE(346), + [sym_negated_command] = STATE(346), + [sym_test_command] = STATE(346), + [sym_declaration_command] = STATE(346), + [sym_unset_command] = STATE(346), + [sym_command] = STATE(346), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(347), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(348), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [102] = { + [sym__terminated_statement] = STATE(351), + [sym_for_statement] = STATE(349), + [sym_c_style_for_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_function_definition] = STATE(349), + [sym_subshell] = STATE(349), + [sym_pipeline] = STATE(349), + [sym_list] = STATE(349), + [sym_negated_command] = STATE(349), + [sym_test_command] = STATE(349), + [sym_declaration_command] = STATE(349), + [sym_unset_command] = STATE(349), + [sym_command] = STATE(349), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(350), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(351), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [103] = { + [sym__terminated_statement] = STATE(354), + [sym_for_statement] = STATE(352), + [sym_c_style_for_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_function_definition] = STATE(352), + [sym_subshell] = STATE(352), + [sym_pipeline] = STATE(352), + [sym_list] = STATE(352), + [sym_negated_command] = STATE(352), + [sym_test_command] = STATE(352), + [sym_declaration_command] = STATE(352), + [sym_unset_command] = STATE(352), + [sym_command] = STATE(352), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(353), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(354), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [104] = { + [sym_variable_name] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_SEMI_SEMI] = ACTIONS(601), + [anon_sym_PIPE_AMP] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [sym__special_characters] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(601), + [sym_raw_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(601), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), + [anon_sym_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(601), + [anon_sym_GT_LPAREN] = ACTIONS(601), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(601), + [sym_word] = ACTIONS(601), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + }, + [105] = { + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [sym_comment] = ACTIONS(53), + }, + [106] = { + [sym_variable_assignment] = STATE(355), + [sym_subscript] = STATE(105), + [sym_concatenation] = STATE(355), + [sym_string] = STATE(99), + [sym_simple_expansion] = STATE(99), + [sym_string_expansion] = STATE(99), + [sym_expansion] = STATE(99), + [sym_command_substitution] = STATE(99), + [sym_process_substitution] = STATE(99), + [aux_sym_declaration_command_repeat1] = STATE(355), + [sym_variable_name] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_SEMI_SEMI] = ACTIONS(603), + [anon_sym_PIPE_AMP] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [sym__special_characters] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), + [anon_sym_BQUOTE] = ACTIONS(175), + [anon_sym_LT_LPAREN] = ACTIONS(177), + [anon_sym_GT_LPAREN] = ACTIONS(177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), + [sym_word] = ACTIONS(169), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(603), + }, + [107] = { + [aux_sym_concatenation_repeat1] = STATE(357), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_SEMI_SEMI] = ACTIONS(609), + [anon_sym_PIPE_AMP] = ACTIONS(609), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [sym__special_characters] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(609), + [sym_raw_string] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(609), + [anon_sym_LT_LPAREN] = ACTIONS(609), + [anon_sym_GT_LPAREN] = ACTIONS(609), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), + [sym_word] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(609), + }, + [108] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(360), + [anon_sym_DQUOTE] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(615), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [109] = { + [sym_string] = STATE(362), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [sym_raw_string] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_0] = ACTIONS(625), + [anon_sym__] = ACTIONS(625), + }, + [110] = { + [aux_sym_concatenation_repeat1] = STATE(357), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_SEMI_SEMI] = ACTIONS(627), + [anon_sym_PIPE_AMP] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [sym__special_characters] = ACTIONS(627), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(627), + [sym_raw_string] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(627), + [anon_sym_GT_LPAREN] = ACTIONS(627), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(627), + [sym_word] = ACTIONS(627), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_LF] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(627), + }, + [111] = { + [sym_subscript] = STATE(368), + [sym_variable_name] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(633), + [anon_sym_POUND] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(633), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(633), + [anon_sym_0] = ACTIONS(639), + [anon_sym__] = ACTIONS(639), + }, + [112] = { + [sym__terminated_statement] = STATE(371), + [sym_for_statement] = STATE(369), + [sym_c_style_for_statement] = STATE(369), + [sym_while_statement] = STATE(369), + [sym_if_statement] = STATE(369), + [sym_case_statement] = STATE(369), + [sym_function_definition] = STATE(369), + [sym_subshell] = STATE(369), + [sym_pipeline] = STATE(369), + [sym_list] = STATE(369), + [sym_negated_command] = STATE(369), + [sym_test_command] = STATE(369), + [sym_declaration_command] = STATE(369), + [sym_unset_command] = STATE(369), + [sym_command] = STATE(369), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(370), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(371), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [113] = { + [sym__terminated_statement] = STATE(374), + [sym_for_statement] = STATE(372), + [sym_c_style_for_statement] = STATE(372), + [sym_while_statement] = STATE(372), + [sym_if_statement] = STATE(372), + [sym_case_statement] = STATE(372), + [sym_function_definition] = STATE(372), + [sym_subshell] = STATE(372), + [sym_pipeline] = STATE(372), + [sym_list] = STATE(372), + [sym_negated_command] = STATE(372), + [sym_test_command] = STATE(372), + [sym_declaration_command] = STATE(372), + [sym_unset_command] = STATE(372), + [sym_command] = STATE(372), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(373), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(374), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [114] = { + [sym__terminated_statement] = STATE(377), + [sym_for_statement] = STATE(375), + [sym_c_style_for_statement] = STATE(375), + [sym_while_statement] = STATE(375), + [sym_if_statement] = STATE(375), + [sym_case_statement] = STATE(375), + [sym_function_definition] = STATE(375), + [sym_subshell] = STATE(375), + [sym_pipeline] = STATE(375), + [sym_list] = STATE(375), + [sym_negated_command] = STATE(375), + [sym_test_command] = STATE(375), + [sym_declaration_command] = STATE(375), + [sym_unset_command] = STATE(375), + [sym_command] = STATE(375), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(376), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(377), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [115] = { + [anon_sym_PIPE] = ACTIONS(641), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_SEMI_SEMI] = ACTIONS(641), + [anon_sym_PIPE_AMP] = ACTIONS(641), + [anon_sym_AMP_AMP] = ACTIONS(641), + [anon_sym_PIPE_PIPE] = ACTIONS(641), + [sym__special_characters] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(641), + [sym_raw_string] = ACTIONS(641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_LT_LPAREN] = ACTIONS(641), + [anon_sym_GT_LPAREN] = ACTIONS(641), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(641), + [sym_word] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(641), + [anon_sym_LF] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + }, + [116] = { + [sym_concatenation] = STATE(378), + [sym_string] = STATE(110), + [sym_simple_expansion] = STATE(110), + [sym_string_expansion] = STATE(110), + [sym_expansion] = STATE(110), + [sym_command_substitution] = STATE(110), + [sym_process_substitution] = STATE(110), + [aux_sym_unset_command_repeat1] = STATE(378), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [sym__special_characters] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), + [sym_word] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_LF] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(645), + }, + [117] = { + [aux_sym_concatenation_repeat1] = STATE(380), + [sym_file_descriptor] = ACTIONS(649), + [sym__concat] = ACTIONS(651), + [sym_variable_name] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(649), + [anon_sym_AMP_GT] = ACTIONS(653), + [anon_sym_AMP_GT_GT] = ACTIONS(649), + [anon_sym_LT_AMP] = ACTIONS(649), + [anon_sym_GT_AMP] = ACTIONS(649), + [sym__special_characters] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(653), + [sym_raw_string] = ACTIONS(649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(649), + [anon_sym_BQUOTE] = ACTIONS(649), + [anon_sym_LT_LPAREN] = ACTIONS(649), + [anon_sym_GT_LPAREN] = ACTIONS(649), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(649), + }, + [118] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(383), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(657), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [119] = { + [sym_string] = STATE(385), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(659), + [sym_raw_string] = ACTIONS(661), + [anon_sym_POUND] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_AT] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(659), + [anon_sym_0] = ACTIONS(665), + [anon_sym__] = ACTIONS(665), + }, + [120] = { + [aux_sym_concatenation_repeat1] = STATE(380), + [sym_file_descriptor] = ACTIONS(667), + [sym__concat] = ACTIONS(651), + [sym_variable_name] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(667), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(667), + [anon_sym_LT_AMP] = ACTIONS(667), + [anon_sym_GT_AMP] = ACTIONS(667), + [sym__special_characters] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [sym_raw_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(667), + [anon_sym_BQUOTE] = ACTIONS(667), + [anon_sym_LT_LPAREN] = ACTIONS(667), + [anon_sym_GT_LPAREN] = ACTIONS(667), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(667), + }, + [121] = { + [sym_subscript] = STATE(391), + [sym_variable_name] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(673), + [anon_sym_POUND] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(673), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_AT] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_0] = ACTIONS(679), + [anon_sym__] = ACTIONS(679), + }, + [122] = { + [sym__terminated_statement] = STATE(394), + [sym_for_statement] = STATE(392), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_subshell] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(394), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [123] = { + [sym__terminated_statement] = STATE(397), + [sym_for_statement] = STATE(395), + [sym_c_style_for_statement] = STATE(395), + [sym_while_statement] = STATE(395), + [sym_if_statement] = STATE(395), + [sym_case_statement] = STATE(395), + [sym_function_definition] = STATE(395), + [sym_subshell] = STATE(395), + [sym_pipeline] = STATE(395), + [sym_list] = STATE(395), + [sym_negated_command] = STATE(395), + [sym_test_command] = STATE(395), + [sym_declaration_command] = STATE(395), + [sym_unset_command] = STATE(395), + [sym_command] = STATE(395), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(396), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(397), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [124] = { + [sym__terminated_statement] = STATE(400), + [sym_for_statement] = STATE(398), + [sym_c_style_for_statement] = STATE(398), + [sym_while_statement] = STATE(398), + [sym_if_statement] = STATE(398), + [sym_case_statement] = STATE(398), + [sym_function_definition] = STATE(398), + [sym_subshell] = STATE(398), + [sym_pipeline] = STATE(398), + [sym_list] = STATE(398), + [sym_negated_command] = STATE(398), + [sym_test_command] = STATE(398), + [sym_declaration_command] = STATE(398), + [sym_unset_command] = STATE(398), + [sym_command] = STATE(398), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(399), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(400), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [125] = { + [sym_file_descriptor] = ACTIONS(667), + [sym_variable_name] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(667), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(667), + [anon_sym_LT_AMP] = ACTIONS(667), + [anon_sym_GT_AMP] = ACTIONS(667), + [sym__special_characters] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [sym_raw_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(667), + [anon_sym_BQUOTE] = ACTIONS(667), + [anon_sym_LT_LPAREN] = ACTIONS(667), + [anon_sym_GT_LPAREN] = ACTIONS(667), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(667), + }, + [126] = { + [sym_string] = STATE(401), + [sym_simple_expansion] = STATE(401), + [sym_string_expansion] = STATE(401), + [sym_expansion] = STATE(401), + [sym_command_substitution] = STATE(401), + [sym_process_substitution] = STATE(401), + [sym__special_characters] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(681), + }, + [127] = { + [aux_sym_concatenation_repeat1] = STATE(402), + [sym__simple_heredoc_body] = ACTIONS(683), + [sym__heredoc_body_beginning] = ACTIONS(683), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_EQ_TILDE] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [128] = { + [sym__simple_heredoc_body] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(687), + [sym_file_descriptor] = ACTIONS(687), + [sym__concat] = ACTIONS(687), + [anon_sym_esac] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_EQ_TILDE] = ACTIONS(689), + [anon_sym_EQ_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(689), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [anon_sym_LT_LT_LT] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), + }, + [129] = { + [anon_sym_DQUOTE] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [130] = { + [sym__concat] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(703), + [sym__string_content] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(703), + [anon_sym_BQUOTE] = ACTIONS(703), + [sym_comment] = ACTIONS(179), + }, + [131] = { + [sym_subscript] = STATE(412), + [sym_variable_name] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [anon_sym_POUND] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + }, + [132] = { + [sym__terminated_statement] = STATE(415), + [sym_for_statement] = STATE(413), + [sym_c_style_for_statement] = STATE(413), + [sym_while_statement] = STATE(413), + [sym_if_statement] = STATE(413), + [sym_case_statement] = STATE(413), + [sym_function_definition] = STATE(413), + [sym_subshell] = STATE(413), + [sym_pipeline] = STATE(413), + [sym_list] = STATE(413), + [sym_negated_command] = STATE(413), + [sym_test_command] = STATE(413), + [sym_declaration_command] = STATE(413), + [sym_unset_command] = STATE(413), + [sym_command] = STATE(413), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(414), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(415), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [133] = { + [sym__terminated_statement] = STATE(418), + [sym_for_statement] = STATE(416), + [sym_c_style_for_statement] = STATE(416), + [sym_while_statement] = STATE(416), + [sym_if_statement] = STATE(416), + [sym_case_statement] = STATE(416), + [sym_function_definition] = STATE(416), + [sym_subshell] = STATE(416), + [sym_pipeline] = STATE(416), + [sym_list] = STATE(416), + [sym_negated_command] = STATE(416), + [sym_test_command] = STATE(416), + [sym_declaration_command] = STATE(416), + [sym_unset_command] = STATE(416), + [sym_command] = STATE(416), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(417), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(418), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [134] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [135] = { + [sym__simple_heredoc_body] = ACTIONS(719), + [sym__heredoc_body_beginning] = ACTIONS(719), + [sym_file_descriptor] = ACTIONS(719), + [sym__concat] = ACTIONS(719), + [anon_sym_esac] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_EQ_TILDE] = ACTIONS(721), + [anon_sym_EQ_EQ] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(721), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [anon_sym_LT_LT] = ACTIONS(721), + [anon_sym_LT_LT_DASH] = ACTIONS(721), + [anon_sym_LT_LT_LT] = ACTIONS(721), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LT_LPAREN] = ACTIONS(721), + [anon_sym_GT_LPAREN] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), + }, + [136] = { + [sym__simple_heredoc_body] = ACTIONS(723), + [sym__heredoc_body_beginning] = ACTIONS(723), + [sym_file_descriptor] = ACTIONS(723), + [sym__concat] = ACTIONS(723), + [anon_sym_esac] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_EQ_TILDE] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_LT_LT_DASH] = ACTIONS(725), + [anon_sym_LT_LT_LT] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), + }, + [137] = { + [sym__simple_heredoc_body] = ACTIONS(727), + [sym__heredoc_body_beginning] = ACTIONS(727), + [sym_file_descriptor] = ACTIONS(727), + [sym__concat] = ACTIONS(727), + [anon_sym_esac] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_EQ_TILDE] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(729), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(729), + [anon_sym_LT_LT_DASH] = ACTIONS(729), + [anon_sym_LT_LT_LT] = ACTIONS(729), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + }, + [138] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(733), + [sym_comment] = ACTIONS(53), + }, + [139] = { + [sym_concatenation] = STATE(433), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(433), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(737), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_COLON_QMARK] = ACTIONS(737), + [anon_sym_COLON_DASH] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [140] = { + [sym_subscript] = STATE(437), + [sym_variable_name] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_AT] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(763), + [anon_sym_0] = ACTIONS(767), + [anon_sym__] = ACTIONS(767), + }, + [141] = { + [sym_concatenation] = STATE(440), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(440), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(771), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_COLON] = ACTIONS(771), + [anon_sym_COLON_QMARK] = ACTIONS(771), + [anon_sym_COLON_DASH] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [142] = { + [sym_concatenation] = STATE(443), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(443), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(779), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(781), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_COLON_QMARK] = ACTIONS(779), + [anon_sym_COLON_DASH] = ACTIONS(779), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [143] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(787), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_AMP] = ACTIONS(787), + }, + [144] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(787), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_AMP] = ACTIONS(787), + }, + [145] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(446), + [sym_c_style_for_statement] = STATE(446), + [sym_while_statement] = STATE(446), + [sym_if_statement] = STATE(446), + [sym_case_statement] = STATE(446), + [sym_function_definition] = STATE(446), + [sym_subshell] = STATE(446), + [sym_pipeline] = STATE(446), + [sym_list] = STATE(446), + [sym_negated_command] = STATE(446), + [sym_test_command] = STATE(446), + [sym_declaration_command] = STATE(446), + [sym_unset_command] = STATE(446), + [sym_command] = STATE(446), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(447), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [146] = { + [sym__terminated_statement] = STATE(448), + [sym_for_statement] = STATE(40), + [sym_c_style_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_negated_command] = STATE(40), + [sym_test_command] = STATE(40), + [sym_declaration_command] = STATE(40), + [sym_unset_command] = STATE(40), + [sym_command] = STATE(40), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(41), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -13282,58 +12482,468 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [147] = { - [sym_concatenation] = STATE(458), - [sym_string] = STATE(457), - [sym_simple_expansion] = STATE(457), - [sym_string_expansion] = STATE(457), - [sym_expansion] = STATE(457), - [sym_command_substitution] = STATE(457), - [sym_process_substitution] = STATE(457), - [sym__special_characters] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(73), - [sym_raw_string] = ACTIONS(841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), - [anon_sym_BQUOTE] = ACTIONS(81), - [anon_sym_LT_LPAREN] = ACTIONS(83), - [anon_sym_GT_LPAREN] = ACTIONS(83), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(841), + [sym_word] = ACTIONS(791), }, [148] = { + [sym_subshell] = STATE(71), + [sym_test_command] = STATE(71), + [sym_command] = STATE(71), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(843), + [sym_word] = ACTIONS(43), }, [149] = { - [sym__terminated_statement] = STATE(462), - [sym_for_statement] = STATE(460), - [sym_c_style_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_case_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_subshell] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_negated_command] = STATE(460), - [sym_test_command] = STATE(460), - [sym_declaration_command] = STATE(460), - [sym_unset_command] = STATE(460), - [sym_command] = STATE(460), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(461), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(68), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(462), - [aux_sym_command_repeat1] = STATE(68), + [sym__expression] = STATE(450), + [sym_binary_expression] = STATE(450), + [sym_unary_expression] = STATE(450), + [sym_parenthesized_expression] = STATE(450), + [sym_concatenation] = STATE(450), + [sym_string] = STATE(78), + [sym_simple_expansion] = STATE(78), + [sym_string_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [sym_process_substitution] = STATE(78), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [sym__special_characters] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(131), + [sym_test_operator] = ACTIONS(133), + }, + [150] = { + [sym__expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), + }, + [151] = { + [sym_variable_assignment] = STATE(452), + [sym_subscript] = STATE(105), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(99), + [sym_simple_expansion] = STATE(99), + [sym_string_expansion] = STATE(99), + [sym_expansion] = STATE(99), + [sym_command_substitution] = STATE(99), + [sym_process_substitution] = STATE(99), + [aux_sym_declaration_command_repeat1] = STATE(452), + [sym_variable_name] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_SEMI_SEMI] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(161), + [anon_sym_PIPE_PIPE] = ACTIONS(161), + [sym__special_characters] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), + [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_LT_LPAREN] = ACTIONS(177), + [anon_sym_GT_LPAREN] = ACTIONS(177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), + [sym_word] = ACTIONS(169), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LF] = ACTIONS(183), + [anon_sym_AMP] = ACTIONS(161), + }, + [152] = { + [sym_concatenation] = STATE(453), + [sym_string] = STATE(110), + [sym_simple_expansion] = STATE(110), + [sym_string_expansion] = STATE(110), + [sym_expansion] = STATE(110), + [sym_command_substitution] = STATE(110), + [sym_process_substitution] = STATE(110), + [aux_sym_unset_command_repeat1] = STATE(453), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [sym__special_characters] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), + [sym_word] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(205), + [anon_sym_AMP] = ACTIONS(185), + }, + [153] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(249), + [sym__heredoc_body_beginning] = ACTIONS(249), + [sym_file_descriptor] = ACTIONS(249), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_PIPE_AMP] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [anon_sym_LT_LT_LT] = ACTIONS(251), + [sym__special_characters] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LT_LPAREN] = ACTIONS(251), + [anon_sym_GT_LPAREN] = ACTIONS(251), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), + }, + [154] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(797), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(785), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(797), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(797), + }, + [155] = { + [sym_file_redirect] = STATE(461), + [sym_heredoc_redirect] = STATE(461), + [sym_heredoc_body] = STATE(175), + [sym_herestring_redirect] = STATE(461), + [sym_concatenation] = STATE(462), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_string_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [aux_sym_while_statement_repeat1] = STATE(461), + [aux_sym_command_repeat2] = STATE(462), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(297), + [anon_sym_SEMI_SEMI] = ACTIONS(297), + [anon_sym_PIPE_AMP] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_PIPE_PIPE] = ACTIONS(297), + [anon_sym_EQ_TILDE] = ACTIONS(299), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym__special_characters] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(297), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(297), + [anon_sym_LF] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(297), + }, + [156] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(797), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(785), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(797), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(797), + }, + [157] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(463), + [sym_c_style_for_statement] = STATE(463), + [sym_while_statement] = STATE(463), + [sym_if_statement] = STATE(463), + [sym_case_statement] = STATE(463), + [sym_function_definition] = STATE(463), + [sym_subshell] = STATE(463), + [sym_pipeline] = STATE(463), + [sym_list] = STATE(463), + [sym_negated_command] = STATE(463), + [sym_test_command] = STATE(463), + [sym_declaration_command] = STATE(463), + [sym_unset_command] = STATE(463), + [sym_command] = STATE(463), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(464), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [158] = { + [sym_command_name] = STATE(465), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(180), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(43), + }, + [159] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(811), + }, + [160] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(811), + }, + [161] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(468), + [sym_c_style_for_statement] = STATE(468), + [sym_while_statement] = STATE(468), + [sym_if_statement] = STATE(468), + [sym_case_statement] = STATE(468), + [sym_function_definition] = STATE(468), + [sym_subshell] = STATE(468), + [sym_pipeline] = STATE(468), + [sym_list] = STATE(468), + [sym_negated_command] = STATE(468), + [sym_test_command] = STATE(468), + [sym_declaration_command] = STATE(468), + [sym_unset_command] = STATE(468), + [sym_command] = STATE(468), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(469), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), @@ -13371,27 +12981,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [150] = { - [sym_subshell] = STATE(463), - [sym_test_command] = STATE(463), - [sym_command] = STATE(463), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(169), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), + [162] = { + [anon_sym_RPAREN] = ACTIONS(815), + [sym_comment] = ACTIONS(53), + }, + [163] = { + [sym_for_statement] = STATE(471), + [sym_c_style_for_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_case_statement] = STATE(471), + [sym_function_definition] = STATE(471), + [sym_subshell] = STATE(471), + [sym_pipeline] = STATE(471), + [sym_list] = STATE(471), + [sym_negated_command] = STATE(471), + [sym_test_command] = STATE(471), + [sym_declaration_command] = STATE(471), + [sym_unset_command] = STATE(471), + [sym_command] = STATE(471), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(472), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -13399,286 +13037,830 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(293), + [sym_word] = ACTIONS(55), }, - [151] = { - [sym__expression] = STATE(464), - [sym_binary_expression] = STATE(464), - [sym_unary_expression] = STATE(464), - [sym_parenthesized_expression] = STATE(464), - [sym_concatenation] = STATE(464), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(113), - [sym__special_characters] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), + [164] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_done] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_fi] = ACTIONS(819), + [anon_sym_elif] = ACTIONS(819), + [anon_sym_else] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(131), - [sym_test_operator] = ACTIONS(133), + [sym_word] = ACTIONS(819), }, - [152] = { - [sym__expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_concatenation] = STATE(465), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(137), - [sym__special_characters] = ACTIONS(139), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), + [165] = { + [sym_for_statement] = STATE(473), + [sym_c_style_for_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_case_statement] = STATE(473), + [sym_function_definition] = STATE(473), + [sym_subshell] = STATE(473), + [sym_pipeline] = STATE(473), + [sym_list] = STATE(473), + [sym_negated_command] = STATE(473), + [sym_test_command] = STATE(473), + [sym_declaration_command] = STATE(473), + [sym_unset_command] = STATE(473), + [sym_command] = STATE(473), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(474), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(155), - [sym_test_operator] = ACTIONS(157), + [sym_word] = ACTIONS(55), }, - [153] = { - [sym_variable_assignment] = STATE(476), - [sym_subscript] = STATE(477), - [sym_concatenation] = STATE(476), - [sym_string] = STATE(470), - [sym_simple_expansion] = STATE(470), - [sym_string_expansion] = STATE(470), - [sym_expansion] = STATE(470), - [sym_command_substitution] = STATE(470), - [sym_process_substitution] = STATE(470), - [aux_sym_declaration_command_repeat1] = STATE(478), - [sym_variable_name] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(847), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(853), + [166] = { + [anon_sym_esac] = ACTIONS(821), + [anon_sym_PIPE] = ACTIONS(821), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(821), + [anon_sym_LF] = ACTIONS(823), + [anon_sym_AMP] = ACTIONS(821), + }, + [167] = { + [sym_simple_expansion] = STATE(478), + [sym_expansion] = STATE(478), + [aux_sym_heredoc_body_repeat1] = STATE(478), + [sym__heredoc_body_middle] = ACTIONS(825), + [sym__heredoc_body_end] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(831), + [sym_comment] = ACTIONS(53), + }, + [168] = { + [anon_sym_LT] = ACTIONS(833), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_AMP_GT] = ACTIONS(833), + [anon_sym_AMP_GT_GT] = ACTIONS(835), + [anon_sym_LT_AMP] = ACTIONS(835), + [anon_sym_GT_AMP] = ACTIONS(835), + [sym_comment] = ACTIONS(53), + }, + [169] = { + [sym_concatenation] = STATE(482), + [sym_string] = STATE(481), + [sym_simple_expansion] = STATE(481), + [sym_string_expansion] = STATE(481), + [sym_expansion] = STATE(481), + [sym_command_substitution] = STATE(481), + [sym_process_substitution] = STATE(481), + [sym__special_characters] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(839), + [sym_regex] = ACTIONS(841), + }, + [170] = { + [sym_concatenation] = STATE(485), + [sym_string] = STATE(484), + [sym_simple_expansion] = STATE(484), + [sym_string_expansion] = STATE(484), + [sym_expansion] = STATE(484), + [sym_command_substitution] = STATE(484), + [sym_process_substitution] = STATE(484), + [sym__special_characters] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(845), + }, + [171] = { + [sym_heredoc_start] = ACTIONS(847), + [sym_comment] = ACTIONS(53), + }, + [172] = { + [sym_concatenation] = STATE(489), + [sym_string] = STATE(488), + [sym_simple_expansion] = STATE(488), + [sym_string_expansion] = STATE(488), + [sym_expansion] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(851), + }, + [173] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(853), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(853), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(855), + [anon_sym_PIPE_AMP] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(855), + [anon_sym_LT_AMP] = ACTIONS(855), + [anon_sym_GT_AMP] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_LT_LT_DASH] = ACTIONS(855), + [anon_sym_LT_LT_LT] = ACTIONS(855), + [sym__special_characters] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(855), [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(855), + [anon_sym_BQUOTE] = ACTIONS(855), + [anon_sym_LT_LPAREN] = ACTIONS(855), + [anon_sym_GT_LPAREN] = ACTIONS(855), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), + }, + [174] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(857), + [sym__heredoc_body_beginning] = ACTIONS(857), + [sym_file_descriptor] = ACTIONS(857), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_SEMI_SEMI] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_EQ_TILDE] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_AMP_GT] = ACTIONS(859), + [anon_sym_AMP_GT_GT] = ACTIONS(859), + [anon_sym_LT_AMP] = ACTIONS(859), + [anon_sym_GT_AMP] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_LT_LT_DASH] = ACTIONS(859), + [anon_sym_LT_LT_LT] = ACTIONS(859), + [sym__special_characters] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [sym_raw_string] = ACTIONS(859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), [anon_sym_BQUOTE] = ACTIONS(859), - [anon_sym_LT_LPAREN] = ACTIONS(861), - [anon_sym_GT_LPAREN] = ACTIONS(861), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(863), - [sym_word] = ACTIONS(865), + [anon_sym_LT_LPAREN] = ACTIONS(859), + [anon_sym_GT_LPAREN] = ACTIONS(859), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(859), }, - [154] = { - [sym_concatenation] = STATE(488), - [sym_string] = STATE(482), - [sym_simple_expansion] = STATE(482), - [sym_string_expansion] = STATE(482), - [sym_expansion] = STATE(482), - [sym_command_substitution] = STATE(482), - [sym_process_substitution] = STATE(482), - [aux_sym_unset_command_repeat1] = STATE(488), - [anon_sym_PIPE] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(205), - [anon_sym_PIPE_AMP] = ACTIONS(205), - [anon_sym_AMP_AMP] = ACTIONS(205), - [anon_sym_PIPE_PIPE] = ACTIONS(205), - [sym__special_characters] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(871), - [sym_raw_string] = ACTIONS(873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LT_LPAREN] = ACTIONS(881), - [anon_sym_GT_LPAREN] = ACTIONS(881), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(883), - [sym_word] = ACTIONS(885), + [175] = { + [anon_sym_esac] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_BQUOTE] = ACTIONS(861), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), }, - [155] = { - [aux_sym_concatenation_repeat1] = STATE(490), - [sym__simple_heredoc_body] = ACTIONS(223), - [sym__heredoc_body_beginning] = ACTIONS(223), - [sym_file_descriptor] = ACTIONS(223), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(227), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_PIPE_AMP] = ACTIONS(223), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [anon_sym_EQ_TILDE] = ACTIONS(227), - [anon_sym_EQ_EQ] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_GT] = ACTIONS(227), - [anon_sym_GT_GT] = ACTIONS(223), - [anon_sym_AMP_GT] = ACTIONS(227), - [anon_sym_AMP_GT_GT] = ACTIONS(223), - [anon_sym_LT_AMP] = ACTIONS(223), - [anon_sym_GT_AMP] = ACTIONS(223), - [anon_sym_LT_LT] = ACTIONS(227), - [anon_sym_LT_LT_DASH] = ACTIONS(223), - [anon_sym_LT_LT_LT] = ACTIONS(223), - [sym__special_characters] = ACTIONS(223), - [anon_sym_DQUOTE] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(227), - [sym_raw_string] = ACTIONS(223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(227), + [176] = { + [sym_file_redirect] = STATE(491), + [sym_heredoc_redirect] = STATE(491), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(491), + [aux_sym_while_statement_repeat1] = STATE(491), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_AMP_GT] = ACTIONS(301), + [anon_sym_AMP_GT_GT] = ACTIONS(301), + [anon_sym_LT_AMP] = ACTIONS(301), + [anon_sym_GT_AMP] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(305), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), }, - [156] = { + [177] = { + [sym_file_redirect] = STATE(492), + [sym_heredoc_redirect] = STATE(492), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(492), + [sym_concatenation] = STATE(493), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_string_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [aux_sym_while_statement_repeat1] = STATE(492), + [aux_sym_command_repeat2] = STATE(493), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(299), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_AMP_GT] = ACTIONS(301), + [anon_sym_AMP_GT_GT] = ACTIONS(301), + [anon_sym_LT_AMP] = ACTIONS(301), + [anon_sym_GT_AMP] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(305), + [sym__special_characters] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), + }, + [178] = { + [sym__terminated_statement] = STATE(178), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(178), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(865), + [sym_variable_name] = ACTIONS(868), + [ts_builtin_sym_end] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(876), + [anon_sym_if] = ACTIONS(879), + [anon_sym_case] = ACTIONS(882), + [anon_sym_function] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_typeset] = ACTIONS(900), + [anon_sym_export] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_local] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_AMP_GT] = ACTIONS(906), + [anon_sym_AMP_GT_GT] = ACTIONS(909), + [anon_sym_LT_AMP] = ACTIONS(909), + [anon_sym_GT_AMP] = ACTIONS(909), + [sym__special_characters] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(918), + [sym_raw_string] = ACTIONS(921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(930), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(936), + }, + [179] = { + [sym_file_redirect] = STATE(492), + [sym_heredoc_redirect] = STATE(492), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(492), + [sym_concatenation] = STATE(494), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_string_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [aux_sym_while_statement_repeat1] = STATE(492), + [aux_sym_command_repeat2] = STATE(494), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(299), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_AMP_GT] = ACTIONS(301), + [anon_sym_AMP_GT_GT] = ACTIONS(301), + [anon_sym_LT_AMP] = ACTIONS(301), + [anon_sym_GT_AMP] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(305), + [sym__special_characters] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), + }, + [180] = { + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [aux_sym_command_repeat1] = STATE(180), + [sym_file_descriptor] = ACTIONS(939), + [sym_variable_name] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(948), + [anon_sym_AMP_GT] = ACTIONS(945), + [anon_sym_AMP_GT_GT] = ACTIONS(948), + [anon_sym_LT_AMP] = ACTIONS(948), + [anon_sym_GT_AMP] = ACTIONS(948), + [sym__special_characters] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_raw_string] = ACTIONS(951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [anon_sym_LT_LPAREN] = ACTIONS(951), + [anon_sym_GT_LPAREN] = ACTIONS(951), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(951), + }, + [181] = { + [aux_sym_concatenation_repeat1] = STATE(380), + [sym_file_descriptor] = ACTIONS(955), + [sym__concat] = ACTIONS(651), + [sym_variable_name] = ACTIONS(955), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(955), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(955), + [anon_sym_LT_AMP] = ACTIONS(955), + [anon_sym_GT_AMP] = ACTIONS(955), + [sym__special_characters] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [anon_sym_DOLLAR] = ACTIONS(957), + [sym_raw_string] = ACTIONS(955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(955), + [anon_sym_BQUOTE] = ACTIONS(955), + [anon_sym_LT_LPAREN] = ACTIONS(955), + [anon_sym_GT_LPAREN] = ACTIONS(955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(955), + }, + [182] = { + [aux_sym_concatenation_repeat1] = STATE(380), + [sym_file_descriptor] = ACTIONS(959), + [sym__concat] = ACTIONS(651), + [sym_variable_name] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [sym__special_characters] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(961), + [sym_raw_string] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(959), + }, + [183] = { + [sym_file_descriptor] = ACTIONS(959), + [sym_variable_name] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [sym__special_characters] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(961), + [sym_raw_string] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(959), + }, + [184] = { + [aux_sym_concatenation_repeat1] = STATE(497), + [sym__concat] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(965), + [sym_comment] = ACTIONS(53), + }, + [185] = { + [aux_sym_concatenation_repeat1] = STATE(497), + [sym__concat] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(969), + [sym_comment] = ACTIONS(53), + }, + [186] = { + [sym__concat] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(969), + [sym_comment] = ACTIONS(53), + }, + [187] = { + [sym_file_descriptor] = ACTIONS(973), + [sym_variable_name] = ACTIONS(973), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + }, + [188] = { + [sym_concatenation] = STATE(510), + [sym_string] = STATE(505), + [sym_simple_expansion] = STATE(505), + [sym_string_expansion] = STATE(505), + [sym_expansion] = STATE(505), + [sym_command_substitution] = STATE(505), + [sym_process_substitution] = STATE(505), + [aux_sym_for_statement_repeat1] = STATE(510), + [anon_sym_RPAREN] = ACTIONS(977), + [sym__special_characters] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LT_LPAREN] = ACTIONS(993), + [anon_sym_GT_LPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(985), + }, + [189] = { + [aux_sym_concatenation_repeat1] = STATE(512), + [sym_file_descriptor] = ACTIONS(995), + [sym__concat] = ACTIONS(997), + [sym_variable_name] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_SEMI_SEMI] = ACTIONS(999), + [anon_sym_PIPE_AMP] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(999), + [anon_sym_LT_AMP] = ACTIONS(999), + [anon_sym_GT_AMP] = ACTIONS(999), + [sym__special_characters] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [sym_raw_string] = ACTIONS(999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(999), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(999), + [anon_sym_BQUOTE] = ACTIONS(999), + [anon_sym_LT_LPAREN] = ACTIONS(999), + [anon_sym_GT_LPAREN] = ACTIONS(999), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LF] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(999), + }, + [190] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(493), - [anon_sym_DQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(891), + [aux_sym_string_repeat1] = STATE(515), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1003), [sym__string_content] = ACTIONS(233), [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), }, - [157] = { - [sym_string] = STATE(495), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(893), - [sym_raw_string] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), + [191] = { + [sym_string] = STATE(517), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(1005), + [sym_raw_string] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_AT] = ACTIONS(893), - [anon_sym_QMARK] = ACTIONS(893), - [anon_sym_0] = ACTIONS(899), - [anon_sym__] = ACTIONS(899), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_0] = ACTIONS(1011), + [anon_sym__] = ACTIONS(1011), }, - [158] = { - [aux_sym_concatenation_repeat1] = STATE(490), - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(251), - }, - [159] = { - [sym_subscript] = STATE(501), - [sym_variable_name] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(903), + [192] = { + [aux_sym_concatenation_repeat1] = STATE(512), + [sym_file_descriptor] = ACTIONS(973), + [sym__concat] = ACTIONS(997), + [sym_variable_name] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_0] = ACTIONS(909), - [anon_sym__] = ACTIONS(909), + [sym_word] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), }, - [160] = { - [sym_for_statement] = STATE(502), - [sym_c_style_for_statement] = STATE(502), - [sym_while_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_case_statement] = STATE(502), - [sym_function_definition] = STATE(502), - [sym_subshell] = STATE(502), - [sym_pipeline] = STATE(502), - [sym_list] = STATE(502), - [sym_negated_command] = STATE(502), - [sym_test_command] = STATE(502), - [sym_declaration_command] = STATE(502), - [sym_unset_command] = STATE(502), - [sym_command] = STATE(502), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(503), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), + [193] = { + [sym_subscript] = STATE(523), + [sym_variable_name] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1015), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_0] = ACTIONS(1021), + [anon_sym__] = ACTIONS(1021), + }, + [194] = { + [sym__terminated_statement] = STATE(526), + [sym_for_statement] = STATE(524), + [sym_c_style_for_statement] = STATE(524), + [sym_while_statement] = STATE(524), + [sym_if_statement] = STATE(524), + [sym_case_statement] = STATE(524), + [sym_function_definition] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(526), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -13686,387 +13868,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_word] = ACTIONS(107), }, - [161] = { - [sym_for_statement] = STATE(504), - [sym_c_style_for_statement] = STATE(504), - [sym_while_statement] = STATE(504), - [sym_if_statement] = STATE(504), - [sym_case_statement] = STATE(504), - [sym_function_definition] = STATE(504), - [sym_subshell] = STATE(504), - [sym_pipeline] = STATE(504), - [sym_list] = STATE(504), - [sym_negated_command] = STATE(504), - [sym_test_command] = STATE(504), - [sym_declaration_command] = STATE(504), - [sym_unset_command] = STATE(504), - [sym_command] = STATE(504), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(505), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [162] = { - [sym_for_statement] = STATE(506), - [sym_c_style_for_statement] = STATE(506), - [sym_while_statement] = STATE(506), - [sym_if_statement] = STATE(506), - [sym_case_statement] = STATE(506), - [sym_function_definition] = STATE(506), - [sym_subshell] = STATE(506), - [sym_pipeline] = STATE(506), - [sym_list] = STATE(506), - [sym_negated_command] = STATE(506), - [sym_test_command] = STATE(506), - [sym_declaration_command] = STATE(506), - [sym_unset_command] = STATE(506), - [sym_command] = STATE(506), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(507), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [163] = { - [aux_sym_concatenation_repeat1] = STATE(490), - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(251), - }, - [164] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [165] = { - [sym_file_redirect] = STATE(523), - [sym_heredoc_redirect] = STATE(523), - [sym_heredoc_body] = STATE(521), - [sym_herestring_redirect] = STATE(523), - [sym_concatenation] = STATE(522), - [sym_string] = STATE(520), - [sym_simple_expansion] = STATE(520), - [sym_string_expansion] = STATE(520), - [sym_expansion] = STATE(520), - [sym_command_substitution] = STATE(520), - [sym_process_substitution] = STATE(520), - [aux_sym_while_statement_repeat1] = STATE(523), - [aux_sym_command_repeat2] = STATE(524), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_PIPE_AMP] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(937), - [sym__special_characters] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(943), - }, - [166] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [167] = { - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [sym_comment] = ACTIONS(53), - }, - [168] = { - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(251), - }, - [169] = { - [sym_command_name] = STATE(525), - [sym_variable_assignment] = STATE(207), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(207), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(207), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(293), - }, - [170] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [sym_comment] = ACTIONS(53), - }, - [171] = { - [sym__terminated_statement] = STATE(527), - [sym_for_statement] = STATE(39), - [sym_c_style_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), + [195] = { + [sym__terminated_statement] = STATE(529), + [sym_for_statement] = STATE(527), + [sym_c_style_for_statement] = STATE(527), + [sym_while_statement] = STATE(527), + [sym_if_statement] = STATE(527), + [sym_case_statement] = STATE(527), + [sym_function_definition] = STATE(527), + [sym_subshell] = STATE(527), + [sym_pipeline] = STATE(527), + [sym_list] = STATE(527), + [sym_negated_command] = STATE(527), + [sym_test_command] = STATE(527), + [sym_declaration_command] = STATE(527), + [sym_unset_command] = STATE(527), + [sym_command] = STATE(527), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(528), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(529), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), + [anon_sym_while] = ACTIONS(263), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), + [anon_sym_function] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -14084,33 +13944,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(277), }, - [172] = { - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(949), - }, - [173] = { - [sym_subshell] = STATE(463), - [sym_test_command] = STATE(463), - [sym_command] = STATE(463), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(185), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), + [196] = { + [sym__terminated_statement] = STATE(532), + [sym_for_statement] = STATE(530), + [sym_c_style_for_statement] = STATE(530), + [sym_while_statement] = STATE(530), + [sym_if_statement] = STATE(530), + [sym_case_statement] = STATE(530), + [sym_function_definition] = STATE(530), + [sym_subshell] = STATE(530), + [sym_pipeline] = STATE(530), + [sym_list] = STATE(530), + [sym_negated_command] = STATE(530), + [sym_test_command] = STATE(530), + [sym_declaration_command] = STATE(530), + [sym_unset_command] = STATE(530), + [sym_command] = STATE(530), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(531), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(532), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -14118,329 +14000,228 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(107), }, - [174] = { - [sym__expression] = STATE(529), - [sym_binary_expression] = STATE(529), - [sym_unary_expression] = STATE(529), - [sym_parenthesized_expression] = STATE(529), - [sym_concatenation] = STATE(529), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(113), - [sym__special_characters] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(131), - [sym_test_operator] = ACTIONS(133), + [197] = { + [sym__expression] = STATE(534), + [sym_binary_expression] = STATE(534), + [sym_unary_expression] = STATE(534), + [sym_parenthesized_expression] = STATE(534), + [sym_concatenation] = STATE(534), + [sym_string] = STATE(203), + [sym_simple_expansion] = STATE(203), + [sym_string_expansion] = STATE(203), + [sym_expansion] = STATE(203), + [sym_command_substitution] = STATE(203), + [sym_process_substitution] = STATE(203), + [anon_sym_SEMI_SEMI] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(363), + [sym__special_characters] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(371), + [sym_test_operator] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_LF] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(1023), }, - [175] = { - [sym__expression] = STATE(530), - [sym_binary_expression] = STATE(530), - [sym_unary_expression] = STATE(530), - [sym_parenthesized_expression] = STATE(530), - [sym_concatenation] = STATE(530), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), + [198] = { + [sym__expression] = STATE(535), + [sym_binary_expression] = STATE(535), + [sym_unary_expression] = STATE(535), + [sym_parenthesized_expression] = STATE(535), + [sym_concatenation] = STATE(535), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(137), - [sym__special_characters] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(145), + [sym_raw_string] = ACTIONS(487), [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_LT_LPAREN] = ACTIONS(153), [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(155), - [sym_test_operator] = ACTIONS(157), + [sym_word] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), }, - [176] = { - [sym_variable_assignment] = STATE(476), - [sym_subscript] = STATE(534), - [sym_concatenation] = STATE(476), - [sym_string] = STATE(533), - [sym_simple_expansion] = STATE(533), - [sym_string_expansion] = STATE(533), - [sym_expansion] = STATE(533), - [sym_command_substitution] = STATE(533), - [sym_process_substitution] = STATE(533), - [aux_sym_declaration_command_repeat1] = STATE(535), - [sym_variable_name] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(161), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(955), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), - [anon_sym_BQUOTE] = ACTIONS(183), - [anon_sym_LT_LPAREN] = ACTIONS(861), - [anon_sym_GT_LPAREN] = ACTIONS(861), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(863), - [sym_word] = ACTIONS(957), - }, - [177] = { - [sym_concatenation] = STATE(538), - [sym_string] = STATE(537), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), - [sym_process_substitution] = STATE(537), - [aux_sym_unset_command_repeat1] = STATE(538), - [anon_sym_PIPE] = ACTIONS(185), - [anon_sym_PIPE_AMP] = ACTIONS(205), - [anon_sym_AMP_AMP] = ACTIONS(205), - [anon_sym_PIPE_PIPE] = ACTIONS(205), - [sym__special_characters] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(871), - [sym_raw_string] = ACTIONS(961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(205), - [anon_sym_LT_LPAREN] = ACTIONS(881), - [anon_sym_GT_LPAREN] = ACTIONS(881), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(883), - [sym_word] = ACTIONS(963), - }, - [178] = { - [aux_sym_concatenation_repeat1] = STATE(539), - [sym__simple_heredoc_body] = ACTIONS(223), - [sym__heredoc_body_beginning] = ACTIONS(223), - [sym_file_descriptor] = ACTIONS(223), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(227), - [anon_sym_PIPE_AMP] = ACTIONS(223), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [anon_sym_EQ_TILDE] = ACTIONS(227), - [anon_sym_EQ_EQ] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(227), - [anon_sym_GT] = ACTIONS(227), - [anon_sym_GT_GT] = ACTIONS(223), - [anon_sym_AMP_GT] = ACTIONS(227), - [anon_sym_AMP_GT_GT] = ACTIONS(223), - [anon_sym_LT_AMP] = ACTIONS(223), - [anon_sym_GT_AMP] = ACTIONS(223), - [anon_sym_LT_LT] = ACTIONS(227), - [anon_sym_LT_LT_DASH] = ACTIONS(223), - [anon_sym_LT_LT_LT] = ACTIONS(223), - [sym__special_characters] = ACTIONS(223), - [anon_sym_DQUOTE] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(227), - [sym_raw_string] = ACTIONS(223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(227), - }, - [179] = { - [aux_sym_concatenation_repeat1] = STATE(539), - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(251), - }, - [180] = { - [aux_sym_concatenation_repeat1] = STATE(539), - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_PIPE_AMP] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [anon_sym_LT_LT_LT] = ACTIONS(249), - [sym__special_characters] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_BQUOTE] = ACTIONS(249), - [anon_sym_LT_LPAREN] = ACTIONS(249), - [anon_sym_GT_LPAREN] = ACTIONS(249), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(251), - }, - [181] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(915), - [sym_comment] = ACTIONS(53), - }, - [182] = { - [sym_file_redirect] = STATE(549), - [sym_heredoc_redirect] = STATE(549), - [sym_heredoc_body] = STATE(521), - [sym_herestring_redirect] = STATE(549), - [sym_concatenation] = STATE(522), - [sym_string] = STATE(548), - [sym_simple_expansion] = STATE(548), - [sym_string_expansion] = STATE(548), - [sym_expansion] = STATE(548), - [sym_command_substitution] = STATE(548), - [sym_process_substitution] = STATE(548), - [aux_sym_while_statement_repeat1] = STATE(549), - [aux_sym_command_repeat2] = STATE(550), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(977), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [sym__special_characters] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(987), - }, - [183] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(915), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), + [199] = { + [sym__expression] = STATE(536), + [sym_binary_expression] = STATE(536), + [sym_unary_expression] = STATE(536), + [sym_parenthesized_expression] = STATE(536), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(203), + [sym_simple_expansion] = STATE(203), + [sym_string_expansion] = STATE(203), + [sym_expansion] = STATE(203), + [sym_command_substitution] = STATE(203), + [sym_process_substitution] = STATE(203), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(363), + [sym__special_characters] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [anon_sym_GT_LPAREN] = ACTIONS(1041), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(371), + [sym_test_operator] = ACTIONS(1043), }, - [184] = { - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [sym_comment] = ACTIONS(53), + [200] = { + [aux_sym_concatenation_repeat1] = STATE(538), + [sym__concat] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(497), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_EQ_TILDE] = ACTIONS(497), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_LF] = ACTIONS(495), + [anon_sym_AMP] = ACTIONS(497), }, - [185] = { - [sym_command_name] = STATE(551), - [sym_variable_assignment] = STATE(207), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(207), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(207), + [201] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(541), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1049), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [202] = { + [sym_string] = STATE(543), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1051), + [sym_raw_string] = ACTIONS(1053), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_QMARK] = ACTIONS(1051), + [anon_sym_0] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1057), + }, + [203] = { + [aux_sym_concatenation_repeat1] = STATE(538), + [sym__concat] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_AMP] = ACTIONS(513), + }, + [204] = { + [sym_subscript] = STATE(549), + [sym_variable_name] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1061), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_0] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1067), + }, + [205] = { + [sym__terminated_statement] = STATE(552), + [sym_for_statement] = STATE(550), + [sym_c_style_for_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_function_definition] = STATE(550), + [sym_subshell] = STATE(550), + [sym_pipeline] = STATE(550), + [sym_list] = STATE(550), + [sym_negated_command] = STATE(550), + [sym_test_command] = STATE(550), + [sym_declaration_command] = STATE(550), + [sym_unset_command] = STATE(550), + [sym_command] = STATE(550), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(551), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(552), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -14448,102 +14229,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(107), }, - [186] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [187] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [188] = { - [anon_sym_RPAREN] = ACTIONS(993), - [sym_comment] = ACTIONS(53), - }, - [189] = { - [sym_for_statement] = STATE(554), - [sym_c_style_for_statement] = STATE(554), - [sym_while_statement] = STATE(554), - [sym_if_statement] = STATE(554), - [sym_case_statement] = STATE(554), - [sym_function_definition] = STATE(554), - [sym_subshell] = STATE(554), - [sym_pipeline] = STATE(554), - [sym_list] = STATE(554), - [sym_negated_command] = STATE(554), - [sym_test_command] = STATE(554), - [sym_declaration_command] = STATE(554), - [sym_unset_command] = STATE(554), - [sym_command] = STATE(554), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(555), + [206] = { + [sym__terminated_statement] = STATE(555), + [sym_for_statement] = STATE(553), + [sym_c_style_for_statement] = STATE(553), + [sym_while_statement] = STATE(553), + [sym_if_statement] = STATE(553), + [sym_case_statement] = STATE(553), + [sym_function_definition] = STATE(553), + [sym_subshell] = STATE(553), + [sym_pipeline] = STATE(553), + [sym_list] = STATE(553), + [sym_negated_command] = STATE(553), + [sym_test_command] = STATE(553), + [sym_declaration_command] = STATE(553), + [sym_unset_command] = STATE(553), + [sym_command] = STATE(553), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(554), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(555), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), + [anon_sym_while] = ACTIONS(263), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), + [anon_sym_function] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -14561,54 +14305,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(277), }, - [190] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [ts_builtin_sym_end] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_done] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_fi] = ACTIONS(997), - [anon_sym_elif] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_esac] = ACTIONS(997), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(997), - [sym_raw_string] = ACTIONS(995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), - [anon_sym_BQUOTE] = ACTIONS(995), - [anon_sym_LT_LPAREN] = ACTIONS(995), - [anon_sym_GT_LPAREN] = ACTIONS(995), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(997), - }, - [191] = { + [207] = { + [sym__terminated_statement] = STATE(558), [sym_for_statement] = STATE(556), [sym_c_style_for_statement] = STATE(556), [sym_while_statement] = STATE(556), @@ -14623,22 +14323,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(556), [sym_unset_command] = STATE(556), [sym_command] = STATE(556), - [sym_command_name] = STATE(27), + [sym_command_name] = STATE(65), [sym_variable_assignment] = STATE(557), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(558), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [208] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1069), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_EQ_TILDE] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1073), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_LF] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1069), + }, + [209] = { + [sym_concatenation] = STATE(564), + [sym_string] = STATE(563), + [sym_simple_expansion] = STATE(563), + [sym_string_expansion] = STATE(563), + [sym_expansion] = STATE(563), + [sym_command_substitution] = STATE(563), + [sym_process_substitution] = STATE(563), + [aux_sym_for_statement_repeat1] = STATE(564), + [sym__special_characters] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(81), + [anon_sym_LT_LPAREN] = ACTIONS(83), + [anon_sym_GT_LPAREN] = ACTIONS(83), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1079), + }, + [210] = { + [sym_do_group] = STATE(566), + [anon_sym_do] = ACTIONS(1081), + [sym_comment] = ACTIONS(53), + }, + [211] = { + [sym__terminated_statement] = STATE(568), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(568), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(1083), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), @@ -14672,315 +14482,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [192] = { - [anon_sym_esac] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_SEMI_SEMI] = ACTIONS(999), - [anon_sym_PIPE_AMP] = ACTIONS(999), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), + [212] = { + [sym_file_redirect] = STATE(570), + [sym_heredoc_redirect] = STATE(570), + [sym_heredoc_body] = STATE(569), + [sym_herestring_redirect] = STATE(570), + [aux_sym_while_statement_repeat1] = STATE(570), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_AMP_GT] = ACTIONS(301), + [anon_sym_AMP_GT_GT] = ACTIONS(301), + [anon_sym_LT_AMP] = ACTIONS(301), + [anon_sym_GT_AMP] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(305), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1085), }, - [193] = { - [sym_simple_expansion] = STATE(561), - [sym_expansion] = STATE(561), - [aux_sym_heredoc_body_repeat1] = STATE(561), - [sym__heredoc_body_middle] = ACTIONS(1003), - [sym__heredoc_body_end] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), + [213] = { + [anon_sym_do] = ACTIONS(817), + [anon_sym_then] = ACTIONS(817), [sym_comment] = ACTIONS(53), }, - [194] = { - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1011), - [anon_sym_GT_GT] = ACTIONS(1013), - [anon_sym_AMP_GT] = ACTIONS(1011), - [anon_sym_AMP_GT_GT] = ACTIONS(1013), - [anon_sym_LT_AMP] = ACTIONS(1013), - [anon_sym_GT_AMP] = ACTIONS(1013), - [sym_comment] = ACTIONS(53), - }, - [195] = { - [sym_concatenation] = STATE(565), - [sym_string] = STATE(564), - [sym_simple_expansion] = STATE(564), - [sym_string_expansion] = STATE(564), - [sym_expansion] = STATE(564), - [sym_command_substitution] = STATE(564), - [sym_process_substitution] = STATE(564), - [sym__special_characters] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1017), - [sym_regex] = ACTIONS(1019), - }, - [196] = { - [sym_concatenation] = STATE(568), - [sym_string] = STATE(567), - [sym_simple_expansion] = STATE(567), - [sym_string_expansion] = STATE(567), - [sym_expansion] = STATE(567), - [sym_command_substitution] = STATE(567), - [sym_process_substitution] = STATE(567), - [sym__special_characters] = ACTIONS(1021), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1023), - }, - [197] = { - [sym_heredoc_start] = ACTIONS(1025), - [sym_comment] = ACTIONS(53), - }, - [198] = { - [sym_concatenation] = STATE(572), - [sym_string] = STATE(571), - [sym_simple_expansion] = STATE(571), - [sym_string_expansion] = STATE(571), - [sym_expansion] = STATE(571), - [sym_command_substitution] = STATE(571), - [sym_process_substitution] = STATE(571), - [sym__special_characters] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1029), - }, - [199] = { - [aux_sym_concatenation_repeat1] = STATE(127), - [sym__simple_heredoc_body] = ACTIONS(1031), - [sym__heredoc_body_beginning] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1031), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [sym__special_characters] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_AMP] = ACTIONS(1033), - }, - [200] = { - [aux_sym_concatenation_repeat1] = STATE(127), - [sym__simple_heredoc_body] = ACTIONS(1035), - [sym__heredoc_body_beginning] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_EQ_TILDE] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [sym__special_characters] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1037), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - }, - [201] = { - [anon_sym_esac] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), - }, - [202] = { - [sym__simple_heredoc_body] = ACTIONS(1035), - [sym__heredoc_body_beginning] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_esac] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_EQ_TILDE] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [sym__special_characters] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1037), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - }, - [203] = { - [sym_file_redirect] = STATE(574), - [sym_heredoc_redirect] = STATE(574), - [sym_heredoc_body] = STATE(573), - [sym_herestring_redirect] = STATE(574), - [aux_sym_while_statement_repeat1] = STATE(574), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(349), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), - }, - [204] = { - [sym_file_redirect] = STATE(575), - [sym_heredoc_redirect] = STATE(575), - [sym_heredoc_body] = STATE(573), - [sym_herestring_redirect] = STATE(575), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(200), - [sym_simple_expansion] = STATE(200), - [sym_string_expansion] = STATE(200), - [sym_expansion] = STATE(200), - [sym_command_substitution] = STATE(200), - [sym_process_substitution] = STATE(200), - [aux_sym_while_statement_repeat1] = STATE(575), - [aux_sym_command_repeat2] = STATE(576), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_EQ_TILDE] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(349), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [sym__special_characters] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), - }, - [205] = { - [sym__terminated_statement] = STATE(205), + [214] = { + [sym__terminated_statement] = STATE(576), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(574), + [sym_else_clause] = STATE(575), [sym_case_statement] = STATE(26), [sym_function_definition] = STATE(26), [sym_subshell] = STATE(26), @@ -14994,421 +14537,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(205), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(1043), - [sym_variable_name] = ACTIONS(1046), - [ts_builtin_sym_end] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), - [anon_sym_declare] = ACTIONS(1078), - [anon_sym_typeset] = ACTIONS(1078), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_readonly] = ACTIONS(1078), - [anon_sym_local] = ACTIONS(1078), - [anon_sym_unset] = ACTIONS(1081), - [anon_sym_unsetenv] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1087), - [anon_sym_LT_AMP] = ACTIONS(1087), - [anon_sym_GT_AMP] = ACTIONS(1087), - [sym__special_characters] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1096), - [sym_raw_string] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1108), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1114), - }, - [206] = { - [sym_file_redirect] = STATE(575), - [sym_heredoc_redirect] = STATE(575), - [sym_heredoc_body] = STATE(573), - [sym_herestring_redirect] = STATE(575), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(200), - [sym_simple_expansion] = STATE(200), - [sym_string_expansion] = STATE(200), - [sym_expansion] = STATE(200), - [sym_command_substitution] = STATE(200), - [sym_process_substitution] = STATE(200), - [aux_sym_while_statement_repeat1] = STATE(575), - [aux_sym_command_repeat2] = STATE(577), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_EQ_TILDE] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(349), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [sym__special_characters] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), - }, - [207] = { - [sym_variable_assignment] = STATE(207), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(207), - [aux_sym_command_repeat1] = STATE(207), - [sym_file_descriptor] = ACTIONS(1117), - [sym_variable_name] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1123), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [sym__special_characters] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1131), - [sym_raw_string] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_LT_LPAREN] = ACTIONS(1129), - [anon_sym_GT_LPAREN] = ACTIONS(1129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1129), - }, - [208] = { - [aux_sym_concatenation_repeat1] = STATE(392), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [sym__special_characters] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1135), - [sym_raw_string] = ACTIONS(1133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1133), - }, - [209] = { - [aux_sym_concatenation_repeat1] = STATE(392), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1137), - [anon_sym_LT_AMP] = ACTIONS(1137), - [anon_sym_GT_AMP] = ACTIONS(1137), - [sym__special_characters] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(1139), - [sym_raw_string] = ACTIONS(1137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), - [anon_sym_LT_LPAREN] = ACTIONS(1137), - [anon_sym_GT_LPAREN] = ACTIONS(1137), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1137), - }, - [210] = { - [sym_file_descriptor] = ACTIONS(1137), - [sym_variable_name] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1137), - [anon_sym_LT_AMP] = ACTIONS(1137), - [anon_sym_GT_AMP] = ACTIONS(1137), - [sym__special_characters] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(1139), - [sym_raw_string] = ACTIONS(1137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), - [anon_sym_LT_LPAREN] = ACTIONS(1137), - [anon_sym_GT_LPAREN] = ACTIONS(1137), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1137), - }, - [211] = { - [aux_sym_concatenation_repeat1] = STATE(580), - [sym__concat] = ACTIONS(1141), - [anon_sym_RBRACK] = ACTIONS(1143), - [sym_comment] = ACTIONS(53), - }, - [212] = { - [aux_sym_concatenation_repeat1] = STATE(580), - [sym__concat] = ACTIONS(1145), - [anon_sym_RBRACK] = ACTIONS(1147), - [sym_comment] = ACTIONS(53), - }, - [213] = { - [sym__concat] = ACTIONS(1149), - [anon_sym_RBRACK] = ACTIONS(1147), - [sym_comment] = ACTIONS(53), - }, - [214] = { - [sym_file_descriptor] = ACTIONS(1151), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_esac] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_SEMI_SEMI] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_AMP_GT] = ACTIONS(1153), - [anon_sym_AMP_GT_GT] = ACTIONS(1153), - [anon_sym_LT_AMP] = ACTIONS(1153), - [anon_sym_GT_AMP] = ACTIONS(1153), - [sym__special_characters] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_LT_LPAREN] = ACTIONS(1153), - [anon_sym_GT_LPAREN] = ACTIONS(1153), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - }, - [215] = { - [sym_concatenation] = STATE(593), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(593), - [anon_sym_RPAREN] = ACTIONS(1155), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), - }, - [216] = { - [aux_sym_concatenation_repeat1] = STATE(595), - [sym_file_descriptor] = ACTIONS(1173), - [sym__concat] = ACTIONS(1175), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_SEMI_SEMI] = ACTIONS(1177), - [anon_sym_PIPE_AMP] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_AMP_GT] = ACTIONS(1177), - [anon_sym_AMP_GT_GT] = ACTIONS(1177), - [anon_sym_LT_AMP] = ACTIONS(1177), - [anon_sym_GT_AMP] = ACTIONS(1177), - [sym__special_characters] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1177), - [anon_sym_LT_LPAREN] = ACTIONS(1177), - [anon_sym_GT_LPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1177), - }, - [217] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(598), - [anon_sym_DQUOTE] = ACTIONS(1179), - [anon_sym_DOLLAR] = ACTIONS(1181), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [218] = { - [sym_string] = STATE(600), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(1183), - [sym_raw_string] = ACTIONS(1185), - [anon_sym_POUND] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1183), - [anon_sym_0] = ACTIONS(1189), - [anon_sym__] = ACTIONS(1189), - }, - [219] = { - [aux_sym_concatenation_repeat1] = STATE(595), - [sym_file_descriptor] = ACTIONS(1151), - [sym__concat] = ACTIONS(1175), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_SEMI_SEMI] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_AMP_GT] = ACTIONS(1153), - [anon_sym_AMP_GT_GT] = ACTIONS(1153), - [anon_sym_LT_AMP] = ACTIONS(1153), - [anon_sym_GT_AMP] = ACTIONS(1153), - [sym__special_characters] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_LT_LPAREN] = ACTIONS(1153), - [anon_sym_GT_LPAREN] = ACTIONS(1153), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - }, - [220] = { - [sym_subscript] = STATE(606), - [sym_variable_name] = ACTIONS(1191), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_POUND] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_AT] = ACTIONS(1193), - [anon_sym_QMARK] = ACTIONS(1193), - [anon_sym_0] = ACTIONS(1199), - [anon_sym__] = ACTIONS(1199), - }, - [221] = { - [sym_for_statement] = STATE(607), - [sym_c_style_for_statement] = STATE(607), - [sym_while_statement] = STATE(607), - [sym_if_statement] = STATE(607), - [sym_case_statement] = STATE(607), - [sym_function_definition] = STATE(607), - [sym_subshell] = STATE(607), - [sym_pipeline] = STATE(607), - [sym_list] = STATE(607), - [sym_negated_command] = STATE(607), - [sym_test_command] = STATE(607), - [sym_declaration_command] = STATE(607), - [sym_unset_command] = STATE(607), - [sym_command] = STATE(607), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(608), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), + [aux_sym_program_repeat1] = STATE(576), + [aux_sym_if_statement_repeat1] = STATE(577), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(1089), + [anon_sym_elif] = ACTIONS(1091), + [anon_sym_else] = ACTIONS(1093), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -15416,19 +14576,542 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_word] = ACTIONS(55), + }, + [215] = { + [sym_string] = STATE(578), + [sym_simple_expansion] = STATE(578), + [sym_string_expansion] = STATE(578), + [sym_expansion] = STATE(578), + [sym_command_substitution] = STATE(578), + [sym_process_substitution] = STATE(578), + [sym__special_characters] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(1095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(81), + [anon_sym_LT_LPAREN] = ACTIONS(83), + [anon_sym_GT_LPAREN] = ACTIONS(83), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1095), + }, + [216] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1097), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1097), + [anon_sym_LF] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1097), + }, + [217] = { + [anon_sym_in] = ACTIONS(1101), + [sym_comment] = ACTIONS(53), + }, + [218] = { + [aux_sym_concatenation_repeat1] = STATE(581), + [sym__concat] = ACTIONS(397), + [anon_sym_in] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [219] = { + [sym__concat] = ACTIONS(687), + [anon_sym_in] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), + }, + [220] = { + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [221] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [222] = { + [sym__concat] = ACTIONS(719), + [anon_sym_in] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LT_LPAREN] = ACTIONS(721), + [anon_sym_GT_LPAREN] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), + }, + [223] = { + [sym__concat] = ACTIONS(723), + [anon_sym_in] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), + }, + [224] = { + [sym__concat] = ACTIONS(727), + [anon_sym_in] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + }, + [225] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1107), + }, + [226] = { + [anon_sym_in] = ACTIONS(1111), + [sym_comment] = ACTIONS(53), + }, + [227] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1113), + [sym_comment] = ACTIONS(53), + }, + [228] = { + [sym_concatenation] = STATE(589), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(589), + [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1117), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1121), + [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_COLON_QMARK] = ACTIONS(1117), + [anon_sym_COLON_DASH] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1117), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [229] = { + [sym_subscript] = STATE(593), + [sym_variable_name] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1125), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AT] = ACTIONS(1125), + [anon_sym_QMARK] = ACTIONS(1125), + [anon_sym_0] = ACTIONS(1129), + [anon_sym__] = ACTIONS(1129), + }, + [230] = { + [sym_concatenation] = STATE(596), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(596), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_EQ] = ACTIONS(1133), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1137), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_COLON_QMARK] = ACTIONS(1133), + [anon_sym_COLON_DASH] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [231] = { + [sym_concatenation] = STATE(599), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(599), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_EQ] = ACTIONS(1141), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1143), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_COLON] = ACTIONS(1141), + [anon_sym_COLON_QMARK] = ACTIONS(1141), + [anon_sym_COLON_DASH] = ACTIONS(1141), + [anon_sym_PERCENT] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [232] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_SEMI_SEMI] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1149), + }, + [233] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_SEMI_SEMI] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_LF] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1149), + }, + [234] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(602), + [sym_c_style_for_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_case_statement] = STATE(602), + [sym_function_definition] = STATE(602), + [sym_subshell] = STATE(602), + [sym_pipeline] = STATE(602), + [sym_list] = STATE(602), + [sym_negated_command] = STATE(602), + [sym_test_command] = STATE(602), + [sym_declaration_command] = STATE(602), + [sym_unset_command] = STATE(602), + [sym_command] = STATE(602), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(603), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [235] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(1147), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1153), + }, + [236] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LF] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1153), + }, + [237] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(605), + [sym_c_style_for_statement] = STATE(605), + [sym_while_statement] = STATE(605), + [sym_if_statement] = STATE(605), + [sym_case_statement] = STATE(605), + [sym_function_definition] = STATE(605), + [sym_subshell] = STATE(605), + [sym_pipeline] = STATE(605), + [sym_list] = STATE(605), + [sym_negated_command] = STATE(605), + [sym_test_command] = STATE(605), + [sym_declaration_command] = STATE(605), + [sym_unset_command] = STATE(605), + [sym_command] = STATE(605), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(606), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [238] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1159), + }, + [239] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1159), + }, + [240] = { + [sym__terminated_statement] = STATE(273), [sym_for_statement] = STATE(609), [sym_c_style_for_statement] = STATE(609), [sym_while_statement] = STATE(609), @@ -15443,564 +15126,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(609), [sym_unset_command] = STATE(609), [sym_command] = STATE(609), - [sym_command_name] = STATE(182), + [sym_command_name] = STATE(65), [sym_variable_assignment] = STATE(610), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [223] = { - [sym_for_statement] = STATE(611), - [sym_c_style_for_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_function_definition] = STATE(611), - [sym_subshell] = STATE(611), - [sym_pipeline] = STATE(611), - [sym_list] = STATE(611), - [sym_negated_command] = STATE(611), - [sym_test_command] = STATE(611), - [sym_declaration_command] = STATE(611), - [sym_unset_command] = STATE(611), - [sym_command] = STATE(611), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(612), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [224] = { - [sym__expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_unary_expression] = STATE(614), - [sym_parenthesized_expression] = STATE(614), - [sym_concatenation] = STATE(614), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [anon_sym_SEMI_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [sym__special_characters] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_LT_LPAREN] = ACTIONS(427), - [anon_sym_GT_LPAREN] = ACTIONS(427), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(419), - [sym_test_operator] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LF] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1201), - }, - [225] = { - [sym__expression] = STATE(615), - [sym_binary_expression] = STATE(615), - [sym_unary_expression] = STATE(615), - [sym_parenthesized_expression] = STATE(615), - [sym_concatenation] = STATE(615), - [sym_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_string_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(531), - [sym__special_characters] = ACTIONS(533), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(537), - [sym_test_operator] = ACTIONS(539), - }, - [226] = { - [sym__expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_unary_expression] = STATE(616), - [sym_parenthesized_expression] = STATE(616), - [sym_concatenation] = STATE(616), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(411), - [sym__special_characters] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(1211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1217), - [anon_sym_LT_LPAREN] = ACTIONS(1219), - [anon_sym_GT_LPAREN] = ACTIONS(1219), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(419), - [sym_test_operator] = ACTIONS(1221), - }, - [227] = { - [aux_sym_concatenation_repeat1] = STATE(618), - [sym__concat] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - }, - [228] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(621), - [anon_sym_DQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1227), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [229] = { - [sym_string] = STATE(623), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(1229), - [sym_raw_string] = ACTIONS(1231), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1229), - [anon_sym_QMARK] = ACTIONS(1229), - [anon_sym_0] = ACTIONS(1235), - [anon_sym__] = ACTIONS(1235), - }, - [230] = { - [aux_sym_concatenation_repeat1] = STATE(618), - [sym__concat] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_EQ_TILDE] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(561), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(561), - }, - [231] = { - [sym_subscript] = STATE(629), - [sym_variable_name] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1239), - [anon_sym_POUND] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_AT] = ACTIONS(1239), - [anon_sym_QMARK] = ACTIONS(1239), - [anon_sym_0] = ACTIONS(1245), - [anon_sym__] = ACTIONS(1245), - }, - [232] = { - [sym_for_statement] = STATE(630), - [sym_c_style_for_statement] = STATE(630), - [sym_while_statement] = STATE(630), - [sym_if_statement] = STATE(630), - [sym_case_statement] = STATE(630), - [sym_function_definition] = STATE(630), - [sym_subshell] = STATE(630), - [sym_pipeline] = STATE(630), - [sym_list] = STATE(630), - [sym_negated_command] = STATE(630), - [sym_test_command] = STATE(630), - [sym_declaration_command] = STATE(630), - [sym_unset_command] = STATE(630), - [sym_command] = STATE(630), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(631), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [233] = { - [sym_for_statement] = STATE(632), - [sym_c_style_for_statement] = STATE(632), - [sym_while_statement] = STATE(632), - [sym_if_statement] = STATE(632), - [sym_case_statement] = STATE(632), - [sym_function_definition] = STATE(632), - [sym_subshell] = STATE(632), - [sym_pipeline] = STATE(632), - [sym_list] = STATE(632), - [sym_negated_command] = STATE(632), - [sym_test_command] = STATE(632), - [sym_declaration_command] = STATE(632), - [sym_unset_command] = STATE(632), - [sym_command] = STATE(632), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(633), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [234] = { - [sym_for_statement] = STATE(634), - [sym_c_style_for_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_if_statement] = STATE(634), - [sym_case_statement] = STATE(634), - [sym_function_definition] = STATE(634), - [sym_subshell] = STATE(634), - [sym_pipeline] = STATE(634), - [sym_list] = STATE(634), - [sym_negated_command] = STATE(634), - [sym_test_command] = STATE(634), - [sym_declaration_command] = STATE(634), - [sym_unset_command] = STATE(634), - [sym_command] = STATE(634), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(635), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [235] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1247), - }, - [236] = { - [sym_concatenation] = STATE(641), - [sym_string] = STATE(640), - [sym_simple_expansion] = STATE(640), - [sym_string_expansion] = STATE(640), - [sym_expansion] = STATE(640), - [sym_command_substitution] = STATE(640), - [sym_process_substitution] = STATE(640), - [aux_sym_for_statement_repeat1] = STATE(641), - [sym__special_characters] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(73), - [sym_raw_string] = ACTIONS(1257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), - [anon_sym_BQUOTE] = ACTIONS(81), - [anon_sym_LT_LPAREN] = ACTIONS(83), - [anon_sym_GT_LPAREN] = ACTIONS(83), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1257), - }, - [237] = { - [sym_do_group] = STATE(643), - [anon_sym_do] = ACTIONS(1259), - [sym_comment] = ACTIONS(53), - }, - [238] = { - [sym__terminated_statement] = STATE(645), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(645), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), + [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(89), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), + [anon_sym_function] = ACTIONS(91), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -16008,523 +15164,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), + [sym__special_characters] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), + [sym_raw_string] = ACTIONS(105), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [239] = { - [sym_file_redirect] = STATE(647), - [sym_heredoc_redirect] = STATE(647), - [sym_heredoc_body] = STATE(646), - [sym_herestring_redirect] = STATE(647), - [aux_sym_while_statement_repeat1] = STATE(647), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_SEMI_SEMI] = ACTIONS(1263), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(349), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1263), - }, - [240] = { - [anon_sym_do] = ACTIONS(995), - [anon_sym_then] = ACTIONS(995), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), }, [241] = { - [sym__terminated_statement] = STATE(652), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_elif_clause] = STATE(653), - [sym_else_clause] = STATE(651), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(652), - [aux_sym_if_statement_repeat1] = STATE(653), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(1267), - [anon_sym_elif] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [anon_sym_RPAREN] = ACTIONS(1163), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), }, [242] = { - [sym_string] = STATE(654), - [sym_simple_expansion] = STATE(654), - [sym_string_expansion] = STATE(654), - [sym_expansion] = STATE(654), - [sym_command_substitution] = STATE(654), - [sym_process_substitution] = STATE(654), - [sym__special_characters] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(73), - [sym_raw_string] = ACTIONS(1273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), - [anon_sym_BQUOTE] = ACTIONS(81), - [anon_sym_LT_LPAREN] = ACTIONS(83), - [anon_sym_GT_LPAREN] = ACTIONS(83), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1273), - }, - [243] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1275), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_LF] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1275), - }, - [244] = { - [anon_sym_in] = ACTIONS(1279), - [sym_comment] = ACTIONS(53), - }, - [245] = { - [aux_sym_concatenation_repeat1] = STATE(657), - [sym__concat] = ACTIONS(445), - [anon_sym_in] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [246] = { - [sym__concat] = ACTIONS(735), - [anon_sym_in] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [247] = { - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [248] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1283), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [249] = { - [sym__concat] = ACTIONS(767), - [anon_sym_in] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), - }, - [250] = { - [sym__concat] = ACTIONS(771), - [anon_sym_in] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [sym__special_characters] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(773), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LF] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - }, - [251] = { - [sym__concat] = ACTIONS(775), - [anon_sym_in] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [sym__special_characters] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(777), - [anon_sym_GT_LPAREN] = ACTIONS(777), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - }, - [252] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1285), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1285), - }, - [253] = { - [anon_sym_in] = ACTIONS(1289), - [sym_comment] = ACTIONS(53), - }, - [254] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(1291), - [sym_comment] = ACTIONS(53), - }, - [255] = { - [sym_concatenation] = STATE(665), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(665), - [anon_sym_RBRACE] = ACTIONS(1293), - [anon_sym_EQ] = ACTIONS(1295), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1299), - [anon_sym_COLON] = ACTIONS(1295), - [anon_sym_COLON_QMARK] = ACTIONS(1295), - [anon_sym_COLON_DASH] = ACTIONS(1295), - [anon_sym_PERCENT] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [256] = { - [sym_subscript] = STATE(669), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_AT] = ACTIONS(1303), - [anon_sym_QMARK] = ACTIONS(1303), - [anon_sym_0] = ACTIONS(1307), - [anon_sym__] = ACTIONS(1307), - }, - [257] = { - [sym_concatenation] = STATE(672), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(672), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_EQ] = ACTIONS(1311), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_COLON] = ACTIONS(1311), - [anon_sym_COLON_QMARK] = ACTIONS(1311), - [anon_sym_COLON_DASH] = ACTIONS(1311), - [anon_sym_PERCENT] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [258] = { - [sym_concatenation] = STATE(675), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(675), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(1319), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1323), - [anon_sym_COLON] = ACTIONS(1319), - [anon_sym_COLON_QMARK] = ACTIONS(1319), - [anon_sym_COLON_DASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [259] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [260] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [261] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(1325), - [sym_comment] = ACTIONS(53), - }, - [262] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(1325), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [263] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [264] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [265] = { - [anon_sym_RPAREN] = ACTIONS(1329), - [sym_comment] = ACTIONS(53), - }, - [266] = { - [sym__terminated_statement] = STATE(682), - [sym_for_statement] = STATE(680), - [sym_c_style_for_statement] = STATE(680), - [sym_while_statement] = STATE(680), - [sym_if_statement] = STATE(680), - [sym_case_statement] = STATE(680), - [sym_function_definition] = STATE(680), - [sym_subshell] = STATE(680), - [sym_pipeline] = STATE(680), - [sym_list] = STATE(680), - [sym_negated_command] = STATE(680), - [sym_test_command] = STATE(680), - [sym_declaration_command] = STATE(680), - [sym_unset_command] = STATE(680), - [sym_command] = STATE(680), + [sym__terminated_statement] = STATE(615), + [sym_for_statement] = STATE(613), + [sym_c_style_for_statement] = STATE(613), + [sym_while_statement] = STATE(613), + [sym_if_statement] = STATE(613), + [sym_case_statement] = STATE(613), + [sym_function_definition] = STATE(613), + [sym_subshell] = STATE(613), + [sym_pipeline] = STATE(613), + [sym_list] = STATE(613), + [sym_negated_command] = STATE(613), + [sym_test_command] = STATE(613), + [sym_declaration_command] = STATE(613), + [sym_unset_command] = STATE(613), + [sym_command] = STATE(613), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(681), + [sym_variable_assignment] = STATE(614), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(682), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(615), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -16533,7 +15217,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1165), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -16563,171 +15247,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [267] = { - [sym_file_redirect] = STATE(685), - [sym_file_descriptor] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_AMP_GT] = ACTIONS(1337), - [anon_sym_AMP_GT_GT] = ACTIONS(1337), - [anon_sym_LT_AMP] = ACTIONS(1337), - [anon_sym_GT_AMP] = ACTIONS(1337), + [243] = { + [sym_file_redirect] = STATE(618), + [sym_file_descriptor] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_SEMI_SEMI] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1169), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1171), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1169), }, - [268] = { - [sym_concatenation] = STATE(214), - [sym_string] = STATE(687), - [sym_array] = STATE(214), - [sym_simple_expansion] = STATE(687), - [sym_string_expansion] = STATE(687), - [sym_expansion] = STATE(687), - [sym_command_substitution] = STATE(687), - [sym_process_substitution] = STATE(687), - [sym__empty_value] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(389), - [sym__special_characters] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(1343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), + [244] = { + [sym_concatenation] = STATE(187), + [sym_string] = STATE(620), + [sym_array] = STATE(187), + [sym_simple_expansion] = STATE(620), + [sym_string_expansion] = STATE(620), + [sym_expansion] = STATE(620), + [sym_command_substitution] = STATE(620), + [sym_process_substitution] = STATE(620), + [sym__empty_value] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [sym__special_characters] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(347), + [sym_raw_string] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(355), + [anon_sym_LT_LPAREN] = ACTIONS(357), + [anon_sym_GT_LPAREN] = ACTIONS(357), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1343), + [sym_word] = ACTIONS(1177), }, - [269] = { - [sym_do_group] = STATE(688), - [anon_sym_do] = ACTIONS(437), + [245] = { + [sym_do_group] = STATE(621), + [anon_sym_do] = ACTIONS(389), [sym_comment] = ACTIONS(53), }, - [270] = { - [sym_compound_statement] = STATE(690), - [anon_sym_LPAREN] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(483), + [246] = { + [sym_compound_statement] = STATE(623), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(435), [sym_comment] = ACTIONS(53), }, - [271] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_EQ_TILDE] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(577), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), + [247] = { + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(529), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), + [sym_test_operator] = ACTIONS(525), }, - [272] = { - [anon_sym_AMP_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(605), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1347), - [anon_sym_EQ_TILDE] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), + [248] = { + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(559), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(605), + [sym_test_operator] = ACTIONS(557), }, - [273] = { + [249] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1349), - [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1183), [sym_comment] = ACTIONS(53), }, - [274] = { - [aux_sym_concatenation_repeat1] = STATE(693), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [sym__special_characters] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_raw_string] = ACTIONS(617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_LT_LPAREN] = ACTIONS(617), - [anon_sym_GT_LPAREN] = ACTIONS(617), + [250] = { + [aux_sym_concatenation_repeat1] = STATE(626), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_SEMI_SEMI] = ACTIONS(569), + [anon_sym_PIPE_AMP] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [sym__special_characters] = ACTIONS(569), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(569), + [sym_raw_string] = ACTIONS(569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(569), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(569), + [anon_sym_BQUOTE] = ACTIONS(569), + [anon_sym_LT_LPAREN] = ACTIONS(569), + [anon_sym_GT_LPAREN] = ACTIONS(569), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), - [sym_word] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(569), + [sym_word] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(569), }, - [275] = { - [aux_sym_concatenation_repeat1] = STATE(693), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_SEMI_SEMI] = ACTIONS(635), - [anon_sym_PIPE_AMP] = ACTIONS(635), - [anon_sym_AMP_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(635), - [sym__special_characters] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_raw_string] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), - [anon_sym_BQUOTE] = ACTIONS(635), - [anon_sym_LT_LPAREN] = ACTIONS(635), - [anon_sym_GT_LPAREN] = ACTIONS(635), + [251] = { + [aux_sym_concatenation_repeat1] = STATE(626), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_SEMI_SEMI] = ACTIONS(587), + [anon_sym_PIPE_AMP] = ACTIONS(587), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [sym__special_characters] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(587), + [sym_raw_string] = ACTIONS(587), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(587), + [anon_sym_LT_LPAREN] = ACTIONS(587), + [anon_sym_GT_LPAREN] = ACTIONS(587), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), - [sym_word] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(635), - [anon_sym_LF] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(635), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(587), + [sym_word] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(587), }, - [276] = { - [anon_sym_EQ] = ACTIONS(1349), - [anon_sym_PLUS_EQ] = ACTIONS(1349), + [252] = { + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1183), [sym_comment] = ACTIONS(53), }, - [277] = { - [sym_variable_assignment] = STATE(104), - [sym_subscript] = STATE(276), - [sym_concatenation] = STATE(104), - [sym_string] = STATE(275), - [sym_simple_expansion] = STATE(275), - [sym_string_expansion] = STATE(275), - [sym_expansion] = STATE(275), - [sym_command_substitution] = STATE(275), - [sym_process_substitution] = STATE(275), - [aux_sym_declaration_command_repeat1] = STATE(694), - [sym_variable_name] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_SEMI_SEMI] = ACTIONS(651), - [anon_sym_PIPE_AMP] = ACTIONS(651), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [sym__special_characters] = ACTIONS(491), + [253] = { + [sym_variable_assignment] = STATE(627), + [sym_subscript] = STATE(252), + [sym_concatenation] = STATE(627), + [sym_string] = STATE(251), + [sym_simple_expansion] = STATE(251), + [sym_string_expansion] = STATE(251), + [sym_expansion] = STATE(251), + [sym_command_substitution] = STATE(251), + [sym_process_substitution] = STATE(251), + [aux_sym_declaration_command_repeat1] = STATE(627), + [sym_variable_name] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_SEMI_SEMI] = ACTIONS(603), + [anon_sym_PIPE_AMP] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [sym__special_characters] = ACTIONS(443), [anon_sym_DQUOTE] = ACTIONS(165), [anon_sym_DOLLAR] = ACTIONS(167), - [sym_raw_string] = ACTIONS(493), + [sym_raw_string] = ACTIONS(445), [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), [anon_sym_BQUOTE] = ACTIONS(175), @@ -16735,80 +15419,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(177), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), - [sym_word] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_LF] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(651), + [sym_word] = ACTIONS(445), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(603), }, - [278] = { - [aux_sym_concatenation_repeat1] = STATE(695), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_SEMI_SEMI] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(657), - [sym__special_characters] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [sym_raw_string] = ACTIONS(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), + [254] = { + [aux_sym_concatenation_repeat1] = STATE(628), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_SEMI_SEMI] = ACTIONS(609), + [anon_sym_PIPE_AMP] = ACTIONS(609), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [sym__special_characters] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(609), + [sym_raw_string] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(609), + [anon_sym_LT_LPAREN] = ACTIONS(609), + [anon_sym_GT_LPAREN] = ACTIONS(609), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), - [sym_word] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_LF] = ACTIONS(659), - [anon_sym_AMP] = ACTIONS(657), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), + [sym_word] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(609), }, - [279] = { - [aux_sym_concatenation_repeat1] = STATE(695), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [sym__special_characters] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [255] = { + [aux_sym_concatenation_repeat1] = STATE(628), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_SEMI_SEMI] = ACTIONS(627), + [anon_sym_PIPE_AMP] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [sym__special_characters] = ACTIONS(627), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(627), + [sym_raw_string] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(627), + [anon_sym_GT_LPAREN] = ACTIONS(627), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(675), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(627), + [sym_word] = ACTIONS(627), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_LF] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(627), }, - [280] = { - [sym_concatenation] = STATE(696), - [sym_string] = STATE(279), - [sym_simple_expansion] = STATE(279), - [sym_string_expansion] = STATE(279), - [sym_expansion] = STATE(279), - [sym_command_substitution] = STATE(279), - [sym_process_substitution] = STATE(279), - [aux_sym_unset_command_repeat1] = STATE(696), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_SEMI_SEMI] = ACTIONS(693), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [sym__special_characters] = ACTIONS(495), + [256] = { + [sym_concatenation] = STATE(629), + [sym_string] = STATE(255), + [sym_simple_expansion] = STATE(255), + [sym_string_expansion] = STATE(255), + [sym_expansion] = STATE(255), + [sym_command_substitution] = STATE(255), + [sym_process_substitution] = STATE(255), + [aux_sym_unset_command_repeat1] = STATE(629), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [sym__special_characters] = ACTIONS(447), [anon_sym_DQUOTE] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(497), + [sym_raw_string] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), [anon_sym_BQUOTE] = ACTIONS(199), @@ -16816,81 +15500,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(201), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), - [sym_word] = ACTIONS(497), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_LF] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(693), + [sym_word] = ACTIONS(449), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_LF] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(645), }, - [281] = { - [aux_sym_concatenation_repeat1] = STATE(697), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), + [257] = { + [aux_sym_concatenation_repeat1] = STATE(630), + [sym__simple_heredoc_body] = ACTIONS(683), + [sym__heredoc_body_beginning] = ACTIONS(683), + [sym_file_descriptor] = ACTIONS(683), [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_EQ_TILDE] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), }, - [282] = { - [anon_sym_RPAREN] = ACTIONS(1351), + [258] = { + [anon_sym_RPAREN] = ACTIONS(1185), [sym_comment] = ACTIONS(53), }, - [283] = { - [sym_for_statement] = STATE(554), - [sym_c_style_for_statement] = STATE(554), - [sym_while_statement] = STATE(554), - [sym_if_statement] = STATE(554), - [sym_case_statement] = STATE(554), - [sym_function_definition] = STATE(554), - [sym_subshell] = STATE(554), - [sym_pipeline] = STATE(554), - [sym_list] = STATE(554), - [sym_negated_command] = STATE(554), - [sym_test_command] = STATE(554), - [sym_declaration_command] = STATE(554), - [sym_unset_command] = STATE(554), - [sym_command] = STATE(554), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(555), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(68), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_command_repeat1] = STATE(68), + [259] = { + [sym_for_statement] = STATE(471), + [sym_c_style_for_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_case_statement] = STATE(471), + [sym_function_definition] = STATE(471), + [sym_subshell] = STATE(471), + [sym_pipeline] = STATE(471), + [sym_list] = STATE(471), + [sym_negated_command] = STATE(471), + [sym_test_command] = STATE(471), + [sym_declaration_command] = STATE(471), + [sym_unset_command] = STATE(471), + [sym_command] = STATE(471), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(472), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), @@ -16928,85 +15612,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [284] = { - [anon_sym_esac] = ACTIONS(1353), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_SEMI_SEMI] = ACTIONS(1353), - [anon_sym_PIPE_AMP] = ACTIONS(1353), - [anon_sym_AMP_AMP] = ACTIONS(1353), - [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [260] = { + [anon_sym_esac] = ACTIONS(1187), + [anon_sym_PIPE] = ACTIONS(1187), + [anon_sym_RPAREN] = ACTIONS(1187), + [anon_sym_SEMI_SEMI] = ACTIONS(1187), + [anon_sym_PIPE_AMP] = ACTIONS(1187), + [anon_sym_AMP_AMP] = ACTIONS(1187), + [anon_sym_PIPE_PIPE] = ACTIONS(1187), + [anon_sym_BQUOTE] = ACTIONS(1187), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LF] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1187), + [anon_sym_LF] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1187), }, - [285] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(997), - [sym_raw_string] = ACTIONS(995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), - [anon_sym_BQUOTE] = ACTIONS(995), - [anon_sym_LT_LPAREN] = ACTIONS(995), - [anon_sym_GT_LPAREN] = ACTIONS(995), + [261] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(997), + [sym_word] = ACTIONS(819), }, - [286] = { - [sym_for_statement] = STATE(700), - [sym_c_style_for_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_case_statement] = STATE(700), - [sym_function_definition] = STATE(700), - [sym_subshell] = STATE(700), - [sym_pipeline] = STATE(700), - [sym_list] = STATE(700), - [sym_negated_command] = STATE(700), - [sym_test_command] = STATE(700), - [sym_declaration_command] = STATE(700), - [sym_unset_command] = STATE(700), - [sym_command] = STATE(700), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(701), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(68), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_command_repeat1] = STATE(68), + [262] = { + [sym_for_statement] = STATE(633), + [sym_c_style_for_statement] = STATE(633), + [sym_while_statement] = STATE(633), + [sym_if_statement] = STATE(633), + [sym_case_statement] = STATE(633), + [sym_function_definition] = STATE(633), + [sym_subshell] = STATE(633), + [sym_pipeline] = STATE(633), + [sym_list] = STATE(633), + [sym_negated_command] = STATE(633), + [sym_test_command] = STATE(633), + [sym_declaration_command] = STATE(633), + [sym_unset_command] = STATE(633), + [sym_command] = STATE(633), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(634), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), @@ -17044,280 +15729,280 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [287] = { - [anon_sym_LT] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1359), - [anon_sym_GT_GT] = ACTIONS(1361), - [anon_sym_AMP_GT] = ACTIONS(1359), - [anon_sym_AMP_GT_GT] = ACTIONS(1361), - [anon_sym_LT_AMP] = ACTIONS(1361), - [anon_sym_GT_AMP] = ACTIONS(1361), + [263] = { + [anon_sym_LT] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_AMP_GT] = ACTIONS(1193), + [anon_sym_AMP_GT_GT] = ACTIONS(1195), + [anon_sym_LT_AMP] = ACTIONS(1195), + [anon_sym_GT_AMP] = ACTIONS(1195), [sym_comment] = ACTIONS(53), }, - [288] = { - [sym_concatenation] = STATE(565), - [sym_string] = STATE(704), - [sym_simple_expansion] = STATE(704), - [sym_string_expansion] = STATE(704), - [sym_expansion] = STATE(704), - [sym_command_substitution] = STATE(704), - [sym_process_substitution] = STATE(704), - [sym__special_characters] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(357), + [264] = { + [sym_concatenation] = STATE(482), + [sym_string] = STATE(637), + [sym_simple_expansion] = STATE(637), + [sym_string_expansion] = STATE(637), + [sym_expansion] = STATE(637), + [sym_command_substitution] = STATE(637), + [sym_process_substitution] = STATE(637), + [sym__special_characters] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(309), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_raw_string] = ACTIONS(1199), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1365), - [sym_regex] = ACTIONS(1019), + [sym_word] = ACTIONS(1199), + [sym_regex] = ACTIONS(841), }, - [289] = { - [sym_concatenation] = STATE(568), - [sym_string] = STATE(706), - [sym_simple_expansion] = STATE(706), - [sym_string_expansion] = STATE(706), - [sym_expansion] = STATE(706), - [sym_command_substitution] = STATE(706), - [sym_process_substitution] = STATE(706), - [sym__special_characters] = ACTIONS(1367), + [265] = { + [sym_concatenation] = STATE(485), + [sym_string] = STATE(639), + [sym_simple_expansion] = STATE(639), + [sym_string_expansion] = STATE(639), + [sym_expansion] = STATE(639), + [sym_command_substitution] = STATE(639), + [sym_process_substitution] = STATE(639), + [sym__special_characters] = ACTIONS(1201), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1369), + [sym_raw_string] = ACTIONS(1203), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1369), + [sym_word] = ACTIONS(1203), }, - [290] = { - [sym_concatenation] = STATE(572), - [sym_string] = STATE(708), - [sym_simple_expansion] = STATE(708), - [sym_string_expansion] = STATE(708), - [sym_expansion] = STATE(708), - [sym_command_substitution] = STATE(708), - [sym_process_substitution] = STATE(708), - [sym__special_characters] = ACTIONS(1371), + [266] = { + [sym_concatenation] = STATE(489), + [sym_string] = STATE(641), + [sym_simple_expansion] = STATE(641), + [sym_string_expansion] = STATE(641), + [sym_expansion] = STATE(641), + [sym_command_substitution] = STATE(641), + [sym_process_substitution] = STATE(641), + [sym__special_characters] = ACTIONS(1205), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1373), + [sym_raw_string] = ACTIONS(1207), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1373), + [sym_word] = ACTIONS(1207), }, - [291] = { - [aux_sym_concatenation_repeat1] = STATE(281), - [sym__simple_heredoc_body] = ACTIONS(1031), - [sym__heredoc_body_beginning] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1031), + [267] = { + [aux_sym_concatenation_repeat1] = STATE(257), + [sym__simple_heredoc_body] = ACTIONS(853), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(853), [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [sym__special_characters] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(855), + [anon_sym_PIPE_AMP] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(855), + [anon_sym_LT_AMP] = ACTIONS(855), + [anon_sym_GT_AMP] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_LT_LT_DASH] = ACTIONS(855), + [anon_sym_LT_LT_LT] = ACTIONS(855), + [sym__special_characters] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(855), + [anon_sym_BQUOTE] = ACTIONS(855), + [anon_sym_LT_LPAREN] = ACTIONS(855), + [anon_sym_GT_LPAREN] = ACTIONS(855), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_AMP] = ACTIONS(1033), + [sym_word] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), }, - [292] = { - [aux_sym_concatenation_repeat1] = STATE(281), - [sym__simple_heredoc_body] = ACTIONS(1035), - [sym__heredoc_body_beginning] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), + [268] = { + [aux_sym_concatenation_repeat1] = STATE(257), + [sym__simple_heredoc_body] = ACTIONS(857), + [sym__heredoc_body_beginning] = ACTIONS(857), + [sym_file_descriptor] = ACTIONS(857), [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_EQ_TILDE] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [sym__special_characters] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_SEMI_SEMI] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_EQ_TILDE] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_AMP_GT] = ACTIONS(859), + [anon_sym_AMP_GT_GT] = ACTIONS(859), + [anon_sym_LT_AMP] = ACTIONS(859), + [anon_sym_GT_AMP] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_LT_LT_DASH] = ACTIONS(859), + [anon_sym_LT_LT_LT] = ACTIONS(859), + [sym__special_characters] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [sym_raw_string] = ACTIONS(859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(859), + [anon_sym_LT_LPAREN] = ACTIONS(859), + [anon_sym_GT_LPAREN] = ACTIONS(859), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1037), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), + [sym_word] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(859), }, - [293] = { - [sym_file_redirect] = STATE(709), - [sym_heredoc_redirect] = STATE(709), - [sym_heredoc_body] = STATE(573), - [sym_herestring_redirect] = STATE(709), - [aux_sym_while_statement_repeat1] = STATE(709), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(515), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(517), + [269] = { + [sym_file_redirect] = STATE(642), + [sym_heredoc_redirect] = STATE(642), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(642), + [aux_sym_while_statement_repeat1] = STATE(642), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(469), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), }, - [294] = { - [sym_file_redirect] = STATE(710), - [sym_heredoc_redirect] = STATE(710), - [sym_heredoc_body] = STATE(573), - [sym_herestring_redirect] = STATE(710), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_string_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [sym_command_substitution] = STATE(292), - [sym_process_substitution] = STATE(292), - [aux_sym_while_statement_repeat1] = STATE(710), - [aux_sym_command_repeat2] = STATE(711), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(515), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(517), - [sym__special_characters] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(357), + [270] = { + [sym_file_redirect] = STATE(643), + [sym_heredoc_redirect] = STATE(643), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(643), + [sym_concatenation] = STATE(644), + [sym_string] = STATE(268), + [sym_simple_expansion] = STATE(268), + [sym_string_expansion] = STATE(268), + [sym_expansion] = STATE(268), + [sym_command_substitution] = STATE(268), + [sym_process_substitution] = STATE(268), + [aux_sym_while_statement_repeat1] = STATE(643), + [aux_sym_command_repeat2] = STATE(644), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(469), + [sym__special_characters] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(309), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_raw_string] = ACTIONS(473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), + [sym_word] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), }, - [295] = { - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_SEMI_SEMI] = ACTIONS(1377), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), + [271] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_SEMI_SEMI] = ACTIONS(1211), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_LF] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1211), }, - [296] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_SEMI_SEMI] = ACTIONS(1377), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), + [272] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_SEMI_SEMI] = ACTIONS(1211), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_LF] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1377), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1211), }, - [297] = { - [sym__terminated_statement] = STATE(297), + [273] = { + [sym__terminated_statement] = STATE(273), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -17335,550 +16020,772 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(297), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(1043), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), - [anon_sym_declare] = ACTIONS(1078), - [anon_sym_typeset] = ACTIONS(1078), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_readonly] = ACTIONS(1078), - [anon_sym_local] = ACTIONS(1078), - [anon_sym_unset] = ACTIONS(1081), - [anon_sym_unsetenv] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1087), - [anon_sym_LT_AMP] = ACTIONS(1087), - [anon_sym_GT_AMP] = ACTIONS(1087), - [sym__special_characters] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1096), - [sym_raw_string] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1108), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(865), + [sym_variable_name] = ACTIONS(868), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(876), + [anon_sym_if] = ACTIONS(879), + [anon_sym_case] = ACTIONS(882), + [anon_sym_function] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_typeset] = ACTIONS(900), + [anon_sym_export] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_local] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_AMP_GT] = ACTIONS(906), + [anon_sym_AMP_GT_GT] = ACTIONS(909), + [anon_sym_LT_AMP] = ACTIONS(909), + [anon_sym_GT_AMP] = ACTIONS(909), + [sym__special_characters] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(918), + [sym_raw_string] = ACTIONS(921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(930), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1114), + [sym_word] = ACTIONS(936), }, - [298] = { - [sym_file_redirect] = STATE(710), - [sym_heredoc_redirect] = STATE(710), - [sym_heredoc_body] = STATE(573), - [sym_herestring_redirect] = STATE(710), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_string_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [sym_command_substitution] = STATE(292), - [sym_process_substitution] = STATE(292), - [aux_sym_while_statement_repeat1] = STATE(710), - [aux_sym_command_repeat2] = STATE(713), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(515), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(517), - [sym__special_characters] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(357), + [274] = { + [sym_file_redirect] = STATE(643), + [sym_heredoc_redirect] = STATE(643), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(643), + [sym_concatenation] = STATE(646), + [sym_string] = STATE(268), + [sym_simple_expansion] = STATE(268), + [sym_string_expansion] = STATE(268), + [sym_expansion] = STATE(268), + [sym_command_substitution] = STATE(268), + [sym_process_substitution] = STATE(268), + [aux_sym_while_statement_repeat1] = STATE(643), + [aux_sym_command_repeat2] = STATE(646), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(469), + [sym__special_characters] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(309), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_raw_string] = ACTIONS(473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), + [sym_word] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), }, - [299] = { - [sym_concatenation] = STATE(714), - [sym_string] = STATE(717), - [sym_array] = STATE(714), - [sym_simple_expansion] = STATE(717), - [sym_string_expansion] = STATE(717), - [sym_expansion] = STATE(717), - [sym_command_substitution] = STATE(717), - [sym_process_substitution] = STATE(717), - [sym__empty_value] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1383), - [sym__special_characters] = ACTIONS(1385), + [275] = { + [sym_concatenation] = STATE(647), + [sym_string] = STATE(650), + [sym_array] = STATE(647), + [sym_simple_expansion] = STATE(650), + [sym_string_expansion] = STATE(650), + [sym_expansion] = STATE(650), + [sym_command_substitution] = STATE(650), + [sym_process_substitution] = STATE(650), + [sym__empty_value] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym__special_characters] = ACTIONS(1219), [anon_sym_DQUOTE] = ACTIONS(209), [anon_sym_DOLLAR] = ACTIONS(211), - [sym_raw_string] = ACTIONS(1387), + [sym_raw_string] = ACTIONS(1221), [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), [anon_sym_LT_LPAREN] = ACTIONS(221), [anon_sym_GT_LPAREN] = ACTIONS(221), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1387), + [sym_word] = ACTIONS(1221), }, - [300] = { - [sym__expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_expression] = STATE(718), - [sym_parenthesized_expression] = STATE(718), - [sym_concatenation] = STATE(718), - [sym_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_string_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), + [276] = { + [sym__expression] = STATE(651), + [sym_binary_expression] = STATE(651), + [sym_unary_expression] = STATE(651), + [sym_parenthesized_expression] = STATE(651), + [sym_concatenation] = STATE(651), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(531), - [sym__special_characters] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(535), + [sym_raw_string] = ACTIONS(487), [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_LT_LPAREN] = ACTIONS(153), [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(537), - [sym_test_operator] = ACTIONS(539), + [sym_word] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), }, - [301] = { - [aux_sym_concatenation_repeat1] = STATE(719), - [sym__concat] = ACTIONS(581), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(543), - [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_EQ_TILDE] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), + [277] = { + [aux_sym_concatenation_repeat1] = STATE(652), + [sym__concat] = ACTIONS(533), + [anon_sym_RPAREN] = ACTIONS(495), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_LT] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(495), + [anon_sym_BANG_EQ] = ACTIONS(495), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), + [sym_test_operator] = ACTIONS(495), }, - [302] = { - [aux_sym_concatenation_repeat1] = STATE(719), - [sym__concat] = ACTIONS(581), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_EQ_TILDE] = ACTIONS(559), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), + [278] = { + [aux_sym_concatenation_repeat1] = STATE(652), + [sym__concat] = ACTIONS(533), + [anon_sym_RPAREN] = ACTIONS(511), + [anon_sym_AMP_AMP] = ACTIONS(511), + [anon_sym_PIPE_PIPE] = ACTIONS(511), + [anon_sym_EQ_TILDE] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(511), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(511), + [anon_sym_GT] = ACTIONS(511), + [anon_sym_BANG_EQ] = ACTIONS(511), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(559), + [sym_test_operator] = ACTIONS(511), }, - [303] = { - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1391), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), + [279] = { + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE_PIPE] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1391), + [sym_test_operator] = ACTIONS(1225), }, - [304] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(577), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), + [280] = { + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(529), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), + [sym_test_operator] = ACTIONS(525), }, - [305] = { - [sym_string] = STATE(723), - [sym_simple_expansion] = STATE(723), - [sym_string_expansion] = STATE(723), - [sym_expansion] = STATE(723), - [sym_command_substitution] = STATE(723), - [sym_process_substitution] = STATE(723), - [sym__special_characters] = ACTIONS(1399), + [281] = { + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym__special_characters] = ACTIONS(1233), [anon_sym_DQUOTE] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(1399), + [sym_raw_string] = ACTIONS(1233), [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), [anon_sym_BQUOTE] = ACTIONS(127), [anon_sym_LT_LPAREN] = ACTIONS(129), [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1399), + [sym_word] = ACTIONS(1233), }, - [306] = { - [aux_sym_concatenation_repeat1] = STATE(724), - [sym__concat] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(731), - [anon_sym_EQ_TILDE] = ACTIONS(731), - [anon_sym_EQ_EQ] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG_EQ] = ACTIONS(731), + [282] = { + [aux_sym_concatenation_repeat1] = STATE(657), + [sym__concat] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(683), + [anon_sym_PIPE_PIPE] = ACTIONS(683), + [anon_sym_RBRACK] = ACTIONS(683), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_BANG_EQ] = ACTIONS(683), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(731), + [sym_test_operator] = ACTIONS(683), }, - [307] = { - [sym__concat] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_RBRACK] = ACTIONS(735), - [anon_sym_EQ_TILDE] = ACTIONS(735), - [anon_sym_EQ_EQ] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), + [283] = { + [sym__concat] = ACTIONS(687), + [anon_sym_AMP_AMP] = ACTIONS(687), + [anon_sym_PIPE_PIPE] = ACTIONS(687), + [anon_sym_RBRACK] = ACTIONS(687), + [anon_sym_EQ_TILDE] = ACTIONS(687), + [anon_sym_EQ_EQ] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [anon_sym_BANG_EQ] = ACTIONS(687), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(735), + [sym_test_operator] = ACTIONS(687), }, - [308] = { - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [284] = { + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, - [309] = { + [285] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1403), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1237), [sym__string_content] = ACTIONS(233), [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), }, - [310] = { - [sym__concat] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_RBRACK] = ACTIONS(767), - [anon_sym_EQ_TILDE] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_BANG_EQ] = ACTIONS(767), + [286] = { + [sym__concat] = ACTIONS(719), + [anon_sym_AMP_AMP] = ACTIONS(719), + [anon_sym_PIPE_PIPE] = ACTIONS(719), + [anon_sym_RBRACK] = ACTIONS(719), + [anon_sym_EQ_TILDE] = ACTIONS(719), + [anon_sym_EQ_EQ] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(719), + [anon_sym_GT] = ACTIONS(719), + [anon_sym_BANG_EQ] = ACTIONS(719), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(767), + [sym_test_operator] = ACTIONS(719), }, - [311] = { - [sym__concat] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_RBRACK] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(771), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_BANG_EQ] = ACTIONS(771), + [287] = { + [sym__concat] = ACTIONS(723), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_RBRACK] = ACTIONS(723), + [anon_sym_EQ_TILDE] = ACTIONS(723), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(771), + [sym_test_operator] = ACTIONS(723), }, - [312] = { - [sym__concat] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_RBRACK] = ACTIONS(775), - [anon_sym_EQ_TILDE] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), + [288] = { + [sym__concat] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_EQ_TILDE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(727), }, - [313] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(1405), + [289] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1239), [sym_comment] = ACTIONS(53), }, - [314] = { - [sym_concatenation] = STATE(730), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(730), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_EQ] = ACTIONS(1409), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1413), - [anon_sym_COLON] = ACTIONS(1409), - [anon_sym_COLON_QMARK] = ACTIONS(1409), - [anon_sym_COLON_DASH] = ACTIONS(1409), - [anon_sym_PERCENT] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [290] = { + [sym_concatenation] = STATE(663), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(663), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_COLON] = ACTIONS(1243), + [anon_sym_COLON_QMARK] = ACTIONS(1243), + [anon_sym_COLON_DASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [315] = { - [sym_subscript] = STATE(734), - [sym_variable_name] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), + [291] = { + [sym_subscript] = STATE(667), + [sym_variable_name] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_AT] = ACTIONS(1417), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_0] = ACTIONS(1421), - [anon_sym__] = ACTIONS(1421), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_0] = ACTIONS(1255), + [anon_sym__] = ACTIONS(1255), }, - [316] = { - [sym_concatenation] = STATE(737), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(737), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_EQ] = ACTIONS(1425), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_COLON] = ACTIONS(1425), - [anon_sym_COLON_QMARK] = ACTIONS(1425), - [anon_sym_COLON_DASH] = ACTIONS(1425), - [anon_sym_PERCENT] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [292] = { + [sym_concatenation] = STATE(670), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(670), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(1259), + [anon_sym_COLON_QMARK] = ACTIONS(1259), + [anon_sym_COLON_DASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [317] = { - [sym_concatenation] = STATE(740), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(740), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1433), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_COLON] = ACTIONS(1433), - [anon_sym_COLON_QMARK] = ACTIONS(1433), - [anon_sym_COLON_DASH] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [293] = { + [sym_concatenation] = STATE(673), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(673), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_COLON_QMARK] = ACTIONS(1267), + [anon_sym_COLON_DASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [318] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1439), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), + [294] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_SEMI_SEMI] = ACTIONS(1275), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1275), + }, + [295] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_SEMI_SEMI] = ACTIONS(1275), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1275), + }, + [296] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(676), + [sym_c_style_for_statement] = STATE(676), + [sym_while_statement] = STATE(676), + [sym_if_statement] = STATE(676), + [sym_case_statement] = STATE(676), + [sym_function_definition] = STATE(676), + [sym_subshell] = STATE(676), + [sym_pipeline] = STATE(676), + [sym_list] = STATE(676), + [sym_negated_command] = STATE(676), + [sym_test_command] = STATE(676), + [sym_declaration_command] = STATE(676), + [sym_unset_command] = STATE(676), + [sym_command] = STATE(676), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(677), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), }, - [319] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1439), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), + [297] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(1273), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1279), + }, + [298] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1279), + }, + [299] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(679), + [sym_c_style_for_statement] = STATE(679), + [sym_while_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_case_statement] = STATE(679), + [sym_function_definition] = STATE(679), + [sym_subshell] = STATE(679), + [sym_pipeline] = STATE(679), + [sym_list] = STATE(679), + [sym_negated_command] = STATE(679), + [sym_test_command] = STATE(679), + [sym_declaration_command] = STATE(679), + [sym_unset_command] = STATE(679), + [sym_command] = STATE(679), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(680), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym_word] = ACTIONS(277), }, - [320] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(1439), + [300] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1285), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_LF] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1285), + }, + [301] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1285), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_LF] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1285), + }, + [302] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(683), + [sym_c_style_for_statement] = STATE(683), + [sym_while_statement] = STATE(683), + [sym_if_statement] = STATE(683), + [sym_case_statement] = STATE(683), + [sym_function_definition] = STATE(683), + [sym_subshell] = STATE(683), + [sym_pipeline] = STATE(683), + [sym_list] = STATE(683), + [sym_negated_command] = STATE(683), + [sym_test_command] = STATE(683), + [sym_declaration_command] = STATE(683), + [sym_unset_command] = STATE(683), + [sym_command] = STATE(683), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(684), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), }, - [321] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(1439), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [322] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [323] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [324] = { - [sym__expression] = STATE(743), - [sym_binary_expression] = STATE(743), - [sym_unary_expression] = STATE(743), - [sym_parenthesized_expression] = STATE(743), - [sym_concatenation] = STATE(743), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), + [303] = { + [sym__expression] = STATE(685), + [sym_binary_expression] = STATE(685), + [sym_unary_expression] = STATE(685), + [sym_parenthesized_expression] = STATE(685), + [sym_concatenation] = STATE(685), + [sym_string] = STATE(78), + [sym_simple_expansion] = STATE(78), + [sym_string_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [sym_process_substitution] = STATE(78), [anon_sym_LPAREN] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(113), [sym__special_characters] = ACTIONS(115), @@ -17894,2887 +16801,391 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(131), [sym_test_operator] = ACTIONS(133), }, - [325] = { - [sym_file_redirect] = STATE(748), - [sym_heredoc_redirect] = STATE(748), - [sym_herestring_redirect] = STATE(748), - [aux_sym_while_statement_repeat1] = STATE(748), - [sym_file_descriptor] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_SEMI_SEMI] = ACTIONS(1445), - [anon_sym_PIPE_AMP] = ACTIONS(1445), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_AMP_GT] = ACTIONS(1447), - [anon_sym_AMP_GT_GT] = ACTIONS(1447), - [anon_sym_LT_AMP] = ACTIONS(1447), - [anon_sym_GT_AMP] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_LT_LT_DASH] = ACTIONS(1449), - [anon_sym_LT_LT_LT] = ACTIONS(1451), + [304] = { + [sym_file_redirect] = STATE(690), + [sym_heredoc_redirect] = STATE(690), + [sym_herestring_redirect] = STATE(690), + [aux_sym_while_statement_repeat1] = STATE(690), + [sym_file_descriptor] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_SEMI_SEMI] = ACTIONS(1291), + [anon_sym_PIPE_AMP] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1293), + [anon_sym_GT] = ACTIONS(1293), + [anon_sym_GT_GT] = ACTIONS(1293), + [anon_sym_AMP_GT] = ACTIONS(1293), + [anon_sym_AMP_GT_GT] = ACTIONS(1293), + [anon_sym_LT_AMP] = ACTIONS(1293), + [anon_sym_GT_AMP] = ACTIONS(1293), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_LT_LT_DASH] = ACTIONS(1295), + [anon_sym_LT_LT_LT] = ACTIONS(1297), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_LF] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_LF] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1291), }, - [326] = { - [sym__expression] = STATE(743), - [sym_binary_expression] = STATE(743), - [sym_unary_expression] = STATE(743), - [sym_parenthesized_expression] = STATE(743), - [sym_concatenation] = STATE(743), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), - [anon_sym_LPAREN] = ACTIONS(1455), + [305] = { + [sym__expression] = STATE(685), + [sym_binary_expression] = STATE(685), + [sym_unary_expression] = STATE(685), + [sym_parenthesized_expression] = STATE(685), + [sym_concatenation] = STATE(685), + [sym_string] = STATE(78), + [sym_simple_expansion] = STATE(78), + [sym_string_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [sym_process_substitution] = STATE(78), + [anon_sym_LPAREN] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(113), - [sym__special_characters] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1459), + [sym__special_characters] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1305), [anon_sym_DOLLAR] = ACTIONS(119), [sym_raw_string] = ACTIONS(131), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1463), - [anon_sym_BQUOTE] = ACTIONS(1465), - [anon_sym_LT_LPAREN] = ACTIONS(1467), - [anon_sym_GT_LPAREN] = ACTIONS(1467), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1309), + [anon_sym_BQUOTE] = ACTIONS(1311), + [anon_sym_LT_LPAREN] = ACTIONS(1313), + [anon_sym_GT_LPAREN] = ACTIONS(1313), [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(131), [sym_test_operator] = ACTIONS(113), - [sym_regex] = ACTIONS(1469), + [sym_regex] = ACTIONS(1315), }, - [327] = { - [anon_sym_RPAREN] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1391), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), + [306] = { + [anon_sym_RPAREN] = ACTIONS(1317), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE_PIPE] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1391), + [sym_test_operator] = ACTIONS(1225), }, - [328] = { - [anon_sym_AMP_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(605), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), + [307] = { + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(559), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(605), + [sym_test_operator] = ACTIONS(557), }, - [329] = { - [sym_string] = STATE(751), - [sym_simple_expansion] = STATE(751), - [sym_string_expansion] = STATE(751), - [sym_expansion] = STATE(751), - [sym_command_substitution] = STATE(751), - [sym_process_substitution] = STATE(751), - [sym__special_characters] = ACTIONS(1473), + [308] = { + [sym_string] = STATE(693), + [sym_simple_expansion] = STATE(693), + [sym_string_expansion] = STATE(693), + [sym_expansion] = STATE(693), + [sym_command_substitution] = STATE(693), + [sym_process_substitution] = STATE(693), + [sym__special_characters] = ACTIONS(1319), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(1473), + [sym_raw_string] = ACTIONS(1319), [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_LT_LPAREN] = ACTIONS(153), [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1473), + [sym_word] = ACTIONS(1319), }, - [330] = { - [aux_sym_concatenation_repeat1] = STATE(752), - [sym__concat] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_RBRACK_RBRACK] = ACTIONS(731), - [anon_sym_EQ_TILDE] = ACTIONS(731), - [anon_sym_EQ_EQ] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG_EQ] = ACTIONS(731), + [309] = { + [aux_sym_concatenation_repeat1] = STATE(694), + [sym__concat] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(683), + [anon_sym_PIPE_PIPE] = ACTIONS(683), + [anon_sym_RBRACK_RBRACK] = ACTIONS(683), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_BANG_EQ] = ACTIONS(683), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(731), + [sym_test_operator] = ACTIONS(683), }, - [331] = { - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_RBRACK_RBRACK] = ACTIONS(735), - [anon_sym_EQ_TILDE] = ACTIONS(735), - [anon_sym_EQ_EQ] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), + [310] = { + [sym__concat] = ACTIONS(687), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_AMP_AMP] = ACTIONS(687), + [anon_sym_PIPE_PIPE] = ACTIONS(687), + [anon_sym_RBRACK_RBRACK] = ACTIONS(687), + [anon_sym_EQ_TILDE] = ACTIONS(687), + [anon_sym_EQ_EQ] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [anon_sym_BANG_EQ] = ACTIONS(687), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(735), + [sym_test_operator] = ACTIONS(687), }, - [332] = { - [anon_sym_DQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [311] = { + [anon_sym_DQUOTE] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, - [333] = { + [312] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1477), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1323), [sym__string_content] = ACTIONS(233), [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), }, - [334] = { - [sym__concat] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_RBRACK_RBRACK] = ACTIONS(767), - [anon_sym_EQ_TILDE] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_BANG_EQ] = ACTIONS(767), + [313] = { + [sym__concat] = ACTIONS(719), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_AMP_AMP] = ACTIONS(719), + [anon_sym_PIPE_PIPE] = ACTIONS(719), + [anon_sym_RBRACK_RBRACK] = ACTIONS(719), + [anon_sym_EQ_TILDE] = ACTIONS(719), + [anon_sym_EQ_EQ] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(719), + [anon_sym_GT] = ACTIONS(719), + [anon_sym_BANG_EQ] = ACTIONS(719), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(767), + [sym_test_operator] = ACTIONS(719), }, - [335] = { - [sym__concat] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_RBRACK_RBRACK] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(771), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_BANG_EQ] = ACTIONS(771), + [314] = { + [sym__concat] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_RBRACK_RBRACK] = ACTIONS(723), + [anon_sym_EQ_TILDE] = ACTIONS(723), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(771), + [sym_test_operator] = ACTIONS(723), }, - [336] = { - [sym__concat] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_RBRACK_RBRACK] = ACTIONS(775), - [anon_sym_EQ_TILDE] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), + [315] = { + [sym__concat] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_RBRACK_RBRACK] = ACTIONS(727), + [anon_sym_EQ_TILDE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(727), }, - [337] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(1479), + [316] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1325), [sym_comment] = ACTIONS(53), }, - [338] = { - [sym_concatenation] = STATE(758), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(758), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_COLON] = ACTIONS(1483), - [anon_sym_COLON_QMARK] = ACTIONS(1483), - [anon_sym_COLON_DASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [317] = { + [sym_concatenation] = STATE(700), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(700), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1329), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_COLON_QMARK] = ACTIONS(1329), + [anon_sym_COLON_DASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [339] = { - [sym_subscript] = STATE(762), - [sym_variable_name] = ACTIONS(1489), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), + [318] = { + [sym_subscript] = STATE(704), + [sym_variable_name] = ACTIONS(1335), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_0] = ACTIONS(1495), - [anon_sym__] = ACTIONS(1495), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AT] = ACTIONS(1337), + [anon_sym_QMARK] = ACTIONS(1337), + [anon_sym_0] = ACTIONS(1341), + [anon_sym__] = ACTIONS(1341), }, - [340] = { - [sym_concatenation] = STATE(765), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(765), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1499), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1503), - [anon_sym_COLON] = ACTIONS(1499), - [anon_sym_COLON_QMARK] = ACTIONS(1499), - [anon_sym_COLON_DASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [319] = { + [sym_concatenation] = STATE(707), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(707), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_COLON] = ACTIONS(1345), + [anon_sym_COLON_QMARK] = ACTIONS(1345), + [anon_sym_COLON_DASH] = ACTIONS(1345), + [anon_sym_PERCENT] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [341] = { - [sym_concatenation] = STATE(768), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(768), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_EQ] = ACTIONS(1507), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_COLON] = ACTIONS(1507), - [anon_sym_COLON_QMARK] = ACTIONS(1507), - [anon_sym_COLON_DASH] = ACTIONS(1507), - [anon_sym_PERCENT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [320] = { + [sym_concatenation] = STATE(710), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(710), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(1353), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_COLON] = ACTIONS(1353), + [anon_sym_COLON_QMARK] = ACTIONS(1353), + [anon_sym_COLON_DASH] = ACTIONS(1353), + [anon_sym_PERCENT] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [342] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1513), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [343] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1513), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [344] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(1513), - [sym_comment] = ACTIONS(53), - }, - [345] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(1513), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [346] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [347] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [348] = { - [sym__expression] = STATE(771), - [sym_binary_expression] = STATE(771), - [sym_unary_expression] = STATE(771), - [sym_parenthesized_expression] = STATE(771), - [sym_concatenation] = STATE(771), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(137), - [sym__special_characters] = ACTIONS(139), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(155), - [sym_test_operator] = ACTIONS(157), - }, - [349] = { - [sym__expression] = STATE(771), - [sym_binary_expression] = STATE(771), - [sym_unary_expression] = STATE(771), - [sym_parenthesized_expression] = STATE(771), - [sym_concatenation] = STATE(771), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(137), - [sym__special_characters] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(155), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1523), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1525), - [anon_sym_BQUOTE] = ACTIONS(1527), - [anon_sym_LT_LPAREN] = ACTIONS(1529), - [anon_sym_GT_LPAREN] = ACTIONS(1529), + [321] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1361), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(155), - [sym_test_operator] = ACTIONS(137), - [sym_regex] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1361), }, - [350] = { - [sym_concatenation] = STATE(773), - [sym_string] = STATE(776), - [sym_array] = STATE(773), - [sym_simple_expansion] = STATE(776), - [sym_string_expansion] = STATE(776), - [sym_expansion] = STATE(776), - [sym_command_substitution] = STATE(776), - [sym_process_substitution] = STATE(776), - [sym__empty_value] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1535), - [sym__special_characters] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(167), - [sym_raw_string] = ACTIONS(1539), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1541), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1543), - [anon_sym_BQUOTE] = ACTIONS(1545), - [anon_sym_LT_LPAREN] = ACTIONS(1547), - [anon_sym_GT_LPAREN] = ACTIONS(1547), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1539), - }, - [351] = { - [sym_string] = STATE(777), - [sym_simple_expansion] = STATE(777), - [sym_string_expansion] = STATE(777), - [sym_expansion] = STATE(777), - [sym_command_substitution] = STATE(777), - [sym_process_substitution] = STATE(777), - [sym__special_characters] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(167), - [sym_raw_string] = ACTIONS(1549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1541), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1543), - [anon_sym_BQUOTE] = ACTIONS(1545), - [anon_sym_LT_LPAREN] = ACTIONS(1547), - [anon_sym_GT_LPAREN] = ACTIONS(1547), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1549), - }, - [352] = { - [aux_sym_concatenation_repeat1] = STATE(778), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [322] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_SEMI_SEMI] = ACTIONS(1361), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [353] = { - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [354] = { - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [355] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [356] = { - [sym__concat] = ACTIONS(767), - [sym_variable_name] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), - [sym_word] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), - }, - [357] = { - [sym__concat] = ACTIONS(771), - [sym_variable_name] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [sym__special_characters] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(773), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), - [sym_word] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LF] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - }, - [358] = { - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [anon_sym_PIPE_AMP] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [sym__special_characters] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(777), - [anon_sym_GT_LPAREN] = ACTIONS(777), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), - [sym_word] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - }, - [359] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(1555), - [sym_comment] = ACTIONS(53), - }, - [360] = { - [sym_concatenation] = STATE(784), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(784), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_EQ] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1563), - [anon_sym_COLON] = ACTIONS(1559), - [anon_sym_COLON_QMARK] = ACTIONS(1559), - [anon_sym_COLON_DASH] = ACTIONS(1559), - [anon_sym_PERCENT] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [361] = { - [sym_subscript] = STATE(788), - [sym_variable_name] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_AT] = ACTIONS(1567), - [anon_sym_QMARK] = ACTIONS(1567), - [anon_sym_0] = ACTIONS(1571), - [anon_sym__] = ACTIONS(1571), - }, - [362] = { - [sym_concatenation] = STATE(791), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(791), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_EQ] = ACTIONS(1575), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_COLON] = ACTIONS(1575), - [anon_sym_COLON_QMARK] = ACTIONS(1575), - [anon_sym_COLON_DASH] = ACTIONS(1575), - [anon_sym_PERCENT] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [363] = { - [sym_concatenation] = STATE(794), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(794), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(1583), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_COLON] = ACTIONS(1583), - [anon_sym_COLON_QMARK] = ACTIONS(1583), - [anon_sym_COLON_DASH] = ACTIONS(1583), - [anon_sym_PERCENT] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [364] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [365] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [366] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(1589), - [sym_comment] = ACTIONS(53), - }, - [367] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(1589), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [368] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [369] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [370] = { - [sym_variable_assignment] = STATE(104), - [sym_subscript] = STATE(105), - [sym_concatenation] = STATE(104), - [sym_string] = STATE(98), - [sym_simple_expansion] = STATE(98), - [sym_string_expansion] = STATE(98), - [sym_expansion] = STATE(98), - [sym_command_substitution] = STATE(98), - [sym_process_substitution] = STATE(98), - [aux_sym_declaration_command_repeat1] = STATE(370), - [sym_variable_name] = ACTIONS(1593), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_SEMI_SEMI] = ACTIONS(1596), - [anon_sym_PIPE_AMP] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_PIPE_PIPE] = ACTIONS(1596), - [sym__special_characters] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym_DOLLAR] = ACTIONS(1604), - [sym_raw_string] = ACTIONS(1607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1613), - [anon_sym_BQUOTE] = ACTIONS(1616), - [anon_sym_LT_LPAREN] = ACTIONS(1619), - [anon_sym_GT_LPAREN] = ACTIONS(1619), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1622), - [sym_word] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_LF] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1596), - }, - [371] = { - [sym_string] = STATE(797), - [sym_simple_expansion] = STATE(797), - [sym_string_expansion] = STATE(797), - [sym_expansion] = STATE(797), - [sym_command_substitution] = STATE(797), - [sym_process_substitution] = STATE(797), - [sym__special_characters] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(1627), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1633), - [anon_sym_LT_LPAREN] = ACTIONS(1635), - [anon_sym_GT_LPAREN] = ACTIONS(1635), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1627), - }, - [372] = { - [aux_sym_concatenation_repeat1] = STATE(798), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [373] = { - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [374] = { - [anon_sym_DQUOTE] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [375] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1639), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [376] = { - [sym__concat] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), - [sym_word] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), - }, - [377] = { - [sym__concat] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [sym__special_characters] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(773), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), - [sym_word] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LF] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - }, - [378] = { - [sym__concat] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [anon_sym_PIPE_AMP] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [sym__special_characters] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(777), - [anon_sym_GT_LPAREN] = ACTIONS(777), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), - [sym_word] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - }, - [379] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(1641), - [sym_comment] = ACTIONS(53), - }, - [380] = { - [sym_concatenation] = STATE(804), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(804), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_EQ] = ACTIONS(1645), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1649), - [anon_sym_COLON] = ACTIONS(1645), - [anon_sym_COLON_QMARK] = ACTIONS(1645), - [anon_sym_COLON_DASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [381] = { - [sym_subscript] = STATE(808), - [sym_variable_name] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_QMARK] = ACTIONS(1653), - [anon_sym_0] = ACTIONS(1657), - [anon_sym__] = ACTIONS(1657), - }, - [382] = { - [sym_concatenation] = STATE(811), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(811), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1661), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1665), - [anon_sym_COLON] = ACTIONS(1661), - [anon_sym_COLON_QMARK] = ACTIONS(1661), - [anon_sym_COLON_DASH] = ACTIONS(1661), - [anon_sym_PERCENT] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [383] = { - [sym_concatenation] = STATE(814), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(814), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_EQ] = ACTIONS(1669), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_COLON] = ACTIONS(1669), - [anon_sym_COLON_QMARK] = ACTIONS(1669), - [anon_sym_COLON_DASH] = ACTIONS(1669), - [anon_sym_PERCENT] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [384] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [385] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [386] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(1675), - [sym_comment] = ACTIONS(53), - }, - [387] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(1675), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [388] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [389] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [390] = { - [sym_concatenation] = STATE(390), - [sym_string] = STATE(110), - [sym_simple_expansion] = STATE(110), - [sym_string_expansion] = STATE(110), - [sym_expansion] = STATE(110), - [sym_command_substitution] = STATE(110), - [sym_process_substitution] = STATE(110), - [aux_sym_unset_command_repeat1] = STATE(390), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_SEMI_SEMI] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [sym__special_characters] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1687), - [sym_raw_string] = ACTIONS(1690), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), - [anon_sym_BQUOTE] = ACTIONS(1699), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), - [sym_word] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_LF] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1679), - }, - [391] = { - [sym_string] = STATE(817), - [sym_simple_expansion] = STATE(817), - [sym_string_expansion] = STATE(817), - [sym_expansion] = STATE(817), - [sym_command_substitution] = STATE(817), - [sym_process_substitution] = STATE(817), - [sym__special_characters] = ACTIONS(1710), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym_raw_string] = ACTIONS(1710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), - [anon_sym_BQUOTE] = ACTIONS(219), - [anon_sym_LT_LPAREN] = ACTIONS(221), - [anon_sym_GT_LPAREN] = ACTIONS(221), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1710), - }, - [392] = { - [aux_sym_concatenation_repeat1] = STATE(818), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(731), - }, - [393] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(735), - [anon_sym_LT_AMP] = ACTIONS(735), - [anon_sym_GT_AMP] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(735), - }, - [394] = { - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [395] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(1714), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [396] = { - [sym_file_descriptor] = ACTIONS(767), - [sym__concat] = ACTIONS(767), - [sym_variable_name] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_AMP_GT] = ACTIONS(769), - [anon_sym_AMP_GT_GT] = ACTIONS(767), - [anon_sym_LT_AMP] = ACTIONS(767), - [anon_sym_GT_AMP] = ACTIONS(767), - [sym__special_characters] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), - [anon_sym_BQUOTE] = ACTIONS(767), - [anon_sym_LT_LPAREN] = ACTIONS(767), - [anon_sym_GT_LPAREN] = ACTIONS(767), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - }, - [397] = { - [sym_file_descriptor] = ACTIONS(771), - [sym__concat] = ACTIONS(771), - [sym_variable_name] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), - [sym__special_characters] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(771), - [anon_sym_LT_LPAREN] = ACTIONS(771), - [anon_sym_GT_LPAREN] = ACTIONS(771), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(771), - }, - [398] = { - [sym_file_descriptor] = ACTIONS(775), - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_PIPE_AMP] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(775), - [anon_sym_LT_AMP] = ACTIONS(775), - [anon_sym_GT_AMP] = ACTIONS(775), - [sym__special_characters] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LT_LPAREN] = ACTIONS(775), - [anon_sym_GT_LPAREN] = ACTIONS(775), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(775), - }, - [399] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(1716), - [sym_comment] = ACTIONS(53), - }, - [400] = { - [sym_concatenation] = STATE(824), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(824), - [anon_sym_RBRACE] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(1720), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1724), - [anon_sym_COLON] = ACTIONS(1720), - [anon_sym_COLON_QMARK] = ACTIONS(1720), - [anon_sym_COLON_DASH] = ACTIONS(1720), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [401] = { - [sym_subscript] = STATE(828), - [sym_variable_name] = ACTIONS(1726), - [anon_sym_DOLLAR] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1728), - [anon_sym_0] = ACTIONS(1732), - [anon_sym__] = ACTIONS(1732), - }, - [402] = { - [sym_concatenation] = STATE(831), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(831), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1736), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_COLON] = ACTIONS(1736), - [anon_sym_COLON_QMARK] = ACTIONS(1736), - [anon_sym_COLON_DASH] = ACTIONS(1736), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [403] = { - [sym_concatenation] = STATE(834), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(834), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_EQ] = ACTIONS(1744), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1744), - [anon_sym_COLON_QMARK] = ACTIONS(1744), - [anon_sym_COLON_DASH] = ACTIONS(1744), - [anon_sym_PERCENT] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [404] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [405] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [406] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(1750), - [sym_comment] = ACTIONS(53), - }, - [407] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [408] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1752), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [409] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1752), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [410] = { - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1754), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_EQ_TILDE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [411] = { - [aux_sym_concatenation_repeat1] = STATE(411), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_EQ_TILDE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [412] = { - [sym__simple_heredoc_body] = ACTIONS(1761), - [sym__heredoc_body_beginning] = ACTIONS(1761), - [sym_file_descriptor] = ACTIONS(1761), - [sym__concat] = ACTIONS(1761), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1763), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1763), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), - }, - [413] = { - [sym__concat] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym__string_content] = ACTIONS(767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [sym_comment] = ACTIONS(179), - }, - [414] = { - [sym__concat] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [sym__string_content] = ACTIONS(1769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1767), - [anon_sym_BQUOTE] = ACTIONS(1767), - [sym_comment] = ACTIONS(179), - }, - [415] = { - [sym__concat] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym__string_content] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), - [anon_sym_BQUOTE] = ACTIONS(777), - [sym_comment] = ACTIONS(179), - }, - [416] = { - [anon_sym_DQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [sym__string_content] = ACTIONS(1769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1767), - [anon_sym_BQUOTE] = ACTIONS(1767), - [sym_comment] = ACTIONS(179), - }, - [417] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(1771), - [sym_comment] = ACTIONS(53), - }, - [418] = { - [sym_concatenation] = STATE(841), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(841), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_EQ] = ACTIONS(1775), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_COLON] = ACTIONS(1775), - [anon_sym_COLON_QMARK] = ACTIONS(1775), - [anon_sym_COLON_DASH] = ACTIONS(1775), - [anon_sym_PERCENT] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [419] = { - [sym_subscript] = STATE(845), - [sym_variable_name] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(1783), - [anon_sym_0] = ACTIONS(1787), - [anon_sym__] = ACTIONS(1787), - }, - [420] = { - [sym_concatenation] = STATE(848), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(848), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_EQ] = ACTIONS(1791), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1795), - [anon_sym_COLON] = ACTIONS(1791), - [anon_sym_COLON_QMARK] = ACTIONS(1791), - [anon_sym_COLON_DASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [421] = { - [sym_concatenation] = STATE(851), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(851), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_EQ] = ACTIONS(1799), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1801), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_COLON] = ACTIONS(1799), - [anon_sym_COLON_QMARK] = ACTIONS(1799), - [anon_sym_COLON_DASH] = ACTIONS(1799), - [anon_sym_PERCENT] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [422] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [423] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [424] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(1805), - [sym_comment] = ACTIONS(53), - }, - [425] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(1805), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [426] = { - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [427] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1809), - [sym__string_content] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1815), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_comment] = ACTIONS(179), - }, - [428] = { - [sym_concatenation] = STATE(857), - [sym_string] = STATE(856), - [sym_simple_expansion] = STATE(856), - [sym_string_expansion] = STATE(856), - [sym_expansion] = STATE(856), - [sym_command_substitution] = STATE(856), - [sym_process_substitution] = STATE(856), - [sym__special_characters] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(1826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1826), - }, - [429] = { - [sym_concatenation] = STATE(867), - [sym_string] = STATE(862), - [sym_simple_expansion] = STATE(862), - [sym_string_expansion] = STATE(862), - [sym_expansion] = STATE(862), - [sym_command_substitution] = STATE(862), - [sym_process_substitution] = STATE(862), - [anon_sym_RBRACE] = ACTIONS(1828), - [sym__special_characters] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1836), - }, - [430] = { - [sym__simple_heredoc_body] = ACTIONS(1846), - [sym__heredoc_body_beginning] = ACTIONS(1846), - [sym_file_descriptor] = ACTIONS(1846), - [sym__concat] = ACTIONS(1846), - [anon_sym_esac] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_SEMI_SEMI] = ACTIONS(1848), - [anon_sym_PIPE_AMP] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [anon_sym_EQ_TILDE] = ACTIONS(1848), - [anon_sym_EQ_EQ] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_GT_GT] = ACTIONS(1848), - [anon_sym_AMP_GT] = ACTIONS(1848), - [anon_sym_AMP_GT_GT] = ACTIONS(1848), - [anon_sym_LT_AMP] = ACTIONS(1848), - [anon_sym_GT_AMP] = ACTIONS(1848), - [anon_sym_LT_LT] = ACTIONS(1848), - [anon_sym_LT_LT_DASH] = ACTIONS(1848), - [anon_sym_LT_LT_LT] = ACTIONS(1848), - [sym__special_characters] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), - [anon_sym_BQUOTE] = ACTIONS(1848), - [anon_sym_LT_LPAREN] = ACTIONS(1848), - [anon_sym_GT_LPAREN] = ACTIONS(1848), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), - }, - [431] = { - [aux_sym_concatenation_repeat1] = STATE(869), - [sym__concat] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_EQ] = ACTIONS(1854), - [sym__special_characters] = ACTIONS(1854), - [anon_sym_DQUOTE] = ACTIONS(1852), - [anon_sym_DOLLAR] = ACTIONS(1854), - [sym_raw_string] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1852), - [anon_sym_COLON] = ACTIONS(1854), - [anon_sym_COLON_QMARK] = ACTIONS(1854), - [anon_sym_COLON_DASH] = ACTIONS(1854), - [anon_sym_PERCENT] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1852), - [anon_sym_BQUOTE] = ACTIONS(1852), - [anon_sym_LT_LPAREN] = ACTIONS(1852), - [anon_sym_GT_LPAREN] = ACTIONS(1852), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1854), - }, - [432] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(872), - [anon_sym_DQUOTE] = ACTIONS(1856), - [anon_sym_DOLLAR] = ACTIONS(1858), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [433] = { - [sym_string] = STATE(874), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(1860), - [sym_raw_string] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1864), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_AT] = ACTIONS(1860), - [anon_sym_QMARK] = ACTIONS(1860), - [anon_sym_0] = ACTIONS(1866), - [anon_sym__] = ACTIONS(1866), - }, - [434] = { - [aux_sym_concatenation_repeat1] = STATE(869), - [sym__concat] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1870), - [sym__special_characters] = ACTIONS(1870), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1870), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1870), - [anon_sym_COLON_QMARK] = ACTIONS(1870), - [anon_sym_COLON_DASH] = ACTIONS(1870), - [anon_sym_PERCENT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_BQUOTE] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1870), - }, - [435] = { - [sym_subscript] = STATE(880), - [sym_variable_name] = ACTIONS(1872), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_AT] = ACTIONS(1874), - [anon_sym_QMARK] = ACTIONS(1874), - [anon_sym_0] = ACTIONS(1880), - [anon_sym__] = ACTIONS(1880), - }, - [436] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(1882), - }, - [437] = { - [sym_for_statement] = STATE(882), - [sym_c_style_for_statement] = STATE(882), - [sym_while_statement] = STATE(882), - [sym_if_statement] = STATE(882), - [sym_case_statement] = STATE(882), - [sym_function_definition] = STATE(882), - [sym_subshell] = STATE(882), - [sym_pipeline] = STATE(882), - [sym_list] = STATE(882), - [sym_negated_command] = STATE(882), - [sym_test_command] = STATE(882), - [sym_declaration_command] = STATE(882), - [sym_unset_command] = STATE(882), - [sym_command] = STATE(882), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(883), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [438] = { - [sym_for_statement] = STATE(884), - [sym_c_style_for_statement] = STATE(884), - [sym_while_statement] = STATE(884), - [sym_if_statement] = STATE(884), - [sym_case_statement] = STATE(884), - [sym_function_definition] = STATE(884), - [sym_subshell] = STATE(884), - [sym_pipeline] = STATE(884), - [sym_list] = STATE(884), - [sym_negated_command] = STATE(884), - [sym_test_command] = STATE(884), - [sym_declaration_command] = STATE(884), - [sym_unset_command] = STATE(884), - [sym_command] = STATE(884), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(885), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1361), }, - [439] = { - [sym_for_statement] = STATE(886), - [sym_c_style_for_statement] = STATE(886), - [sym_while_statement] = STATE(886), - [sym_if_statement] = STATE(886), - [sym_case_statement] = STATE(886), - [sym_function_definition] = STATE(886), - [sym_subshell] = STATE(886), - [sym_pipeline] = STATE(886), - [sym_list] = STATE(886), - [sym_negated_command] = STATE(886), - [sym_test_command] = STATE(886), - [sym_declaration_command] = STATE(886), - [sym_unset_command] = STATE(886), - [sym_command] = STATE(886), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(887), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [440] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [441] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(1890), - [sym_comment] = ACTIONS(53), - }, - [442] = { - [sym_concatenation] = STATE(893), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(893), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_EQ] = ACTIONS(1894), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1894), - [anon_sym_COLON_QMARK] = ACTIONS(1894), - [anon_sym_COLON_DASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [443] = { - [sym_concatenation] = STATE(896), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(896), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_EQ] = ACTIONS(1902), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_COLON] = ACTIONS(1902), - [anon_sym_COLON_QMARK] = ACTIONS(1902), - [anon_sym_COLON_DASH] = ACTIONS(1902), - [anon_sym_PERCENT] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [444] = { - [sym_concatenation] = STATE(898), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(898), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(1908), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_COLON] = ACTIONS(1908), - [anon_sym_COLON_QMARK] = ACTIONS(1908), - [anon_sym_COLON_DASH] = ACTIONS(1908), - [anon_sym_PERCENT] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [445] = { - [sym__simple_heredoc_body] = ACTIONS(1914), - [sym__heredoc_body_beginning] = ACTIONS(1914), - [sym_file_descriptor] = ACTIONS(1914), - [sym__concat] = ACTIONS(1914), - [anon_sym_esac] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(1916), - [anon_sym_EQ_EQ] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1916), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(1916), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), - }, - [446] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(1918), - }, - [447] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [448] = { - [sym__simple_heredoc_body] = ACTIONS(1922), - [sym__heredoc_body_beginning] = ACTIONS(1922), - [sym_file_descriptor] = ACTIONS(1922), - [sym__concat] = ACTIONS(1922), - [anon_sym_esac] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_EQ_TILDE] = ACTIONS(1924), - [anon_sym_EQ_EQ] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_GT_GT] = ACTIONS(1924), - [anon_sym_AMP_GT] = ACTIONS(1924), - [anon_sym_AMP_GT_GT] = ACTIONS(1924), - [anon_sym_LT_AMP] = ACTIONS(1924), - [anon_sym_GT_AMP] = ACTIONS(1924), - [anon_sym_LT_LT] = ACTIONS(1924), - [anon_sym_LT_LT_DASH] = ACTIONS(1924), - [anon_sym_LT_LT_LT] = ACTIONS(1924), - [sym__special_characters] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1924), - }, - [449] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(1926), - }, - [450] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [451] = { - [sym_concatenation] = STATE(714), - [sym_string] = STATE(903), - [sym_array] = STATE(714), - [sym_simple_expansion] = STATE(903), - [sym_string_expansion] = STATE(903), - [sym_expansion] = STATE(903), - [sym_command_substitution] = STATE(903), - [sym_process_substitution] = STATE(903), - [sym__empty_value] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1383), - [sym__special_characters] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym_raw_string] = ACTIONS(1930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), - [anon_sym_BQUOTE] = ACTIONS(219), - [anon_sym_LT_LPAREN] = ACTIONS(221), - [anon_sym_GT_LPAREN] = ACTIONS(221), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1930), - }, - [452] = { - [sym__expression] = STATE(905), - [sym_binary_expression] = STATE(905), - [sym_unary_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(905), - [sym_concatenation] = STATE(905), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [anon_sym_SEMI_SEMI] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [sym__special_characters] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_LT_LPAREN] = ACTIONS(427), - [anon_sym_GT_LPAREN] = ACTIONS(427), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(419), - [sym_test_operator] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_LF] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1932), - }, - [453] = { - [anon_sym_in] = ACTIONS(1936), - [anon_sym_SEMI_SEMI] = ACTIONS(1938), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LF] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1938), - }, - [454] = { - [sym_do_group] = STATE(909), - [anon_sym_do] = ACTIONS(1942), - [sym_comment] = ACTIONS(53), - }, - [455] = { - [anon_sym_then] = ACTIONS(1944), - [sym_comment] = ACTIONS(53), - }, - [456] = { - [aux_sym_concatenation_repeat1] = STATE(245), - [sym__concat] = ACTIONS(445), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_SEMI_SEMI] = ACTIONS(1948), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_LF] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1948), - }, - [457] = { - [aux_sym_concatenation_repeat1] = STATE(245), - [sym__concat] = ACTIONS(445), - [anon_sym_in] = ACTIONS(1952), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1954), - }, - [458] = { - [anon_sym_in] = ACTIONS(1952), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LF] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1954), - }, - [459] = { - [sym_compound_statement] = STATE(917), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(53), - }, - [460] = { - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_LF] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1964), - }, - [461] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_LF] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1964), - }, - [462] = { - [sym__terminated_statement] = STATE(297), - [sym_for_statement] = STATE(920), - [sym_c_style_for_statement] = STATE(920), - [sym_while_statement] = STATE(920), - [sym_if_statement] = STATE(920), - [sym_case_statement] = STATE(920), - [sym_function_definition] = STATE(920), - [sym_subshell] = STATE(920), - [sym_pipeline] = STATE(920), - [sym_list] = STATE(920), - [sym_negated_command] = STATE(920), - [sym_test_command] = STATE(920), - [sym_declaration_command] = STATE(920), - [sym_unset_command] = STATE(920), - [sym_command] = STATE(920), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(921), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(68), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(61), - [sym_simple_expansion] = STATE(61), - [sym_string_expansion] = STATE(61), - [sym_expansion] = STATE(61), - [sym_command_substitution] = STATE(61), - [sym_process_substitution] = STATE(61), - [aux_sym_program_repeat1] = STATE(297), - [aux_sym_command_repeat1] = STATE(68), + [323] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(713), + [sym_c_style_for_statement] = STATE(713), + [sym_while_statement] = STATE(713), + [sym_if_statement] = STATE(713), + [sym_case_statement] = STATE(713), + [sym_function_definition] = STATE(713), + [sym_subshell] = STATE(713), + [sym_pipeline] = STATE(713), + [sym_list] = STATE(713), + [sym_negated_command] = STATE(713), + [sym_test_command] = STATE(713), + [sym_declaration_command] = STATE(713), + [sym_unset_command] = STATE(713), + [sym_command] = STATE(713), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(714), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), @@ -20812,306 +17223,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [463] = { - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_PIPE_AMP] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_BQUOTE] = ACTIONS(529), - [sym_comment] = ACTIONS(53), - }, - [464] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(1968), - [anon_sym_EQ_TILDE] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(577), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), - }, - [465] = { - [anon_sym_AMP_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(605), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1968), - [anon_sym_EQ_TILDE] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(605), - }, - [466] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_PLUS_EQ] = ACTIONS(1970), - [sym_comment] = ACTIONS(53), - }, - [467] = { - [aux_sym_concatenation_repeat1] = STATE(925), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_PIPE_AMP] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [sym__special_characters] = ACTIONS(615), - [anon_sym_DQUOTE] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_raw_string] = ACTIONS(615), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(615), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_LT_LPAREN] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(615), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), - [sym_word] = ACTIONS(617), - }, - [468] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(928), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1976), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), + [324] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1365), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(1359), [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LF] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1365), }, - [469] = { - [sym_string] = STATE(930), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(1978), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_DASH] = ACTIONS(1978), + [325] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1365), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1359), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_AT] = ACTIONS(1978), - [anon_sym_QMARK] = ACTIONS(1978), - [anon_sym_0] = ACTIONS(1984), - [anon_sym__] = ACTIONS(1984), - }, - [470] = { - [aux_sym_concatenation_repeat1] = STATE(925), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_PIPE_AMP] = ACTIONS(633), - [anon_sym_AMP_AMP] = ACTIONS(633), - [anon_sym_PIPE_PIPE] = ACTIONS(633), - [sym__special_characters] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_raw_string] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), - [anon_sym_BQUOTE] = ACTIONS(633), - [anon_sym_LT_LPAREN] = ACTIONS(633), - [anon_sym_GT_LPAREN] = ACTIONS(633), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), - [sym_word] = ACTIONS(635), - }, - [471] = { - [sym_subscript] = STATE(936), - [sym_variable_name] = ACTIONS(1986), - [anon_sym_DOLLAR] = ACTIONS(1988), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_DASH] = ACTIONS(1988), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(1988), - [anon_sym_0] = ACTIONS(1994), - [anon_sym__] = ACTIONS(1994), - }, - [472] = { - [sym_for_statement] = STATE(937), - [sym_c_style_for_statement] = STATE(937), - [sym_while_statement] = STATE(937), - [sym_if_statement] = STATE(937), - [sym_case_statement] = STATE(937), - [sym_function_definition] = STATE(937), - [sym_subshell] = STATE(937), - [sym_pipeline] = STATE(937), - [sym_list] = STATE(937), - [sym_negated_command] = STATE(937), - [sym_test_command] = STATE(937), - [sym_declaration_command] = STATE(937), - [sym_unset_command] = STATE(937), - [sym_command] = STATE(937), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(938), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [473] = { - [sym_for_statement] = STATE(939), - [sym_c_style_for_statement] = STATE(939), - [sym_while_statement] = STATE(939), - [sym_if_statement] = STATE(939), - [sym_case_statement] = STATE(939), - [sym_function_definition] = STATE(939), - [sym_subshell] = STATE(939), - [sym_pipeline] = STATE(939), - [sym_list] = STATE(939), - [sym_negated_command] = STATE(939), - [sym_test_command] = STATE(939), - [sym_declaration_command] = STATE(939), - [sym_unset_command] = STATE(939), - [sym_command] = STATE(939), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(940), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LF] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1365), }, - [474] = { - [sym_for_statement] = STATE(941), - [sym_c_style_for_statement] = STATE(941), - [sym_while_statement] = STATE(941), - [sym_if_statement] = STATE(941), - [sym_case_statement] = STATE(941), - [sym_function_definition] = STATE(941), - [sym_subshell] = STATE(941), - [sym_pipeline] = STATE(941), - [sym_list] = STATE(941), - [sym_negated_command] = STATE(941), - [sym_test_command] = STATE(941), - [sym_declaration_command] = STATE(941), - [sym_unset_command] = STATE(941), - [sym_command] = STATE(941), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(942), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), + [326] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(716), + [sym_c_style_for_statement] = STATE(716), + [sym_while_statement] = STATE(716), + [sym_if_statement] = STATE(716), + [sym_case_statement] = STATE(716), + [sym_function_definition] = STATE(716), + [sym_subshell] = STATE(716), + [sym_pipeline] = STATE(716), + [sym_list] = STATE(716), + [sym_negated_command] = STATE(716), + [sym_test_command] = STATE(716), + [sym_declaration_command] = STATE(716), + [sym_unset_command] = STATE(716), + [sym_command] = STATE(716), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(717), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -21119,350 +17319,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_word] = ACTIONS(277), }, - [475] = { - [sym_variable_name] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [sym__special_characters] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(649), - [sym_raw_string] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), - [sym_word] = ACTIONS(649), - }, - [476] = { - [sym_variable_name] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_PIPE_AMP] = ACTIONS(633), - [anon_sym_AMP_AMP] = ACTIONS(633), - [anon_sym_PIPE_PIPE] = ACTIONS(633), - [sym__special_characters] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_raw_string] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), - [anon_sym_BQUOTE] = ACTIONS(633), - [anon_sym_LT_LPAREN] = ACTIONS(633), - [anon_sym_GT_LPAREN] = ACTIONS(633), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), - [sym_word] = ACTIONS(635), - }, - [477] = { - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_PLUS_EQ] = ACTIONS(1970), - [sym_comment] = ACTIONS(53), - }, - [478] = { - [sym_variable_assignment] = STATE(476), - [sym_subscript] = STATE(477), - [sym_concatenation] = STATE(476), - [sym_string] = STATE(470), - [sym_simple_expansion] = STATE(470), - [sym_string_expansion] = STATE(470), - [sym_expansion] = STATE(470), - [sym_command_substitution] = STATE(470), - [sym_process_substitution] = STATE(470), - [aux_sym_declaration_command_repeat1] = STATE(943), - [sym_variable_name] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_PIPE_AMP] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(653), - [sym__special_characters] = ACTIONS(847), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), - [anon_sym_BQUOTE] = ACTIONS(859), - [anon_sym_LT_LPAREN] = ACTIONS(861), - [anon_sym_GT_LPAREN] = ACTIONS(861), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(863), - [sym_word] = ACTIONS(865), - }, - [479] = { - [aux_sym_concatenation_repeat1] = STATE(945), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_PIPE_AMP] = ACTIONS(659), - [anon_sym_AMP_AMP] = ACTIONS(659), - [anon_sym_PIPE_PIPE] = ACTIONS(659), - [sym__special_characters] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(659), - [anon_sym_DOLLAR] = ACTIONS(657), - [sym_raw_string] = ACTIONS(659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(659), - [anon_sym_BQUOTE] = ACTIONS(659), - [anon_sym_LT_LPAREN] = ACTIONS(659), - [anon_sym_GT_LPAREN] = ACTIONS(659), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), - [sym_word] = ACTIONS(657), - }, - [480] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(948), - [anon_sym_DQUOTE] = ACTIONS(1998), - [anon_sym_DOLLAR] = ACTIONS(2000), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), + [327] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_LF] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), }, - [481] = { - [sym_string] = STATE(950), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(2002), - [sym_raw_string] = ACTIONS(2004), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), + [328] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_SEMI_SEMI] = ACTIONS(1371), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_AT] = ACTIONS(2002), - [anon_sym_QMARK] = ACTIONS(2002), - [anon_sym_0] = ACTIONS(2008), - [anon_sym__] = ACTIONS(2008), - }, - [482] = { - [aux_sym_concatenation_repeat1] = STATE(945), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [sym__special_characters] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), - [sym_word] = ACTIONS(675), - }, - [483] = { - [sym_subscript] = STATE(956), - [sym_variable_name] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2012), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2016), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_AT] = ACTIONS(2012), - [anon_sym_QMARK] = ACTIONS(2012), - [anon_sym_0] = ACTIONS(2018), - [anon_sym__] = ACTIONS(2018), - }, - [484] = { - [sym_for_statement] = STATE(957), - [sym_c_style_for_statement] = STATE(957), - [sym_while_statement] = STATE(957), - [sym_if_statement] = STATE(957), - [sym_case_statement] = STATE(957), - [sym_function_definition] = STATE(957), - [sym_subshell] = STATE(957), - [sym_pipeline] = STATE(957), - [sym_list] = STATE(957), - [sym_negated_command] = STATE(957), - [sym_test_command] = STATE(957), - [sym_declaration_command] = STATE(957), - [sym_unset_command] = STATE(957), - [sym_command] = STATE(957), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(958), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [485] = { - [sym_for_statement] = STATE(959), - [sym_c_style_for_statement] = STATE(959), - [sym_while_statement] = STATE(959), - [sym_if_statement] = STATE(959), - [sym_case_statement] = STATE(959), - [sym_function_definition] = STATE(959), - [sym_subshell] = STATE(959), - [sym_pipeline] = STATE(959), - [sym_list] = STATE(959), - [sym_negated_command] = STATE(959), - [sym_test_command] = STATE(959), - [sym_declaration_command] = STATE(959), - [sym_unset_command] = STATE(959), - [sym_command] = STATE(959), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(960), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_LF] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), }, - [486] = { - [sym_for_statement] = STATE(961), - [sym_c_style_for_statement] = STATE(961), - [sym_while_statement] = STATE(961), - [sym_if_statement] = STATE(961), - [sym_case_statement] = STATE(961), - [sym_function_definition] = STATE(961), - [sym_subshell] = STATE(961), - [sym_pipeline] = STATE(961), - [sym_list] = STATE(961), - [sym_negated_command] = STATE(961), - [sym_test_command] = STATE(961), - [sym_declaration_command] = STATE(961), - [sym_unset_command] = STATE(961), - [sym_command] = STATE(961), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(962), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), + [329] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(720), + [sym_c_style_for_statement] = STATE(720), + [sym_while_statement] = STATE(720), + [sym_if_statement] = STATE(720), + [sym_case_statement] = STATE(720), + [sym_function_definition] = STATE(720), + [sym_subshell] = STATE(720), + [sym_pipeline] = STATE(720), + [sym_list] = STATE(720), + [sym_negated_command] = STATE(720), + [sym_test_command] = STATE(720), + [sym_declaration_command] = STATE(720), + [sym_unset_command] = STATE(720), + [sym_command] = STATE(720), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(721), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -21470,542 +17428,465 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_word] = ACTIONS(107), }, - [487] = { + [330] = { + [sym__expression] = STATE(722), + [sym_binary_expression] = STATE(722), + [sym_unary_expression] = STATE(722), + [sym_parenthesized_expression] = STATE(722), + [sym_concatenation] = STATE(722), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(139), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(157), + }, + [331] = { + [sym__expression] = STATE(722), + [sym_binary_expression] = STATE(722), + [sym_unary_expression] = STATE(722), + [sym_parenthesized_expression] = STATE(722), + [sym_concatenation] = STATE(722), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(137), + [sym__special_characters] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1385), + [anon_sym_LT_LPAREN] = ACTIONS(1387), + [anon_sym_GT_LPAREN] = ACTIONS(1387), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(155), + [sym_test_operator] = ACTIONS(137), + [sym_regex] = ACTIONS(1389), + }, + [332] = { + [sym_concatenation] = STATE(724), + [sym_string] = STATE(727), + [sym_array] = STATE(724), + [sym_simple_expansion] = STATE(727), + [sym_string_expansion] = STATE(727), + [sym_expansion] = STATE(727), + [sym_command_substitution] = STATE(727), + [sym_process_substitution] = STATE(727), + [sym__empty_value] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(1397), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1399), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1403), + [anon_sym_LT_LPAREN] = ACTIONS(1405), + [anon_sym_GT_LPAREN] = ACTIONS(1405), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1397), + }, + [333] = { + [sym_string] = STATE(728), + [sym_simple_expansion] = STATE(728), + [sym_string_expansion] = STATE(728), + [sym_expansion] = STATE(728), + [sym_command_substitution] = STATE(728), + [sym_process_substitution] = STATE(728), + [sym__special_characters] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(1407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1399), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1403), + [anon_sym_LT_LPAREN] = ACTIONS(1405), + [anon_sym_GT_LPAREN] = ACTIONS(1405), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1407), + }, + [334] = { + [aux_sym_concatenation_repeat1] = STATE(729), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(685), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [335] = { + [sym__concat] = ACTIONS(687), + [sym_variable_name] = ACTIONS(687), [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_PIPE_AMP] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [sym__special_characters] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), [anon_sym_DOLLAR] = ACTIONS(689), - [sym_raw_string] = ACTIONS(691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(691), - [anon_sym_LT_LPAREN] = ACTIONS(691), - [anon_sym_GT_LPAREN] = ACTIONS(691), - [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), [sym_word] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), }, - [488] = { - [sym_concatenation] = STATE(963), - [sym_string] = STATE(482), - [sym_simple_expansion] = STATE(482), - [sym_string_expansion] = STATE(482), - [sym_expansion] = STATE(482), - [sym_command_substitution] = STATE(482), - [sym_process_substitution] = STATE(482), - [aux_sym_unset_command_repeat1] = STATE(963), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(871), - [sym_raw_string] = ACTIONS(873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LT_LPAREN] = ACTIONS(881), - [anon_sym_GT_LPAREN] = ACTIONS(881), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(883), - [sym_word] = ACTIONS(885), - }, - [489] = { - [sym_string] = STATE(964), - [sym_simple_expansion] = STATE(964), - [sym_string_expansion] = STATE(964), - [sym_expansion] = STATE(964), - [sym_command_substitution] = STATE(964), - [sym_process_substitution] = STATE(964), - [sym__special_characters] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(2020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2020), - }, - [490] = { - [aux_sym_concatenation_repeat1] = STATE(965), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(733), - }, - [491] = { - [sym__simple_heredoc_body] = ACTIONS(735), - [sym__heredoc_body_beginning] = ACTIONS(735), - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(735), - [anon_sym_LT_AMP] = ACTIONS(735), - [anon_sym_GT_AMP] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(735), - [anon_sym_LT_LT_LT] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(737), - }, - [492] = { - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [336] = { + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, - [493] = { + [337] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(2024), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_DOLLAR] = ACTIONS(1411), [sym__string_content] = ACTIONS(233), [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), }, - [494] = { - [sym__simple_heredoc_body] = ACTIONS(767), - [sym__heredoc_body_beginning] = ACTIONS(767), - [sym_file_descriptor] = ACTIONS(767), - [sym__concat] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_AMP_GT] = ACTIONS(769), - [anon_sym_AMP_GT_GT] = ACTIONS(767), - [anon_sym_LT_AMP] = ACTIONS(767), - [anon_sym_GT_AMP] = ACTIONS(767), - [anon_sym_LT_LT] = ACTIONS(769), - [anon_sym_LT_LT_DASH] = ACTIONS(767), - [anon_sym_LT_LT_LT] = ACTIONS(767), - [sym__special_characters] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), - [anon_sym_BQUOTE] = ACTIONS(767), - [anon_sym_LT_LPAREN] = ACTIONS(767), - [anon_sym_GT_LPAREN] = ACTIONS(767), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(769), - }, - [495] = { - [sym__simple_heredoc_body] = ACTIONS(771), - [sym__heredoc_body_beginning] = ACTIONS(771), - [sym_file_descriptor] = ACTIONS(771), - [sym__concat] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [sym__special_characters] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(771), - [anon_sym_LT_LPAREN] = ACTIONS(771), - [anon_sym_GT_LPAREN] = ACTIONS(771), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(773), - }, - [496] = { - [sym__simple_heredoc_body] = ACTIONS(775), - [sym__heredoc_body_beginning] = ACTIONS(775), - [sym_file_descriptor] = ACTIONS(775), - [sym__concat] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_PIPE_AMP] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(775), - [anon_sym_LT_AMP] = ACTIONS(775), - [anon_sym_GT_AMP] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(775), - [anon_sym_LT_LT_LT] = ACTIONS(775), - [sym__special_characters] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LT_LPAREN] = ACTIONS(775), - [anon_sym_GT_LPAREN] = ACTIONS(775), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(777), - }, - [497] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2026), - [sym_comment] = ACTIONS(53), - }, - [498] = { - [sym_concatenation] = STATE(971), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(971), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_EQ] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2034), - [anon_sym_COLON] = ACTIONS(2030), - [anon_sym_COLON_QMARK] = ACTIONS(2030), - [anon_sym_COLON_DASH] = ACTIONS(2030), - [anon_sym_PERCENT] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [338] = { + [sym__concat] = ACTIONS(719), + [sym_variable_name] = ACTIONS(719), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LT_LPAREN] = ACTIONS(721), + [anon_sym_GT_LPAREN] = ACTIONS(721), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [sym_word] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), }, - [499] = { - [sym_subscript] = STATE(975), - [sym_variable_name] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2038), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_AT] = ACTIONS(2038), - [anon_sym_QMARK] = ACTIONS(2038), - [anon_sym_0] = ACTIONS(2042), - [anon_sym__] = ACTIONS(2042), - }, - [500] = { - [sym_concatenation] = STATE(978), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(978), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_EQ] = ACTIONS(2046), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2050), - [anon_sym_COLON] = ACTIONS(2046), - [anon_sym_COLON_QMARK] = ACTIONS(2046), - [anon_sym_COLON_DASH] = ACTIONS(2046), - [anon_sym_PERCENT] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [339] = { + [sym__concat] = ACTIONS(723), + [sym_variable_name] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), + [sym_word] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), }, - [501] = { - [sym_concatenation] = STATE(981), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(981), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_EQ] = ACTIONS(2054), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2056), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2058), - [anon_sym_COLON] = ACTIONS(2054), - [anon_sym_COLON_QMARK] = ACTIONS(2054), - [anon_sym_COLON_DASH] = ACTIONS(2054), - [anon_sym_PERCENT] = ACTIONS(2054), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [340] = { + [sym__concat] = ACTIONS(727), + [sym_variable_name] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), }, - [502] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), + [341] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1413), [sym_comment] = ACTIONS(53), }, - [503] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [342] = { + [sym_concatenation] = STATE(735), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(735), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_EQ] = ACTIONS(1417), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(1417), + [anon_sym_COLON_QMARK] = ACTIONS(1417), + [anon_sym_COLON_DASH] = ACTIONS(1417), + [anon_sym_PERCENT] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, - [504] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(2060), + [343] = { + [sym_subscript] = STATE(739), + [sym_variable_name] = ACTIONS(1423), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_0] = ACTIONS(1429), + [anon_sym__] = ACTIONS(1429), }, - [505] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(2060), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [344] = { + [sym_concatenation] = STATE(742), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(742), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1433), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_COLON_QMARK] = ACTIONS(1433), + [anon_sym_COLON_DASH] = ACTIONS(1433), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, - [506] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [345] = { + [sym_concatenation] = STATE(745), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(745), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1441), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1443), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_COLON] = ACTIONS(1441), + [anon_sym_COLON_QMARK] = ACTIONS(1441), + [anon_sym_COLON_DASH] = ACTIONS(1441), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, - [507] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [346] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_SEMI_SEMI] = ACTIONS(1449), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_LF] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), }, - [508] = { - [anon_sym_RPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(53), + [347] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_SEMI_SEMI] = ACTIONS(1449), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_LF] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), }, - [509] = { - [sym_for_statement] = STATE(985), - [sym_c_style_for_statement] = STATE(985), - [sym_while_statement] = STATE(985), - [sym_if_statement] = STATE(985), - [sym_case_statement] = STATE(985), - [sym_function_definition] = STATE(985), - [sym_subshell] = STATE(985), - [sym_pipeline] = STATE(985), - [sym_list] = STATE(985), - [sym_negated_command] = STATE(985), - [sym_test_command] = STATE(985), - [sym_declaration_command] = STATE(985), - [sym_unset_command] = STATE(985), - [sym_command] = STATE(985), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(986), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), + [348] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(748), + [sym_c_style_for_statement] = STATE(748), + [sym_while_statement] = STATE(748), + [sym_if_statement] = STATE(748), + [sym_case_statement] = STATE(748), + [sym_function_definition] = STATE(748), + [sym_subshell] = STATE(748), + [sym_pipeline] = STATE(748), + [sym_list] = STATE(748), + [sym_negated_command] = STATE(748), + [sym_test_command] = STATE(748), + [sym_declaration_command] = STATE(748), + [sym_unset_command] = STATE(748), + [sym_command] = STATE(748), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(749), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -22013,102 +17894,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_word] = ACTIONS(107), }, - [510] = { - [sym__simple_heredoc_body] = ACTIONS(2066), - [sym__heredoc_body_beginning] = ACTIONS(2066), - [sym_file_descriptor] = ACTIONS(2066), - [sym__concat] = ACTIONS(2066), - [anon_sym_esac] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_EQ_TILDE] = ACTIONS(2068), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2068), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2068), - [anon_sym_LT_AMP] = ACTIONS(2068), - [anon_sym_GT_AMP] = ACTIONS(2068), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_LT_LT_DASH] = ACTIONS(2068), - [anon_sym_LT_LT_LT] = ACTIONS(2068), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [anon_sym_LT_LPAREN] = ACTIONS(2068), - [anon_sym_GT_LPAREN] = ACTIONS(2068), + [349] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1453), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(1447), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), }, - [511] = { - [sym_for_statement] = STATE(987), - [sym_c_style_for_statement] = STATE(987), - [sym_while_statement] = STATE(987), - [sym_if_statement] = STATE(987), - [sym_case_statement] = STATE(987), - [sym_function_definition] = STATE(987), - [sym_subshell] = STATE(987), - [sym_pipeline] = STATE(987), - [sym_list] = STATE(987), - [sym_negated_command] = STATE(987), - [sym_test_command] = STATE(987), - [sym_declaration_command] = STATE(987), - [sym_unset_command] = STATE(987), - [sym_command] = STATE(987), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(988), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), + [350] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1453), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1447), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_LF] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + }, + [351] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(751), + [sym_c_style_for_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_function_definition] = STATE(751), + [sym_subshell] = STATE(751), + [sym_pipeline] = STATE(751), + [sym_list] = STATE(751), + [sym_negated_command] = STATE(751), + [sym_test_command] = STATE(751), + [sym_declaration_command] = STATE(751), + [sym_unset_command] = STATE(751), + [sym_command] = STATE(751), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(752), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -22116,633 +18002,1150 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_word] = ACTIONS(277), }, - [512] = { - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_PIPE_AMP] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(1001), - [anon_sym_PIPE_PIPE] = ACTIONS(1001), - [anon_sym_BQUOTE] = ACTIONS(1001), - [sym_comment] = ACTIONS(53), - }, - [513] = { - [sym_simple_expansion] = STATE(990), - [sym_expansion] = STATE(990), - [aux_sym_heredoc_body_repeat1] = STATE(990), - [sym__heredoc_body_middle] = ACTIONS(2070), - [sym__heredoc_body_end] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), - [sym_comment] = ACTIONS(53), - }, - [514] = { - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_GT] = ACTIONS(2074), - [anon_sym_AMP_GT_GT] = ACTIONS(2076), - [anon_sym_LT_AMP] = ACTIONS(2076), - [anon_sym_GT_AMP] = ACTIONS(2076), - [sym_comment] = ACTIONS(53), - }, - [515] = { - [sym_concatenation] = STATE(994), - [sym_string] = STATE(993), - [sym_simple_expansion] = STATE(993), - [sym_string_expansion] = STATE(993), - [sym_expansion] = STATE(993), - [sym_command_substitution] = STATE(993), - [sym_process_substitution] = STATE(993), - [sym__special_characters] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(2082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2086), - [anon_sym_BQUOTE] = ACTIONS(2088), - [anon_sym_LT_LPAREN] = ACTIONS(2090), - [anon_sym_GT_LPAREN] = ACTIONS(2090), + [352] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1457), + [anon_sym_SEMI_SEMI] = ACTIONS(1459), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2082), - [sym_regex] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_LF] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1459), }, - [516] = { - [sym_concatenation] = STATE(997), - [sym_string] = STATE(996), - [sym_simple_expansion] = STATE(996), - [sym_string_expansion] = STATE(996), - [sym_expansion] = STATE(996), - [sym_command_substitution] = STATE(996), - [sym_process_substitution] = STATE(996), - [sym__special_characters] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(2096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [353] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1457), + [anon_sym_SEMI_SEMI] = ACTIONS(1459), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_LF] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1459), + }, + [354] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(755), + [sym_c_style_for_statement] = STATE(755), + [sym_while_statement] = STATE(755), + [sym_if_statement] = STATE(755), + [sym_case_statement] = STATE(755), + [sym_function_definition] = STATE(755), + [sym_subshell] = STATE(755), + [sym_pipeline] = STATE(755), + [sym_list] = STATE(755), + [sym_negated_command] = STATE(755), + [sym_test_command] = STATE(755), + [sym_declaration_command] = STATE(755), + [sym_unset_command] = STATE(755), + [sym_command] = STATE(755), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(756), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2096), + [sym_word] = ACTIONS(107), }, - [517] = { - [sym_heredoc_start] = ACTIONS(2098), + [355] = { + [sym_variable_assignment] = STATE(355), + [sym_subscript] = STATE(105), + [sym_concatenation] = STATE(355), + [sym_string] = STATE(99), + [sym_simple_expansion] = STATE(99), + [sym_string_expansion] = STATE(99), + [sym_expansion] = STATE(99), + [sym_command_substitution] = STATE(99), + [sym_process_substitution] = STATE(99), + [aux_sym_declaration_command_repeat1] = STATE(355), + [sym_variable_name] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__special_characters] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_DOLLAR] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1477), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1489), + [anon_sym_GT_LPAREN] = ACTIONS(1489), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1492), + [sym_word] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LF] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1466), + }, + [356] = { + [sym_string] = STATE(757), + [sym_simple_expansion] = STATE(757), + [sym_string_expansion] = STATE(757), + [sym_expansion] = STATE(757), + [sym_command_substitution] = STATE(757), + [sym_process_substitution] = STATE(757), + [sym__special_characters] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(1497), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(1503), + [anon_sym_LT_LPAREN] = ACTIONS(1505), + [anon_sym_GT_LPAREN] = ACTIONS(1505), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1497), + }, + [357] = { + [aux_sym_concatenation_repeat1] = STATE(758), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(685), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [358] = { + [sym__concat] = ACTIONS(687), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), + [sym_word] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), + }, + [359] = { + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [360] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_DOLLAR] = ACTIONS(1509), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [361] = { + [sym__concat] = ACTIONS(719), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LT_LPAREN] = ACTIONS(721), + [anon_sym_GT_LPAREN] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [sym_word] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), + }, + [362] = { + [sym__concat] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), + [sym_word] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), + }, + [363] = { + [sym__concat] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + }, + [364] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1511), [sym_comment] = ACTIONS(53), }, - [518] = { - [sym_concatenation] = STATE(1001), - [sym_string] = STATE(1000), - [sym_simple_expansion] = STATE(1000), - [sym_string_expansion] = STATE(1000), - [sym_expansion] = STATE(1000), - [sym_command_substitution] = STATE(1000), - [sym_process_substitution] = STATE(1000), - [sym__special_characters] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(2102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2102), + [365] = { + [sym_concatenation] = STATE(764), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(764), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_COLON] = ACTIONS(1515), + [anon_sym_COLON_QMARK] = ACTIONS(1515), + [anon_sym_COLON_DASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, - [519] = { - [aux_sym_concatenation_repeat1] = STATE(490), - [sym__simple_heredoc_body] = ACTIONS(1031), - [sym__heredoc_body_beginning] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1031), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [sym__special_characters] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), + [366] = { + [sym_subscript] = STATE(768), + [sym_variable_name] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1033), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_0] = ACTIONS(1527), + [anon_sym__] = ACTIONS(1527), }, - [520] = { - [aux_sym_concatenation_repeat1] = STATE(490), - [sym__simple_heredoc_body] = ACTIONS(1035), - [sym__heredoc_body_beginning] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_PIPE_AMP] = ACTIONS(1035), - [anon_sym_AMP_AMP] = ACTIONS(1035), - [anon_sym_PIPE_PIPE] = ACTIONS(1035), - [anon_sym_EQ_TILDE] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1035), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1035), - [anon_sym_LT_AMP] = ACTIONS(1035), - [anon_sym_GT_AMP] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_LT_LT_DASH] = ACTIONS(1035), - [anon_sym_LT_LT_LT] = ACTIONS(1035), - [sym__special_characters] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), - [anon_sym_BQUOTE] = ACTIONS(1035), - [anon_sym_LT_LPAREN] = ACTIONS(1035), - [anon_sym_GT_LPAREN] = ACTIONS(1035), + [367] = { + [sym_concatenation] = STATE(771), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(771), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_COLON] = ACTIONS(1531), + [anon_sym_COLON_QMARK] = ACTIONS(1531), + [anon_sym_COLON_DASH] = ACTIONS(1531), + [anon_sym_PERCENT] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [368] = { + [sym_concatenation] = STATE(774), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(774), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1539), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1541), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_COLON] = ACTIONS(1539), + [anon_sym_COLON_QMARK] = ACTIONS(1539), + [anon_sym_COLON_DASH] = ACTIONS(1539), + [anon_sym_PERCENT] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [369] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_SEMI_SEMI] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_LF] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1547), + }, + [370] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_SEMI_SEMI] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_LF] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1547), + }, + [371] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(777), + [sym_c_style_for_statement] = STATE(777), + [sym_while_statement] = STATE(777), + [sym_if_statement] = STATE(777), + [sym_case_statement] = STATE(777), + [sym_function_definition] = STATE(777), + [sym_subshell] = STATE(777), + [sym_pipeline] = STATE(777), + [sym_list] = STATE(777), + [sym_negated_command] = STATE(777), + [sym_test_command] = STATE(777), + [sym_declaration_command] = STATE(777), + [sym_unset_command] = STATE(777), + [sym_command] = STATE(777), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(778), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1037), + [sym_word] = ACTIONS(107), }, - [521] = { - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1041), - [anon_sym_PIPE_AMP] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1041), - [anon_sym_PIPE_PIPE] = ACTIONS(1041), - [anon_sym_BQUOTE] = ACTIONS(1041), + [372] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1551), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(1545), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1551), + }, + [373] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1551), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1545), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1551), + }, + [374] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(780), + [sym_c_style_for_statement] = STATE(780), + [sym_while_statement] = STATE(780), + [sym_if_statement] = STATE(780), + [sym_case_statement] = STATE(780), + [sym_function_definition] = STATE(780), + [sym_subshell] = STATE(780), + [sym_pipeline] = STATE(780), + [sym_list] = STATE(780), + [sym_negated_command] = STATE(780), + [sym_test_command] = STATE(780), + [sym_declaration_command] = STATE(780), + [sym_unset_command] = STATE(780), + [sym_command] = STATE(780), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(781), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), }, - [522] = { - [sym__simple_heredoc_body] = ACTIONS(1035), - [sym__heredoc_body_beginning] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_PIPE_AMP] = ACTIONS(1035), - [anon_sym_AMP_AMP] = ACTIONS(1035), - [anon_sym_PIPE_PIPE] = ACTIONS(1035), - [anon_sym_EQ_TILDE] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1035), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1035), - [anon_sym_LT_AMP] = ACTIONS(1035), - [anon_sym_GT_AMP] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_LT_LT_DASH] = ACTIONS(1035), - [anon_sym_LT_LT_LT] = ACTIONS(1035), - [sym__special_characters] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), - [anon_sym_BQUOTE] = ACTIONS(1035), - [anon_sym_LT_LPAREN] = ACTIONS(1035), - [anon_sym_GT_LPAREN] = ACTIONS(1035), + [375] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_SEMI_SEMI] = ACTIONS(1557), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_LF] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + }, + [376] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_SEMI_SEMI] = ACTIONS(1557), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_LF] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + }, + [377] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(784), + [sym_c_style_for_statement] = STATE(784), + [sym_while_statement] = STATE(784), + [sym_if_statement] = STATE(784), + [sym_case_statement] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_subshell] = STATE(784), + [sym_pipeline] = STATE(784), + [sym_list] = STATE(784), + [sym_negated_command] = STATE(784), + [sym_test_command] = STATE(784), + [sym_declaration_command] = STATE(784), + [sym_unset_command] = STATE(784), + [sym_command] = STATE(784), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(785), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1037), + [sym_word] = ACTIONS(107), }, - [523] = { - [sym_file_redirect] = STATE(1003), - [sym_heredoc_redirect] = STATE(1003), - [sym_heredoc_body] = STATE(1002), - [sym_herestring_redirect] = STATE(1003), - [aux_sym_while_statement_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1041), - [anon_sym_PIPE_AMP] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1041), - [anon_sym_PIPE_PIPE] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(937), - [sym_comment] = ACTIONS(53), + [378] = { + [sym_concatenation] = STATE(378), + [sym_string] = STATE(110), + [sym_simple_expansion] = STATE(110), + [sym_string_expansion] = STATE(110), + [sym_expansion] = STATE(110), + [sym_command_substitution] = STATE(110), + [sym_process_substitution] = STATE(110), + [aux_sym_unset_command_repeat1] = STATE(378), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(1572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1575), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1578), + [anon_sym_BQUOTE] = ACTIONS(1581), + [anon_sym_LT_LPAREN] = ACTIONS(1584), + [anon_sym_GT_LPAREN] = ACTIONS(1584), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1587), + [sym_word] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1561), }, - [524] = { - [sym_file_redirect] = STATE(1004), - [sym_heredoc_redirect] = STATE(1004), - [sym_heredoc_body] = STATE(1002), - [sym_herestring_redirect] = STATE(1004), - [sym_concatenation] = STATE(522), - [sym_string] = STATE(520), - [sym_simple_expansion] = STATE(520), - [sym_string_expansion] = STATE(520), - [sym_expansion] = STATE(520), - [sym_command_substitution] = STATE(520), - [sym_process_substitution] = STATE(520), - [aux_sym_while_statement_repeat1] = STATE(1004), - [aux_sym_command_repeat2] = STATE(1005), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1041), - [anon_sym_PIPE_AMP] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1041), - [anon_sym_PIPE_PIPE] = ACTIONS(1041), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(937), - [sym__special_characters] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(943), - }, - [525] = { - [sym_file_redirect] = STATE(1004), - [sym_heredoc_redirect] = STATE(1004), - [sym_heredoc_body] = STATE(1002), - [sym_herestring_redirect] = STATE(1004), - [sym_concatenation] = STATE(522), - [sym_string] = STATE(520), - [sym_simple_expansion] = STATE(520), - [sym_string_expansion] = STATE(520), - [sym_expansion] = STATE(520), - [sym_command_substitution] = STATE(520), - [sym_process_substitution] = STATE(520), - [aux_sym_while_statement_repeat1] = STATE(1004), - [aux_sym_command_repeat2] = STATE(1006), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1041), - [anon_sym_PIPE_AMP] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1041), - [anon_sym_PIPE_PIPE] = ACTIONS(1041), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(937), - [sym__special_characters] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(943), - }, - [526] = { - [sym_concatenation] = STATE(714), - [sym_string] = STATE(1008), - [sym_array] = STATE(714), - [sym_simple_expansion] = STATE(1008), - [sym_string_expansion] = STATE(1008), - [sym_expansion] = STATE(1008), - [sym_command_substitution] = STATE(1008), - [sym_process_substitution] = STATE(1008), - [sym__empty_value] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1383), - [sym__special_characters] = ACTIONS(2104), + [379] = { + [sym_string] = STATE(786), + [sym_simple_expansion] = STATE(786), + [sym_string_expansion] = STATE(786), + [sym_expansion] = STATE(786), + [sym_command_substitution] = STATE(786), + [sym_process_substitution] = STATE(786), + [sym__special_characters] = ACTIONS(1592), [anon_sym_DQUOTE] = ACTIONS(209), [anon_sym_DOLLAR] = ACTIONS(211), - [sym_raw_string] = ACTIONS(2106), + [sym_raw_string] = ACTIONS(1592), [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), [anon_sym_DOLLAR_LPAREN] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), [anon_sym_LT_LPAREN] = ACTIONS(221), [anon_sym_GT_LPAREN] = ACTIONS(221), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2106), + [sym_word] = ACTIONS(1592), }, - [527] = { - [sym_do_group] = STATE(1009), - [anon_sym_do] = ACTIONS(1942), + [380] = { + [aux_sym_concatenation_repeat1] = STATE(787), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(651), + [sym_variable_name] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(683), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(683), + [anon_sym_LT_AMP] = ACTIONS(683), + [anon_sym_GT_AMP] = ACTIONS(683), + [sym__special_characters] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(683), + [anon_sym_BQUOTE] = ACTIONS(683), + [anon_sym_LT_LPAREN] = ACTIONS(683), + [anon_sym_GT_LPAREN] = ACTIONS(683), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(683), + }, + [381] = { + [sym_file_descriptor] = ACTIONS(687), + [sym__concat] = ACTIONS(687), + [sym_variable_name] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(687), + [anon_sym_AMP_GT] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(687), + [sym__special_characters] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(687), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(687), + }, + [382] = { + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [383] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_DOLLAR] = ACTIONS(1596), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [384] = { + [sym_file_descriptor] = ACTIONS(719), + [sym__concat] = ACTIONS(719), + [sym_variable_name] = ACTIONS(719), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_GT_GT] = ACTIONS(719), + [anon_sym_AMP_GT] = ACTIONS(721), + [anon_sym_AMP_GT_GT] = ACTIONS(719), + [anon_sym_LT_AMP] = ACTIONS(719), + [anon_sym_GT_AMP] = ACTIONS(719), + [sym__special_characters] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(719), + [anon_sym_LT_LPAREN] = ACTIONS(719), + [anon_sym_GT_LPAREN] = ACTIONS(719), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(719), + }, + [385] = { + [sym_file_descriptor] = ACTIONS(723), + [sym__concat] = ACTIONS(723), + [sym_variable_name] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(723), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_AMP_GT_GT] = ACTIONS(723), + [anon_sym_LT_AMP] = ACTIONS(723), + [anon_sym_GT_AMP] = ACTIONS(723), + [sym__special_characters] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(723), + [anon_sym_LT_LPAREN] = ACTIONS(723), + [anon_sym_GT_LPAREN] = ACTIONS(723), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(723), + }, + [386] = { + [sym_file_descriptor] = ACTIONS(727), + [sym__concat] = ACTIONS(727), + [sym_variable_name] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(729), + [anon_sym_AMP_GT_GT] = ACTIONS(727), + [anon_sym_LT_AMP] = ACTIONS(727), + [anon_sym_GT_AMP] = ACTIONS(727), + [sym__special_characters] = ACTIONS(727), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(727), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(727), + [anon_sym_GT_LPAREN] = ACTIONS(727), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(727), + }, + [387] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1598), [sym_comment] = ACTIONS(53), }, - [528] = { - [sym_compound_statement] = STATE(1011), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(53), + [388] = { + [sym_concatenation] = STATE(793), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(793), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1602), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1606), + [anon_sym_COLON] = ACTIONS(1602), + [anon_sym_COLON_QMARK] = ACTIONS(1602), + [anon_sym_COLON_DASH] = ACTIONS(1602), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, - [529] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2110), - [anon_sym_EQ_TILDE] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(577), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), + [389] = { + [sym_subscript] = STATE(797), + [sym_variable_name] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_0] = ACTIONS(1614), + [anon_sym__] = ACTIONS(1614), }, - [530] = { - [anon_sym_AMP_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(605), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2110), - [anon_sym_EQ_TILDE] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(605), + [390] = { + [sym_concatenation] = STATE(800), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(800), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1618), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(1618), + [anon_sym_COLON_QMARK] = ACTIONS(1618), + [anon_sym_COLON_DASH] = ACTIONS(1618), + [anon_sym_PERCENT] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, - [531] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(2112), - [anon_sym_PLUS_EQ] = ACTIONS(2112), - [sym_comment] = ACTIONS(53), + [391] = { + [sym_concatenation] = STATE(803), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(803), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1626), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_QMARK] = ACTIONS(1626), + [anon_sym_COLON_DASH] = ACTIONS(1626), + [anon_sym_PERCENT] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, - [532] = { - [aux_sym_concatenation_repeat1] = STATE(1014), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [sym__special_characters] = ACTIONS(615), - [anon_sym_DQUOTE] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_raw_string] = ACTIONS(615), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(615), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_LT_LPAREN] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(615), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), - [sym_word] = ACTIONS(617), + [392] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1632), + [anon_sym_SEMI_SEMI] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_LF] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1634), }, - [533] = { - [aux_sym_concatenation_repeat1] = STATE(1014), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PIPE_AMP] = ACTIONS(633), - [anon_sym_AMP_AMP] = ACTIONS(633), - [anon_sym_PIPE_PIPE] = ACTIONS(633), - [sym__special_characters] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_raw_string] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(633), - [anon_sym_BQUOTE] = ACTIONS(633), - [anon_sym_LT_LPAREN] = ACTIONS(633), - [anon_sym_GT_LPAREN] = ACTIONS(633), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), - [sym_word] = ACTIONS(635), + [393] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1632), + [anon_sym_SEMI_SEMI] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_LF] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1634), }, - [534] = { - [anon_sym_EQ] = ACTIONS(2112), - [anon_sym_PLUS_EQ] = ACTIONS(2112), - [sym_comment] = ACTIONS(53), - }, - [535] = { - [sym_variable_assignment] = STATE(476), - [sym_subscript] = STATE(534), - [sym_concatenation] = STATE(476), - [sym_string] = STATE(533), - [sym_simple_expansion] = STATE(533), - [sym_string_expansion] = STATE(533), - [sym_expansion] = STATE(533), - [sym_command_substitution] = STATE(533), - [sym_process_substitution] = STATE(533), - [aux_sym_declaration_command_repeat1] = STATE(1015), - [sym_variable_name] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_PIPE_AMP] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(653), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(955), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), - [anon_sym_BQUOTE] = ACTIONS(653), - [anon_sym_LT_LPAREN] = ACTIONS(861), - [anon_sym_GT_LPAREN] = ACTIONS(861), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(863), - [sym_word] = ACTIONS(957), - }, - [536] = { - [aux_sym_concatenation_repeat1] = STATE(1016), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(659), - [anon_sym_AMP_AMP] = ACTIONS(659), - [anon_sym_PIPE_PIPE] = ACTIONS(659), - [sym__special_characters] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(659), - [anon_sym_DOLLAR] = ACTIONS(657), - [sym_raw_string] = ACTIONS(659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(659), - [anon_sym_BQUOTE] = ACTIONS(659), - [anon_sym_LT_LPAREN] = ACTIONS(659), - [anon_sym_GT_LPAREN] = ACTIONS(659), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), - [sym_word] = ACTIONS(657), - }, - [537] = { - [aux_sym_concatenation_repeat1] = STATE(1016), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [sym__special_characters] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), - [sym_word] = ACTIONS(675), - }, - [538] = { - [sym_concatenation] = STATE(1017), - [sym_string] = STATE(537), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), - [sym_process_substitution] = STATE(537), - [aux_sym_unset_command_repeat1] = STATE(1017), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(871), - [sym_raw_string] = ACTIONS(961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(881), - [anon_sym_GT_LPAREN] = ACTIONS(881), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(883), - [sym_word] = ACTIONS(963), - }, - [539] = { - [aux_sym_concatenation_repeat1] = STATE(1018), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(733), - }, - [540] = { - [anon_sym_RPAREN] = ACTIONS(2114), - [sym_comment] = ACTIONS(53), - }, - [541] = { - [sym_for_statement] = STATE(985), - [sym_c_style_for_statement] = STATE(985), - [sym_while_statement] = STATE(985), - [sym_if_statement] = STATE(985), - [sym_case_statement] = STATE(985), - [sym_function_definition] = STATE(985), - [sym_subshell] = STATE(985), - [sym_pipeline] = STATE(985), - [sym_list] = STATE(985), - [sym_negated_command] = STATE(985), - [sym_test_command] = STATE(985), - [sym_declaration_command] = STATE(985), - [sym_unset_command] = STATE(985), - [sym_command] = STATE(985), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(1020), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), + [394] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(806), + [sym_c_style_for_statement] = STATE(806), + [sym_while_statement] = STATE(806), + [sym_if_statement] = STATE(806), + [sym_case_statement] = STATE(806), + [sym_function_definition] = STATE(806), + [sym_subshell] = STATE(806), + [sym_pipeline] = STATE(806), + [sym_list] = STATE(806), + [sym_negated_command] = STATE(806), + [sym_test_command] = STATE(806), + [sym_declaration_command] = STATE(806), + [sym_unset_command] = STATE(806), + [sym_command] = STATE(806), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(807), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -22750,19 +19153,4247 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [395] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1638), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(1632), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_LF] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1638), + }, + [396] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1638), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1632), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_LF] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1638), + }, + [397] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(809), + [sym_c_style_for_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_function_definition] = STATE(809), + [sym_subshell] = STATE(809), + [sym_pipeline] = STATE(809), + [sym_list] = STATE(809), + [sym_negated_command] = STATE(809), + [sym_test_command] = STATE(809), + [sym_declaration_command] = STATE(809), + [sym_unset_command] = STATE(809), + [sym_command] = STATE(809), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(810), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [398] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1644), + }, + [399] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1644), + }, + [400] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(813), + [sym_c_style_for_statement] = STATE(813), + [sym_while_statement] = STATE(813), + [sym_if_statement] = STATE(813), + [sym_case_statement] = STATE(813), + [sym_function_definition] = STATE(813), + [sym_subshell] = STATE(813), + [sym_pipeline] = STATE(813), + [sym_list] = STATE(813), + [sym_negated_command] = STATE(813), + [sym_test_command] = STATE(813), + [sym_declaration_command] = STATE(813), + [sym_unset_command] = STATE(813), + [sym_command] = STATE(813), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(814), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [401] = { + [sym__simple_heredoc_body] = ACTIONS(1648), + [sym__heredoc_body_beginning] = ACTIONS(1648), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1648), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_EQ_TILDE] = ACTIONS(1650), + [anon_sym_EQ_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [402] = { + [aux_sym_concatenation_repeat1] = STATE(402), + [sym__simple_heredoc_body] = ACTIONS(1648), + [sym__heredoc_body_beginning] = ACTIONS(1648), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_EQ_TILDE] = ACTIONS(1650), + [anon_sym_EQ_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [403] = { + [sym__simple_heredoc_body] = ACTIONS(1655), + [sym__heredoc_body_beginning] = ACTIONS(1655), + [sym_file_descriptor] = ACTIONS(1655), + [sym__concat] = ACTIONS(1655), + [anon_sym_esac] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [anon_sym_PIPE_AMP] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_EQ_TILDE] = ACTIONS(1657), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym_AMP_GT] = ACTIONS(1657), + [anon_sym_AMP_GT_GT] = ACTIONS(1657), + [anon_sym_LT_AMP] = ACTIONS(1657), + [anon_sym_GT_AMP] = ACTIONS(1657), + [anon_sym_LT_LT] = ACTIONS(1657), + [anon_sym_LT_LT_DASH] = ACTIONS(1657), + [anon_sym_LT_LT_LT] = ACTIONS(1657), + [sym__special_characters] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [anon_sym_LT_LPAREN] = ACTIONS(1657), + [anon_sym_GT_LPAREN] = ACTIONS(1657), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + }, + [404] = { + [sym__concat] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym__string_content] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + }, + [405] = { + [sym__concat] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [sym__string_content] = ACTIONS(1663), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1661), + [anon_sym_BQUOTE] = ACTIONS(1661), + [sym_comment] = ACTIONS(179), + }, + [406] = { + [sym__concat] = ACTIONS(727), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym__string_content] = ACTIONS(727), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [sym_comment] = ACTIONS(179), + }, + [407] = { + [anon_sym_DQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [sym__string_content] = ACTIONS(1663), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1661), + [anon_sym_BQUOTE] = ACTIONS(1661), + [sym_comment] = ACTIONS(179), + }, + [408] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1665), + [sym_comment] = ACTIONS(53), + }, + [409] = { + [sym_concatenation] = STATE(819), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(819), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_EQ] = ACTIONS(1669), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_COLON] = ACTIONS(1669), + [anon_sym_COLON_QMARK] = ACTIONS(1669), + [anon_sym_COLON_DASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [410] = { + [sym_subscript] = STATE(823), + [sym_variable_name] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1677), + [anon_sym_AT] = ACTIONS(1677), + [anon_sym_QMARK] = ACTIONS(1677), + [anon_sym_0] = ACTIONS(1681), + [anon_sym__] = ACTIONS(1681), + }, + [411] = { + [sym_concatenation] = STATE(826), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(826), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_COLON_QMARK] = ACTIONS(1685), + [anon_sym_COLON_DASH] = ACTIONS(1685), + [anon_sym_PERCENT] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [412] = { + [sym_concatenation] = STATE(829), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_EQ] = ACTIONS(1693), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_COLON] = ACTIONS(1693), + [anon_sym_COLON_QMARK] = ACTIONS(1693), + [anon_sym_COLON_DASH] = ACTIONS(1693), + [anon_sym_PERCENT] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [413] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_SEMI_SEMI] = ACTIONS(1701), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_LF] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1701), + }, + [414] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_SEMI_SEMI] = ACTIONS(1701), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_LF] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1701), + }, + [415] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(832), + [sym_c_style_for_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_if_statement] = STATE(832), + [sym_case_statement] = STATE(832), + [sym_function_definition] = STATE(832), + [sym_subshell] = STATE(832), + [sym_pipeline] = STATE(832), + [sym_list] = STATE(832), + [sym_negated_command] = STATE(832), + [sym_test_command] = STATE(832), + [sym_declaration_command] = STATE(832), + [sym_unset_command] = STATE(832), + [sym_command] = STATE(832), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(833), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [416] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1705), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(1699), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_LF] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1705), + }, + [417] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1705), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1699), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_LF] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1705), + }, + [418] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(835), + [sym_c_style_for_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_case_statement] = STATE(835), + [sym_function_definition] = STATE(835), + [sym_subshell] = STATE(835), + [sym_pipeline] = STATE(835), + [sym_list] = STATE(835), + [sym_negated_command] = STATE(835), + [sym_test_command] = STATE(835), + [sym_declaration_command] = STATE(835), + [sym_unset_command] = STATE(835), + [sym_command] = STATE(835), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(836), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [419] = { + [anon_sym_DQUOTE] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [420] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1711), + [sym__string_content] = ACTIONS(1714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1717), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1720), + [anon_sym_BQUOTE] = ACTIONS(1723), + [sym_comment] = ACTIONS(179), + }, + [421] = { + [sym_concatenation] = STATE(841), + [sym_string] = STATE(840), + [sym_simple_expansion] = STATE(840), + [sym_string_expansion] = STATE(840), + [sym_expansion] = STATE(840), + [sym_command_substitution] = STATE(840), + [sym_process_substitution] = STATE(840), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1728), + }, + [422] = { + [sym_concatenation] = STATE(851), + [sym_string] = STATE(846), + [sym_simple_expansion] = STATE(846), + [sym_string_expansion] = STATE(846), + [sym_expansion] = STATE(846), + [sym_command_substitution] = STATE(846), + [sym_process_substitution] = STATE(846), + [anon_sym_RBRACE] = ACTIONS(1730), + [sym__special_characters] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(1738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1738), + }, + [423] = { + [sym__simple_heredoc_body] = ACTIONS(1748), + [sym__heredoc_body_beginning] = ACTIONS(1748), + [sym_file_descriptor] = ACTIONS(1748), + [sym__concat] = ACTIONS(1748), + [anon_sym_esac] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_SEMI_SEMI] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_EQ_TILDE] = ACTIONS(1750), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(1750), + [anon_sym_AMP_GT] = ACTIONS(1750), + [anon_sym_AMP_GT_GT] = ACTIONS(1750), + [anon_sym_LT_AMP] = ACTIONS(1750), + [anon_sym_GT_AMP] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1750), + [anon_sym_LT_LT_DASH] = ACTIONS(1750), + [anon_sym_LT_LT_LT] = ACTIONS(1750), + [sym__special_characters] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), + [anon_sym_BQUOTE] = ACTIONS(1750), + [anon_sym_LT_LPAREN] = ACTIONS(1750), + [anon_sym_GT_LPAREN] = ACTIONS(1750), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LF] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1750), + }, + [424] = { + [aux_sym_concatenation_repeat1] = STATE(853), + [sym__concat] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1756), + [sym__special_characters] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), + [anon_sym_COLON] = ACTIONS(1756), + [anon_sym_COLON_QMARK] = ACTIONS(1756), + [anon_sym_COLON_DASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LT_LPAREN] = ACTIONS(1754), + [anon_sym_GT_LPAREN] = ACTIONS(1754), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1756), + }, + [425] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(856), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_DOLLAR] = ACTIONS(1760), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [426] = { + [sym_string] = STATE(858), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(1762), + [sym_raw_string] = ACTIONS(1764), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(1762), + [anon_sym_0] = ACTIONS(1768), + [anon_sym__] = ACTIONS(1768), + }, + [427] = { + [aux_sym_concatenation_repeat1] = STATE(853), + [sym__concat] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [sym__special_characters] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1772), + [anon_sym_COLON_QMARK] = ACTIONS(1772), + [anon_sym_COLON_DASH] = ACTIONS(1772), + [anon_sym_PERCENT] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1772), + }, + [428] = { + [sym_subscript] = STATE(864), + [sym_variable_name] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1776), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_0] = ACTIONS(1782), + [anon_sym__] = ACTIONS(1782), + }, + [429] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(1784), + }, + [430] = { + [sym__terminated_statement] = STATE(868), + [sym_for_statement] = STATE(866), + [sym_c_style_for_statement] = STATE(866), + [sym_while_statement] = STATE(866), + [sym_if_statement] = STATE(866), + [sym_case_statement] = STATE(866), + [sym_function_definition] = STATE(866), + [sym_subshell] = STATE(866), + [sym_pipeline] = STATE(866), + [sym_list] = STATE(866), + [sym_negated_command] = STATE(866), + [sym_test_command] = STATE(866), + [sym_declaration_command] = STATE(866), + [sym_unset_command] = STATE(866), + [sym_command] = STATE(866), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(867), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(868), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [431] = { + [sym__terminated_statement] = STATE(871), + [sym_for_statement] = STATE(869), + [sym_c_style_for_statement] = STATE(869), + [sym_while_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_case_statement] = STATE(869), + [sym_function_definition] = STATE(869), + [sym_subshell] = STATE(869), + [sym_pipeline] = STATE(869), + [sym_list] = STATE(869), + [sym_negated_command] = STATE(869), + [sym_test_command] = STATE(869), + [sym_declaration_command] = STATE(869), + [sym_unset_command] = STATE(869), + [sym_command] = STATE(869), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(870), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(871), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [432] = { + [sym__terminated_statement] = STATE(874), + [sym_for_statement] = STATE(872), + [sym_c_style_for_statement] = STATE(872), + [sym_while_statement] = STATE(872), + [sym_if_statement] = STATE(872), + [sym_case_statement] = STATE(872), + [sym_function_definition] = STATE(872), + [sym_subshell] = STATE(872), + [sym_pipeline] = STATE(872), + [sym_list] = STATE(872), + [sym_negated_command] = STATE(872), + [sym_test_command] = STATE(872), + [sym_declaration_command] = STATE(872), + [sym_unset_command] = STATE(872), + [sym_command] = STATE(872), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(873), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(874), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [433] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [434] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1792), + [sym_comment] = ACTIONS(53), + }, + [435] = { + [sym_concatenation] = STATE(880), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(880), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_EQ] = ACTIONS(1796), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1800), + [anon_sym_COLON] = ACTIONS(1796), + [anon_sym_COLON_QMARK] = ACTIONS(1796), + [anon_sym_COLON_DASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [436] = { + [sym_concatenation] = STATE(883), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(883), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1804), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_COLON] = ACTIONS(1804), + [anon_sym_COLON_QMARK] = ACTIONS(1804), + [anon_sym_COLON_DASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [437] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1810), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_COLON] = ACTIONS(1810), + [anon_sym_COLON_QMARK] = ACTIONS(1810), + [anon_sym_COLON_DASH] = ACTIONS(1810), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [438] = { + [sym__simple_heredoc_body] = ACTIONS(1816), + [sym__heredoc_body_beginning] = ACTIONS(1816), + [sym_file_descriptor] = ACTIONS(1816), + [sym__concat] = ACTIONS(1816), + [anon_sym_esac] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [anon_sym_EQ_TILDE] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_GT] = ACTIONS(1818), + [anon_sym_GT_GT] = ACTIONS(1818), + [anon_sym_AMP_GT] = ACTIONS(1818), + [anon_sym_AMP_GT_GT] = ACTIONS(1818), + [anon_sym_LT_AMP] = ACTIONS(1818), + [anon_sym_GT_AMP] = ACTIONS(1818), + [anon_sym_LT_LT] = ACTIONS(1818), + [anon_sym_LT_LT_DASH] = ACTIONS(1818), + [anon_sym_LT_LT_LT] = ACTIONS(1818), + [sym__special_characters] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), + }, + [439] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(1820), + }, + [440] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [441] = { + [sym__simple_heredoc_body] = ACTIONS(1824), + [sym__heredoc_body_beginning] = ACTIONS(1824), + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [anon_sym_esac] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_EQ_TILDE] = ACTIONS(1826), + [anon_sym_EQ_EQ] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_GT_GT] = ACTIONS(1826), + [anon_sym_AMP_GT] = ACTIONS(1826), + [anon_sym_AMP_GT_GT] = ACTIONS(1826), + [anon_sym_LT_AMP] = ACTIONS(1826), + [anon_sym_GT_AMP] = ACTIONS(1826), + [anon_sym_LT_LT] = ACTIONS(1826), + [anon_sym_LT_LT_DASH] = ACTIONS(1826), + [anon_sym_LT_LT_LT] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), + }, + [442] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(1828), + }, + [443] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [444] = { + [sym__simple_heredoc_body] = ACTIONS(1830), + [sym__heredoc_body_beginning] = ACTIONS(1830), + [sym_file_descriptor] = ACTIONS(1830), + [sym__concat] = ACTIONS(1830), + [anon_sym_esac] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_EQ_TILDE] = ACTIONS(1832), + [anon_sym_EQ_EQ] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1832), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [anon_sym_LT_LT] = ACTIONS(1832), + [anon_sym_LT_LT_DASH] = ACTIONS(1832), + [anon_sym_LT_LT_LT] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1832), + }, + [445] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [446] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1838), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1838), + }, + [447] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1838), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1838), + }, + [448] = { + [sym_do_group] = STATE(891), + [anon_sym_do] = ACTIONS(389), + [sym_comment] = ACTIONS(53), + }, + [449] = { + [sym_compound_statement] = STATE(893), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(435), + [sym_comment] = ACTIONS(53), + }, + [450] = { + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_EQ_TILDE] = ACTIONS(529), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(525), + }, + [451] = { + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1844), + [anon_sym_EQ_TILDE] = ACTIONS(559), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(557), + }, + [452] = { + [sym_variable_assignment] = STATE(355), + [sym_subscript] = STATE(105), + [sym_concatenation] = STATE(355), + [sym_string] = STATE(99), + [sym_simple_expansion] = STATE(99), + [sym_string_expansion] = STATE(99), + [sym_expansion] = STATE(99), + [sym_command_substitution] = STATE(99), + [sym_process_substitution] = STATE(99), + [aux_sym_declaration_command_repeat1] = STATE(355), + [sym_variable_name] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_SEMI_SEMI] = ACTIONS(603), + [anon_sym_PIPE_AMP] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [sym__special_characters] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(173), + [anon_sym_BQUOTE] = ACTIONS(603), + [anon_sym_LT_LPAREN] = ACTIONS(177), + [anon_sym_GT_LPAREN] = ACTIONS(177), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), + [sym_word] = ACTIONS(169), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(603), + }, + [453] = { + [sym_concatenation] = STATE(378), + [sym_string] = STATE(110), + [sym_simple_expansion] = STATE(110), + [sym_string_expansion] = STATE(110), + [sym_expansion] = STATE(110), + [sym_command_substitution] = STATE(110), + [sym_process_substitution] = STATE(110), + [aux_sym_unset_command_repeat1] = STATE(378), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [sym__special_characters] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), + [sym_word] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_LF] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(645), + }, + [454] = { + [anon_sym_RPAREN] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + }, + [455] = { + [sym_for_statement] = STATE(471), + [sym_c_style_for_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_case_statement] = STATE(471), + [sym_function_definition] = STATE(471), + [sym_subshell] = STATE(471), + [sym_pipeline] = STATE(471), + [sym_list] = STATE(471), + [sym_negated_command] = STATE(471), + [sym_test_command] = STATE(471), + [sym_declaration_command] = STATE(471), + [sym_unset_command] = STATE(471), + [sym_command] = STATE(471), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(896), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [456] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [457] = { + [sym_for_statement] = STATE(897), + [sym_c_style_for_statement] = STATE(897), + [sym_while_statement] = STATE(897), + [sym_if_statement] = STATE(897), + [sym_case_statement] = STATE(897), + [sym_function_definition] = STATE(897), + [sym_subshell] = STATE(897), + [sym_pipeline] = STATE(897), + [sym_list] = STATE(897), + [sym_negated_command] = STATE(897), + [sym_test_command] = STATE(897), + [sym_declaration_command] = STATE(897), + [sym_unset_command] = STATE(897), + [sym_command] = STATE(897), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(898), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [458] = { + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1850), + [anon_sym_AMP_GT] = ACTIONS(1848), + [anon_sym_AMP_GT_GT] = ACTIONS(1850), + [anon_sym_LT_AMP] = ACTIONS(1850), + [anon_sym_GT_AMP] = ACTIONS(1850), + [sym_comment] = ACTIONS(53), + }, + [459] = { + [sym_concatenation] = STATE(485), + [sym_string] = STATE(901), + [sym_simple_expansion] = STATE(901), + [sym_string_expansion] = STATE(901), + [sym_expansion] = STATE(901), + [sym_command_substitution] = STATE(901), + [sym_process_substitution] = STATE(901), + [sym__special_characters] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1854), + }, + [460] = { + [sym_concatenation] = STATE(489), + [sym_string] = STATE(903), + [sym_simple_expansion] = STATE(903), + [sym_string_expansion] = STATE(903), + [sym_expansion] = STATE(903), + [sym_command_substitution] = STATE(903), + [sym_process_substitution] = STATE(903), + [sym__special_characters] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1858), + }, + [461] = { + [sym_file_redirect] = STATE(904), + [sym_heredoc_redirect] = STATE(904), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(904), + [aux_sym_while_statement_repeat1] = STATE(904), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(861), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), + }, + [462] = { + [sym_file_redirect] = STATE(905), + [sym_heredoc_redirect] = STATE(905), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(905), + [sym_concatenation] = STATE(493), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_string_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [aux_sym_while_statement_repeat1] = STATE(905), + [aux_sym_command_repeat2] = STATE(493), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(299), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym__special_characters] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), + }, + [463] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(1836), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1860), + }, + [464] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1836), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1860), + }, + [465] = { + [sym_file_redirect] = STATE(905), + [sym_heredoc_redirect] = STATE(905), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(905), + [sym_concatenation] = STATE(907), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_string_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [aux_sym_while_statement_repeat1] = STATE(905), + [aux_sym_command_repeat2] = STATE(907), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(299), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym__special_characters] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), + }, + [466] = { + [sym__simple_heredoc_body] = ACTIONS(1864), + [sym__heredoc_body_beginning] = ACTIONS(1864), + [sym_file_descriptor] = ACTIONS(1864), + [sym__concat] = ACTIONS(1864), + [anon_sym_esac] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [anon_sym_PIPE_AMP] = ACTIONS(1866), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_EQ_TILDE] = ACTIONS(1866), + [anon_sym_EQ_EQ] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_GT] = ACTIONS(1866), + [anon_sym_AMP_GT] = ACTIONS(1866), + [anon_sym_AMP_GT_GT] = ACTIONS(1866), + [anon_sym_LT_AMP] = ACTIONS(1866), + [anon_sym_GT_AMP] = ACTIONS(1866), + [anon_sym_LT_LT] = ACTIONS(1866), + [anon_sym_LT_LT_DASH] = ACTIONS(1866), + [anon_sym_LT_LT_LT] = ACTIONS(1866), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), + [anon_sym_BQUOTE] = ACTIONS(1866), + [anon_sym_LT_LPAREN] = ACTIONS(1866), + [anon_sym_GT_LPAREN] = ACTIONS(1866), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), + }, + [467] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [468] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1870), + [anon_sym_SEMI_SEMI] = ACTIONS(1872), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_LF] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1872), + }, + [469] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1870), + [anon_sym_SEMI_SEMI] = ACTIONS(1872), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_LF] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1872), + }, + [470] = { + [sym_compound_statement] = STATE(910), + [anon_sym_LBRACE] = ACTIONS(435), + [sym_comment] = ACTIONS(53), + }, + [471] = { + [anon_sym_esac] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_SEMI_SEMI] = ACTIONS(1876), + [anon_sym_PIPE_AMP] = ACTIONS(1876), + [anon_sym_AMP_AMP] = ACTIONS(1876), + [anon_sym_PIPE_PIPE] = ACTIONS(1876), + [anon_sym_BQUOTE] = ACTIONS(1876), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1876), + }, + [472] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_esac] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_SEMI_SEMI] = ACTIONS(1876), + [anon_sym_PIPE_AMP] = ACTIONS(1876), + [anon_sym_AMP_AMP] = ACTIONS(1876), + [anon_sym_PIPE_PIPE] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1876), + }, + [473] = { + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1880), + }, + [474] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1880), + }, + [475] = { + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1884), + }, + [476] = { + [anon_sym_DOLLAR] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_AT] = ACTIONS(1888), + [anon_sym_QMARK] = ACTIONS(1888), + [anon_sym_0] = ACTIONS(1892), + [anon_sym__] = ACTIONS(1892), + }, + [477] = { + [sym_subscript] = STATE(917), + [sym_variable_name] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_AT] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1896), + [anon_sym_0] = ACTIONS(1902), + [anon_sym__] = ACTIONS(1902), + }, + [478] = { + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [aux_sym_heredoc_body_repeat1] = STATE(919), + [sym__heredoc_body_middle] = ACTIONS(1904), + [sym__heredoc_body_end] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(831), + [sym_comment] = ACTIONS(53), + }, + [479] = { + [sym_concatenation] = STATE(922), + [sym_string] = STATE(921), + [sym_simple_expansion] = STATE(921), + [sym_string_expansion] = STATE(921), + [sym_expansion] = STATE(921), + [sym_command_substitution] = STATE(921), + [sym_process_substitution] = STATE(921), + [sym__special_characters] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1910), + }, + [480] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(1912), + [sym__heredoc_body_beginning] = ACTIONS(1912), + [sym_file_descriptor] = ACTIONS(1912), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_SEMI_SEMI] = ACTIONS(1914), + [anon_sym_PIPE_AMP] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [anon_sym_EQ_TILDE] = ACTIONS(1914), + [anon_sym_EQ_EQ] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_GT_GT] = ACTIONS(1914), + [anon_sym_AMP_GT] = ACTIONS(1914), + [anon_sym_AMP_GT_GT] = ACTIONS(1914), + [anon_sym_LT_AMP] = ACTIONS(1914), + [anon_sym_GT_AMP] = ACTIONS(1914), + [anon_sym_LT_LT] = ACTIONS(1914), + [anon_sym_LT_LT_DASH] = ACTIONS(1914), + [anon_sym_LT_LT_LT] = ACTIONS(1914), + [sym__special_characters] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [sym_raw_string] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_LT_LPAREN] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1914), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_LF] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1914), + }, + [481] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(1916), + [sym__heredoc_body_beginning] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(1916), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_SEMI_SEMI] = ACTIONS(1918), + [anon_sym_PIPE_AMP] = ACTIONS(1918), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_EQ_TILDE] = ACTIONS(1918), + [anon_sym_EQ_EQ] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_AMP_GT] = ACTIONS(1918), + [anon_sym_AMP_GT_GT] = ACTIONS(1918), + [anon_sym_LT_AMP] = ACTIONS(1918), + [anon_sym_GT_AMP] = ACTIONS(1918), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_LT_LT_DASH] = ACTIONS(1918), + [anon_sym_LT_LT_LT] = ACTIONS(1918), + [sym__special_characters] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [sym_raw_string] = ACTIONS(1918), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), + [anon_sym_BQUOTE] = ACTIONS(1918), + [anon_sym_LT_LPAREN] = ACTIONS(1918), + [anon_sym_GT_LPAREN] = ACTIONS(1918), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1918), + }, + [482] = { + [sym__simple_heredoc_body] = ACTIONS(1916), + [sym__heredoc_body_beginning] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(1916), + [anon_sym_esac] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_SEMI_SEMI] = ACTIONS(1918), + [anon_sym_PIPE_AMP] = ACTIONS(1918), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_EQ_TILDE] = ACTIONS(1918), + [anon_sym_EQ_EQ] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_AMP_GT] = ACTIONS(1918), + [anon_sym_AMP_GT_GT] = ACTIONS(1918), + [anon_sym_LT_AMP] = ACTIONS(1918), + [anon_sym_GT_AMP] = ACTIONS(1918), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_LT_LT_DASH] = ACTIONS(1918), + [anon_sym_LT_LT_LT] = ACTIONS(1918), + [sym__special_characters] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [sym_raw_string] = ACTIONS(1918), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), + [anon_sym_BQUOTE] = ACTIONS(1918), + [anon_sym_LT_LPAREN] = ACTIONS(1918), + [anon_sym_GT_LPAREN] = ACTIONS(1918), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1918), + }, + [483] = { + [aux_sym_concatenation_repeat1] = STATE(923), + [sym__simple_heredoc_body] = ACTIONS(649), + [sym__heredoc_body_beginning] = ACTIONS(649), + [sym_file_descriptor] = ACTIONS(649), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_AMP_GT] = ACTIONS(653), + [anon_sym_AMP_GT_GT] = ACTIONS(653), + [anon_sym_LT_AMP] = ACTIONS(653), + [anon_sym_GT_AMP] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_LT] = ACTIONS(653), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), + }, + [484] = { + [aux_sym_concatenation_repeat1] = STATE(923), + [sym__simple_heredoc_body] = ACTIONS(667), + [sym__heredoc_body_beginning] = ACTIONS(667), + [sym_file_descriptor] = ACTIONS(667), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), + }, + [485] = { + [sym__simple_heredoc_body] = ACTIONS(667), + [sym__heredoc_body_beginning] = ACTIONS(667), + [sym_file_descriptor] = ACTIONS(667), + [anon_sym_esac] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), + }, + [486] = { + [sym__simple_heredoc_body] = ACTIONS(1920), + [sym__heredoc_body_beginning] = ACTIONS(1920), + [sym_file_descriptor] = ACTIONS(1920), + [anon_sym_esac] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_SEMI_SEMI] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_GT] = ACTIONS(1922), + [anon_sym_GT_GT] = ACTIONS(1922), + [anon_sym_AMP_GT] = ACTIONS(1922), + [anon_sym_AMP_GT_GT] = ACTIONS(1922), + [anon_sym_LT_AMP] = ACTIONS(1922), + [anon_sym_GT_AMP] = ACTIONS(1922), + [anon_sym_LT_LT] = ACTIONS(1922), + [anon_sym_LT_LT_DASH] = ACTIONS(1922), + [anon_sym_LT_LT_LT] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_LF] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1922), + }, + [487] = { + [aux_sym_concatenation_repeat1] = STATE(923), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1926), + [anon_sym_PIPE_AMP] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_PIPE_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1926), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1926), + [anon_sym_LT_AMP] = ACTIONS(1926), + [anon_sym_GT_AMP] = ACTIONS(1926), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1926), + [anon_sym_LT_LT_LT] = ACTIONS(1926), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), + }, + [488] = { + [aux_sym_concatenation_repeat1] = STATE(923), + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [489] = { + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [anon_sym_esac] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), + [anon_sym_BQUOTE] = ACTIONS(1930), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [490] = { + [anon_sym_esac] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1932), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1932), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), + }, + [491] = { + [sym_file_redirect] = STATE(491), + [sym_heredoc_redirect] = STATE(491), + [sym_herestring_redirect] = STATE(491), + [aux_sym_while_statement_repeat1] = STATE(491), + [sym__simple_heredoc_body] = ACTIONS(1936), + [sym__heredoc_body_beginning] = ACTIONS(1936), + [sym_file_descriptor] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_SEMI_SEMI] = ACTIONS(1941), + [anon_sym_PIPE_AMP] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_AMP_GT] = ACTIONS(1943), + [anon_sym_AMP_GT_GT] = ACTIONS(1943), + [anon_sym_LT_AMP] = ACTIONS(1943), + [anon_sym_GT_AMP] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1946), + [anon_sym_LT_LT_DASH] = ACTIONS(1946), + [anon_sym_LT_LT_LT] = ACTIONS(1949), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1941), + }, + [492] = { + [sym_file_redirect] = STATE(491), + [sym_heredoc_redirect] = STATE(491), + [sym_heredoc_body] = STATE(924), + [sym_herestring_redirect] = STATE(491), + [aux_sym_while_statement_repeat1] = STATE(491), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_AMP_GT] = ACTIONS(301), + [anon_sym_AMP_GT_GT] = ACTIONS(301), + [anon_sym_LT_AMP] = ACTIONS(301), + [anon_sym_GT_AMP] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(305), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), + }, + [493] = { + [sym_concatenation] = STATE(493), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_string_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [aux_sym_command_repeat2] = STATE(493), + [sym__simple_heredoc_body] = ACTIONS(1916), + [sym__heredoc_body_beginning] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_SEMI_SEMI] = ACTIONS(1918), + [anon_sym_PIPE_AMP] = ACTIONS(1918), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_EQ_TILDE] = ACTIONS(1952), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_AMP_GT] = ACTIONS(1918), + [anon_sym_AMP_GT_GT] = ACTIONS(1918), + [anon_sym_LT_AMP] = ACTIONS(1918), + [anon_sym_GT_AMP] = ACTIONS(1918), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_LT_LT_DASH] = ACTIONS(1918), + [anon_sym_LT_LT_LT] = ACTIONS(1918), + [sym__special_characters] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LT_LPAREN] = ACTIONS(1976), + [anon_sym_GT_LPAREN] = ACTIONS(1976), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1918), + }, + [494] = { + [sym_file_redirect] = STATE(925), + [sym_heredoc_redirect] = STATE(925), + [sym_heredoc_body] = STATE(924), + [sym_herestring_redirect] = STATE(925), + [sym_concatenation] = STATE(493), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_string_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [aux_sym_while_statement_repeat1] = STATE(925), + [aux_sym_command_repeat2] = STATE(493), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_EQ_TILDE] = ACTIONS(299), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_AMP_GT] = ACTIONS(301), + [anon_sym_AMP_GT_GT] = ACTIONS(301), + [anon_sym_LT_AMP] = ACTIONS(301), + [anon_sym_GT_AMP] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(305), + [sym__special_characters] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), + }, + [495] = { + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [anon_sym_RBRACK] = ACTIONS(1979), + [sym__special_characters] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1233), + }, + [496] = { + [sym__concat] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_PLUS_EQ] = ACTIONS(1985), + [sym_comment] = ACTIONS(53), + }, + [497] = { + [aux_sym_concatenation_repeat1] = STATE(928), + [sym__concat] = ACTIONS(493), + [anon_sym_RBRACK] = ACTIONS(683), + [sym_comment] = ACTIONS(53), + }, + [498] = { + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [anon_sym_RBRACK] = ACTIONS(1987), + [sym__special_characters] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1233), + }, + [499] = { + [sym__concat] = ACTIONS(1989), + [anon_sym_EQ] = ACTIONS(1991), + [anon_sym_PLUS_EQ] = ACTIONS(1991), + [sym_comment] = ACTIONS(53), + }, + [500] = { + [anon_sym_RBRACK] = ACTIONS(1987), + [sym_comment] = ACTIONS(53), + }, + [501] = { + [sym_file_descriptor] = ACTIONS(1993), + [sym_variable_name] = ACTIONS(1993), + [anon_sym_esac] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_SEMI_SEMI] = ACTIONS(1995), + [anon_sym_PIPE_AMP] = ACTIONS(1995), + [anon_sym_AMP_AMP] = ACTIONS(1995), + [anon_sym_PIPE_PIPE] = ACTIONS(1995), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_AMP_GT] = ACTIONS(1995), + [anon_sym_AMP_GT_GT] = ACTIONS(1995), + [anon_sym_LT_AMP] = ACTIONS(1995), + [anon_sym_GT_AMP] = ACTIONS(1995), + [sym__special_characters] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1995), + [sym_raw_string] = ACTIONS(1995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1995), + [anon_sym_BQUOTE] = ACTIONS(1995), + [anon_sym_LT_LPAREN] = ACTIONS(1995), + [anon_sym_GT_LPAREN] = ACTIONS(1995), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_LF] = ACTIONS(1993), + [anon_sym_AMP] = ACTIONS(1995), + }, + [502] = { + [aux_sym_concatenation_repeat1] = STATE(932), + [sym__concat] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1999), + [sym__special_characters] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2001), + [sym_raw_string] = ACTIONS(1999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1999), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1999), + [anon_sym_BQUOTE] = ACTIONS(1999), + [anon_sym_LT_LPAREN] = ACTIONS(1999), + [anon_sym_GT_LPAREN] = ACTIONS(1999), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1999), + }, + [503] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(935), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2005), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [504] = { + [sym_string] = STATE(937), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(2007), + [sym_raw_string] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_AT] = ACTIONS(2007), + [anon_sym_QMARK] = ACTIONS(2007), + [anon_sym_0] = ACTIONS(2013), + [anon_sym__] = ACTIONS(2013), + }, + [505] = { + [aux_sym_concatenation_repeat1] = STATE(932), + [sym__concat] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(2015), + [sym__special_characters] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [sym_raw_string] = ACTIONS(2015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2015), + [anon_sym_BQUOTE] = ACTIONS(2015), + [anon_sym_LT_LPAREN] = ACTIONS(2015), + [anon_sym_GT_LPAREN] = ACTIONS(2015), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2015), + }, + [506] = { + [sym_subscript] = STATE(943), + [sym_variable_name] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2021), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_AT] = ACTIONS(2021), + [anon_sym_QMARK] = ACTIONS(2021), + [anon_sym_0] = ACTIONS(2027), + [anon_sym__] = ACTIONS(2027), + }, + [507] = { + [sym__terminated_statement] = STATE(946), + [sym_for_statement] = STATE(944), + [sym_c_style_for_statement] = STATE(944), + [sym_while_statement] = STATE(944), + [sym_if_statement] = STATE(944), + [sym_case_statement] = STATE(944), + [sym_function_definition] = STATE(944), + [sym_subshell] = STATE(944), + [sym_pipeline] = STATE(944), + [sym_list] = STATE(944), + [sym_negated_command] = STATE(944), + [sym_test_command] = STATE(944), + [sym_declaration_command] = STATE(944), + [sym_unset_command] = STATE(944), + [sym_command] = STATE(944), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(945), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(946), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [508] = { + [sym__terminated_statement] = STATE(949), + [sym_for_statement] = STATE(947), + [sym_c_style_for_statement] = STATE(947), + [sym_while_statement] = STATE(947), + [sym_if_statement] = STATE(947), + [sym_case_statement] = STATE(947), + [sym_function_definition] = STATE(947), + [sym_subshell] = STATE(947), + [sym_pipeline] = STATE(947), + [sym_list] = STATE(947), + [sym_negated_command] = STATE(947), + [sym_test_command] = STATE(947), + [sym_declaration_command] = STATE(947), + [sym_unset_command] = STATE(947), + [sym_command] = STATE(947), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(948), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(949), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [509] = { + [sym__terminated_statement] = STATE(952), + [sym_for_statement] = STATE(950), + [sym_c_style_for_statement] = STATE(950), + [sym_while_statement] = STATE(950), + [sym_if_statement] = STATE(950), + [sym_case_statement] = STATE(950), + [sym_function_definition] = STATE(950), + [sym_subshell] = STATE(950), + [sym_pipeline] = STATE(950), + [sym_list] = STATE(950), + [sym_negated_command] = STATE(950), + [sym_test_command] = STATE(950), + [sym_declaration_command] = STATE(950), + [sym_unset_command] = STATE(950), + [sym_command] = STATE(950), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(951), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(952), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [510] = { + [sym_concatenation] = STATE(954), + [sym_string] = STATE(505), + [sym_simple_expansion] = STATE(505), + [sym_string_expansion] = STATE(505), + [sym_expansion] = STATE(505), + [sym_command_substitution] = STATE(505), + [sym_process_substitution] = STATE(505), + [aux_sym_for_statement_repeat1] = STATE(954), + [anon_sym_RPAREN] = ACTIONS(2029), + [sym__special_characters] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LT_LPAREN] = ACTIONS(993), + [anon_sym_GT_LPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(985), + }, + [511] = { + [sym_string] = STATE(955), + [sym_simple_expansion] = STATE(955), + [sym_string_expansion] = STATE(955), + [sym_expansion] = STATE(955), + [sym_command_substitution] = STATE(955), + [sym_process_substitution] = STATE(955), + [sym__special_characters] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(347), + [sym_raw_string] = ACTIONS(2031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(355), + [anon_sym_LT_LPAREN] = ACTIONS(357), + [anon_sym_GT_LPAREN] = ACTIONS(357), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2031), + }, + [512] = { + [aux_sym_concatenation_repeat1] = STATE(956), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(997), + [sym_variable_name] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [513] = { + [sym_file_descriptor] = ACTIONS(687), + [sym__concat] = ACTIONS(687), + [sym_variable_name] = ACTIONS(687), + [anon_sym_esac] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), + }, + [514] = { + [anon_sym_DQUOTE] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [515] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(2035), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [516] = { + [sym_file_descriptor] = ACTIONS(719), + [sym__concat] = ACTIONS(719), + [sym_variable_name] = ACTIONS(719), + [anon_sym_esac] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(721), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LT_LPAREN] = ACTIONS(721), + [anon_sym_GT_LPAREN] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), + }, + [517] = { + [sym_file_descriptor] = ACTIONS(723), + [sym__concat] = ACTIONS(723), + [sym_variable_name] = ACTIONS(723), + [anon_sym_esac] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), + }, + [518] = { + [sym_file_descriptor] = ACTIONS(727), + [sym__concat] = ACTIONS(727), + [sym_variable_name] = ACTIONS(727), + [anon_sym_esac] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(729), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + }, + [519] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2037), + [sym_comment] = ACTIONS(53), + }, + [520] = { + [sym_concatenation] = STATE(962), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(962), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_EQ] = ACTIONS(2041), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2045), + [anon_sym_COLON] = ACTIONS(2041), + [anon_sym_COLON_QMARK] = ACTIONS(2041), + [anon_sym_COLON_DASH] = ACTIONS(2041), + [anon_sym_PERCENT] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [521] = { + [sym_subscript] = STATE(966), + [sym_variable_name] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2049), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2051), + [anon_sym_STAR] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_QMARK] = ACTIONS(2049), + [anon_sym_0] = ACTIONS(2053), + [anon_sym__] = ACTIONS(2053), + }, + [522] = { + [sym_concatenation] = STATE(969), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(969), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_EQ] = ACTIONS(2057), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_COLON] = ACTIONS(2057), + [anon_sym_COLON_QMARK] = ACTIONS(2057), + [anon_sym_COLON_DASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [523] = { + [sym_concatenation] = STATE(972), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(972), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_EQ] = ACTIONS(2065), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2069), + [anon_sym_COLON] = ACTIONS(2065), + [anon_sym_COLON_QMARK] = ACTIONS(2065), + [anon_sym_COLON_DASH] = ACTIONS(2065), + [anon_sym_PERCENT] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [524] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_SEMI_SEMI] = ACTIONS(2073), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2073), + }, + [525] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_SEMI_SEMI] = ACTIONS(2073), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2073), + }, + [526] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(975), + [sym_c_style_for_statement] = STATE(975), + [sym_while_statement] = STATE(975), + [sym_if_statement] = STATE(975), + [sym_case_statement] = STATE(975), + [sym_function_definition] = STATE(975), + [sym_subshell] = STATE(975), + [sym_pipeline] = STATE(975), + [sym_list] = STATE(975), + [sym_negated_command] = STATE(975), + [sym_test_command] = STATE(975), + [sym_declaration_command] = STATE(975), + [sym_unset_command] = STATE(975), + [sym_command] = STATE(975), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(976), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [527] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2077), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2071), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_LF] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2077), + }, + [528] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2077), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2071), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_LF] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2077), + }, + [529] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(978), + [sym_c_style_for_statement] = STATE(978), + [sym_while_statement] = STATE(978), + [sym_if_statement] = STATE(978), + [sym_case_statement] = STATE(978), + [sym_function_definition] = STATE(978), + [sym_subshell] = STATE(978), + [sym_pipeline] = STATE(978), + [sym_list] = STATE(978), + [sym_negated_command] = STATE(978), + [sym_test_command] = STATE(978), + [sym_declaration_command] = STATE(978), + [sym_unset_command] = STATE(978), + [sym_command] = STATE(978), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(979), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [530] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2081), + [anon_sym_SEMI_SEMI] = ACTIONS(2083), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_LF] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2083), + }, + [531] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2081), + [anon_sym_SEMI_SEMI] = ACTIONS(2083), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_LF] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2083), + }, + [532] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(982), + [sym_c_style_for_statement] = STATE(982), + [sym_while_statement] = STATE(982), + [sym_if_statement] = STATE(982), + [sym_case_statement] = STATE(982), + [sym_function_definition] = STATE(982), + [sym_subshell] = STATE(982), + [sym_pipeline] = STATE(982), + [sym_list] = STATE(982), + [sym_negated_command] = STATE(982), + [sym_test_command] = STATE(982), + [sym_declaration_command] = STATE(982), + [sym_unset_command] = STATE(982), + [sym_command] = STATE(982), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(983), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [533] = { + [sym__expression] = STATE(995), + [sym_binary_expression] = STATE(995), + [sym_unary_expression] = STATE(995), + [sym_parenthesized_expression] = STATE(995), + [sym_concatenation] = STATE(995), + [sym_string] = STATE(990), + [sym_simple_expansion] = STATE(990), + [sym_string_expansion] = STATE(990), + [sym_expansion] = STATE(990), + [sym_command_substitution] = STATE(990), + [sym_process_substitution] = STATE(990), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2091), + [sym__special_characters] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2103), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2109), + [sym_test_operator] = ACTIONS(2111), + }, + [534] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2113), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_EQ_TILDE] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1073), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym_LF] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2113), + }, + [535] = { + [anon_sym_RPAREN] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE_PIPE] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1225), + }, + [536] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_EQ_TILDE] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1073), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(2119), + }, + [537] = { + [sym_string] = STATE(998), + [sym_simple_expansion] = STATE(998), + [sym_string_expansion] = STATE(998), + [sym_expansion] = STATE(998), + [sym_command_substitution] = STATE(998), + [sym_process_substitution] = STATE(998), + [sym__special_characters] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(2121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [anon_sym_GT_LPAREN] = ACTIONS(1041), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2121), + }, + [538] = { + [aux_sym_concatenation_repeat1] = STATE(999), + [sym__concat] = ACTIONS(1045), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_EQ_TILDE] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [539] = { + [sym__concat] = ACTIONS(687), + [anon_sym_esac] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_EQ_TILDE] = ACTIONS(689), + [anon_sym_EQ_EQ] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG_EQ] = ACTIONS(689), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), + }, + [540] = { + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [541] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2125), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [542] = { + [sym__concat] = ACTIONS(719), + [anon_sym_esac] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_EQ_TILDE] = ACTIONS(721), + [anon_sym_EQ_EQ] = ACTIONS(721), + [anon_sym_EQ] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_BANG_EQ] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), + }, + [543] = { + [sym__concat] = ACTIONS(723), + [anon_sym_esac] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_EQ_TILDE] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), + }, + [544] = { + [sym__concat] = ACTIONS(727), + [anon_sym_esac] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_EQ_TILDE] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + }, + [545] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2127), + [sym_comment] = ACTIONS(53), + }, + [546] = { + [sym_concatenation] = STATE(1005), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1005), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_EQ] = ACTIONS(2131), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2135), + [anon_sym_COLON] = ACTIONS(2131), + [anon_sym_COLON_QMARK] = ACTIONS(2131), + [anon_sym_COLON_DASH] = ACTIONS(2131), + [anon_sym_PERCENT] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [547] = { + [sym_subscript] = STATE(1009), + [sym_variable_name] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_0] = ACTIONS(2143), + [anon_sym__] = ACTIONS(2143), + }, + [548] = { + [sym_concatenation] = STATE(1012), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1012), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_EQ] = ACTIONS(2147), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_COLON] = ACTIONS(2147), + [anon_sym_COLON_QMARK] = ACTIONS(2147), + [anon_sym_COLON_DASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [549] = { + [sym_concatenation] = STATE(1015), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1015), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_EQ] = ACTIONS(2155), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_COLON] = ACTIONS(2155), + [anon_sym_COLON_QMARK] = ACTIONS(2155), + [anon_sym_COLON_DASH] = ACTIONS(2155), + [anon_sym_PERCENT] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [550] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2161), + [anon_sym_SEMI_SEMI] = ACTIONS(2163), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_LF] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2163), + }, + [551] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2161), + [anon_sym_SEMI_SEMI] = ACTIONS(2163), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_LF] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2163), + }, + [552] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1018), + [sym_c_style_for_statement] = STATE(1018), + [sym_while_statement] = STATE(1018), + [sym_if_statement] = STATE(1018), + [sym_case_statement] = STATE(1018), + [sym_function_definition] = STATE(1018), + [sym_subshell] = STATE(1018), + [sym_pipeline] = STATE(1018), + [sym_list] = STATE(1018), + [sym_negated_command] = STATE(1018), + [sym_test_command] = STATE(1018), + [sym_declaration_command] = STATE(1018), + [sym_unset_command] = STATE(1018), + [sym_command] = STATE(1018), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1019), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [553] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2167), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2161), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_LF] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2167), + }, + [554] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2167), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2161), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_LF] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2167), + }, + [555] = { + [sym__terminated_statement] = STATE(273), [sym_for_statement] = STATE(1021), [sym_c_style_for_statement] = STATE(1021), [sym_while_statement] = STATE(1021), @@ -22777,36 +23408,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1021), [sym_unset_command] = STATE(1021), [sym_command] = STATE(1021), - [sym_command_name] = STATE(182), + [sym_command_name] = STATE(155), [sym_variable_assignment] = STATE(1022), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -22814,8342 +23446,9121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [543] = { - [anon_sym_LT] = ACTIONS(2116), - [anon_sym_GT] = ACTIONS(2116), - [anon_sym_GT_GT] = ACTIONS(2118), - [anon_sym_AMP_GT] = ACTIONS(2116), - [anon_sym_AMP_GT_GT] = ACTIONS(2118), - [anon_sym_LT_AMP] = ACTIONS(2118), - [anon_sym_GT_AMP] = ACTIONS(2118), - [sym_comment] = ACTIONS(53), - }, - [544] = { - [sym_concatenation] = STATE(994), - [sym_string] = STATE(1025), - [sym_simple_expansion] = STATE(1025), - [sym_string_expansion] = STATE(1025), - [sym_expansion] = STATE(1025), - [sym_command_substitution] = STATE(1025), - [sym_process_substitution] = STATE(1025), - [sym__special_characters] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(2122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2086), - [anon_sym_BQUOTE] = ACTIONS(2088), - [anon_sym_LT_LPAREN] = ACTIONS(2090), - [anon_sym_GT_LPAREN] = ACTIONS(2090), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2122), - [sym_regex] = ACTIONS(2092), - }, - [545] = { - [sym_concatenation] = STATE(997), - [sym_string] = STATE(1027), - [sym_simple_expansion] = STATE(1027), - [sym_string_expansion] = STATE(1027), - [sym_expansion] = STATE(1027), - [sym_command_substitution] = STATE(1027), - [sym_process_substitution] = STATE(1027), - [sym__special_characters] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(2126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2126), - }, - [546] = { - [sym_concatenation] = STATE(1001), - [sym_string] = STATE(1029), - [sym_simple_expansion] = STATE(1029), - [sym_string_expansion] = STATE(1029), - [sym_expansion] = STATE(1029), - [sym_command_substitution] = STATE(1029), - [sym_process_substitution] = STATE(1029), - [sym__special_characters] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(2130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2130), - }, - [547] = { - [aux_sym_concatenation_repeat1] = STATE(539), - [sym__simple_heredoc_body] = ACTIONS(1031), - [sym__heredoc_body_beginning] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1031), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [sym__special_characters] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1033), - }, - [548] = { - [aux_sym_concatenation_repeat1] = STATE(539), - [sym__simple_heredoc_body] = ACTIONS(1035), - [sym__heredoc_body_beginning] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1035), - [anon_sym_AMP_AMP] = ACTIONS(1035), - [anon_sym_PIPE_PIPE] = ACTIONS(1035), - [anon_sym_EQ_TILDE] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1035), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1035), - [anon_sym_LT_AMP] = ACTIONS(1035), - [anon_sym_GT_AMP] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_LT_LT_DASH] = ACTIONS(1035), - [anon_sym_LT_LT_LT] = ACTIONS(1035), - [sym__special_characters] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), - [anon_sym_BQUOTE] = ACTIONS(1035), - [anon_sym_LT_LPAREN] = ACTIONS(1035), - [anon_sym_GT_LPAREN] = ACTIONS(1035), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1037), - }, - [549] = { - [sym_file_redirect] = STATE(1030), - [sym_heredoc_redirect] = STATE(1030), - [sym_heredoc_body] = STATE(1002), - [sym_herestring_redirect] = STATE(1030), - [aux_sym_while_statement_repeat1] = STATE(1030), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1041), - [anon_sym_PIPE_PIPE] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(977), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [anon_sym_BQUOTE] = ACTIONS(1041), - [sym_comment] = ACTIONS(53), - }, - [550] = { - [sym_file_redirect] = STATE(1031), - [sym_heredoc_redirect] = STATE(1031), - [sym_heredoc_body] = STATE(1002), - [sym_herestring_redirect] = STATE(1031), - [sym_concatenation] = STATE(522), - [sym_string] = STATE(548), - [sym_simple_expansion] = STATE(548), - [sym_string_expansion] = STATE(548), - [sym_expansion] = STATE(548), - [sym_command_substitution] = STATE(548), - [sym_process_substitution] = STATE(548), - [aux_sym_while_statement_repeat1] = STATE(1031), - [aux_sym_command_repeat2] = STATE(1032), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1041), - [anon_sym_PIPE_PIPE] = ACTIONS(1041), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(977), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [sym__special_characters] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(1041), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(987), - }, - [551] = { - [sym_file_redirect] = STATE(1031), - [sym_heredoc_redirect] = STATE(1031), - [sym_heredoc_body] = STATE(1002), - [sym_herestring_redirect] = STATE(1031), - [sym_concatenation] = STATE(522), - [sym_string] = STATE(548), - [sym_simple_expansion] = STATE(548), - [sym_string_expansion] = STATE(548), - [sym_expansion] = STATE(548), - [sym_command_substitution] = STATE(548), - [sym_process_substitution] = STATE(548), - [aux_sym_while_statement_repeat1] = STATE(1031), - [aux_sym_command_repeat2] = STATE(1033), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1041), - [anon_sym_PIPE_PIPE] = ACTIONS(1041), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(977), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [sym__special_characters] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(1041), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(987), - }, - [552] = { - [sym__simple_heredoc_body] = ACTIONS(2132), - [sym__heredoc_body_beginning] = ACTIONS(2132), - [sym_file_descriptor] = ACTIONS(2132), - [sym__concat] = ACTIONS(2132), - [anon_sym_esac] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [anon_sym_EQ_TILDE] = ACTIONS(2134), - [anon_sym_EQ_EQ] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2134), - [anon_sym_GT_GT] = ACTIONS(2134), - [anon_sym_AMP_GT] = ACTIONS(2134), - [anon_sym_AMP_GT_GT] = ACTIONS(2134), - [anon_sym_LT_AMP] = ACTIONS(2134), - [anon_sym_GT_AMP] = ACTIONS(2134), - [anon_sym_LT_LT] = ACTIONS(2134), - [anon_sym_LT_LT_DASH] = ACTIONS(2134), - [anon_sym_LT_LT_LT] = ACTIONS(2134), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), - [anon_sym_BQUOTE] = ACTIONS(2134), - [anon_sym_LT_LPAREN] = ACTIONS(2134), - [anon_sym_GT_LPAREN] = ACTIONS(2134), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), - }, - [553] = { - [sym_compound_statement] = STATE(1034), - [anon_sym_LBRACE] = ACTIONS(483), - [sym_comment] = ACTIONS(53), - }, - [554] = { - [anon_sym_esac] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_SEMI_SEMI] = ACTIONS(2136), - [anon_sym_PIPE_AMP] = ACTIONS(2136), - [anon_sym_AMP_AMP] = ACTIONS(2136), - [anon_sym_PIPE_PIPE] = ACTIONS(2136), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LF] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2136), - }, - [555] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_esac] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_SEMI_SEMI] = ACTIONS(2136), - [anon_sym_PIPE_AMP] = ACTIONS(2136), - [anon_sym_AMP_AMP] = ACTIONS(2136), - [anon_sym_PIPE_PIPE] = ACTIONS(2136), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LF] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2136), - }, - [556] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(2140), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LF] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2140), - }, - [557] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(2140), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LF] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2140), - }, - [558] = { - [anon_sym_esac] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_SEMI_SEMI] = ACTIONS(2144), - [anon_sym_PIPE_AMP] = ACTIONS(2144), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_LF] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2144), - }, - [559] = { - [anon_sym_DOLLAR] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2148), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2148), - [anon_sym_0] = ACTIONS(2152), - [anon_sym__] = ACTIONS(2152), - }, - [560] = { - [sym_subscript] = STATE(1041), - [sym_variable_name] = ACTIONS(2154), - [anon_sym_DOLLAR] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_DASH] = ACTIONS(2156), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_QMARK] = ACTIONS(2156), - [anon_sym_0] = ACTIONS(2162), - [anon_sym__] = ACTIONS(2162), - }, - [561] = { - [sym_simple_expansion] = STATE(1043), - [sym_expansion] = STATE(1043), - [aux_sym_heredoc_body_repeat1] = STATE(1043), - [sym__heredoc_body_middle] = ACTIONS(2164), - [sym__heredoc_body_end] = ACTIONS(2166), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), - [sym_comment] = ACTIONS(53), - }, - [562] = { - [sym_concatenation] = STATE(1046), - [sym_string] = STATE(1045), - [sym_simple_expansion] = STATE(1045), - [sym_string_expansion] = STATE(1045), - [sym_expansion] = STATE(1045), - [sym_command_substitution] = STATE(1045), - [sym_process_substitution] = STATE(1045), - [sym__special_characters] = ACTIONS(2168), + [sym__special_characters] = ACTIONS(37), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2170), + [sym_raw_string] = ACTIONS(43), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2170), + [sym_word] = ACTIONS(277), + }, + [556] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_SEMI_SEMI] = ACTIONS(2173), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2173), + }, + [557] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_SEMI_SEMI] = ACTIONS(2173), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2173), + }, + [558] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1025), + [sym_c_style_for_statement] = STATE(1025), + [sym_while_statement] = STATE(1025), + [sym_if_statement] = STATE(1025), + [sym_case_statement] = STATE(1025), + [sym_function_definition] = STATE(1025), + [sym_subshell] = STATE(1025), + [sym_pipeline] = STATE(1025), + [sym_list] = STATE(1025), + [sym_negated_command] = STATE(1025), + [sym_test_command] = STATE(1025), + [sym_declaration_command] = STATE(1025), + [sym_unset_command] = STATE(1025), + [sym_command] = STATE(1025), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1026), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [559] = { + [sym__expression] = STATE(1027), + [sym_binary_expression] = STATE(1027), + [sym_unary_expression] = STATE(1027), + [sym_parenthesized_expression] = STATE(1027), + [sym_concatenation] = STATE(1027), + [sym_string] = STATE(203), + [sym_simple_expansion] = STATE(203), + [sym_string_expansion] = STATE(203), + [sym_expansion] = STATE(203), + [sym_command_substitution] = STATE(203), + [sym_process_substitution] = STATE(203), + [anon_sym_SEMI_SEMI] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(363), + [sym__special_characters] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(371), + [sym_test_operator] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym_LF] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2113), + }, + [560] = { + [sym__expression] = STATE(1028), + [sym_binary_expression] = STATE(1028), + [sym_unary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(1028), + [sym_concatenation] = STATE(1028), + [sym_string] = STATE(203), + [sym_simple_expansion] = STATE(203), + [sym_string_expansion] = STATE(203), + [sym_expansion] = STATE(203), + [sym_command_substitution] = STATE(203), + [sym_process_substitution] = STATE(203), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(363), + [sym__special_characters] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [anon_sym_GT_LPAREN] = ACTIONS(1041), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(371), + [sym_test_operator] = ACTIONS(1043), + }, + [561] = { + [sym__expression] = STATE(1028), + [sym_binary_expression] = STATE(1028), + [sym_unary_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(1028), + [sym_concatenation] = STATE(1028), + [sym_string] = STATE(203), + [sym_simple_expansion] = STATE(203), + [sym_string_expansion] = STATE(203), + [sym_expansion] = STATE(203), + [sym_command_substitution] = STATE(203), + [sym_process_substitution] = STATE(203), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(363), + [sym__special_characters] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(371), + [sym_test_operator] = ACTIONS(363), + [sym_regex] = ACTIONS(2177), + }, + [562] = { + [aux_sym_concatenation_repeat1] = STATE(1030), + [sym__concat] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(2001), + [sym__special_characters] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [sym_raw_string] = ACTIONS(2001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2001), + [anon_sym_BQUOTE] = ACTIONS(2001), + [anon_sym_LT_LPAREN] = ACTIONS(2001), + [anon_sym_GT_LPAREN] = ACTIONS(2001), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LF] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(2001), }, [563] = { - [aux_sym_concatenation_repeat1] = STATE(127), - [sym__simple_heredoc_body] = ACTIONS(2172), - [sym__heredoc_body_beginning] = ACTIONS(2172), - [sym_file_descriptor] = ACTIONS(2172), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_SEMI_SEMI] = ACTIONS(2174), - [anon_sym_PIPE_AMP] = ACTIONS(2174), - [anon_sym_AMP_AMP] = ACTIONS(2174), - [anon_sym_PIPE_PIPE] = ACTIONS(2174), - [anon_sym_EQ_TILDE] = ACTIONS(2174), - [anon_sym_EQ_EQ] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_GT] = ACTIONS(2174), - [anon_sym_GT_GT] = ACTIONS(2174), - [anon_sym_AMP_GT] = ACTIONS(2174), - [anon_sym_AMP_GT_GT] = ACTIONS(2174), - [anon_sym_LT_AMP] = ACTIONS(2174), - [anon_sym_GT_AMP] = ACTIONS(2174), - [anon_sym_LT_LT] = ACTIONS(2174), - [anon_sym_LT_LT_DASH] = ACTIONS(2174), - [anon_sym_LT_LT_LT] = ACTIONS(2174), - [sym__special_characters] = ACTIONS(2174), - [anon_sym_DQUOTE] = ACTIONS(2174), - [anon_sym_DOLLAR] = ACTIONS(2174), - [sym_raw_string] = ACTIONS(2174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2174), - [anon_sym_BQUOTE] = ACTIONS(2174), - [anon_sym_LT_LPAREN] = ACTIONS(2174), - [anon_sym_GT_LPAREN] = ACTIONS(2174), + [aux_sym_concatenation_repeat1] = STATE(1030), + [sym__concat] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(2017), + [sym__special_characters] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [sym_raw_string] = ACTIONS(2017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2017), + [anon_sym_BQUOTE] = ACTIONS(2017), + [anon_sym_LT_LPAREN] = ACTIONS(2017), + [anon_sym_GT_LPAREN] = ACTIONS(2017), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_LF] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2174), + [sym_word] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), }, [564] = { - [aux_sym_concatenation_repeat1] = STATE(127), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_SEMI_SEMI] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_EQ_TILDE] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2178), - [anon_sym_LT_LT_LT] = ACTIONS(2178), - [sym__special_characters] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LT_LPAREN] = ACTIONS(2178), - [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_concatenation] = STATE(1032), + [sym_string] = STATE(563), + [sym_simple_expansion] = STATE(563), + [sym_string_expansion] = STATE(563), + [sym_expansion] = STATE(563), + [sym_command_substitution] = STATE(563), + [sym_process_substitution] = STATE(563), + [aux_sym_for_statement_repeat1] = STATE(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(2179), + [sym__special_characters] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(73), + [sym_raw_string] = ACTIONS(2185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2187), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2189), + [anon_sym_BQUOTE] = ACTIONS(2191), + [anon_sym_LT_LPAREN] = ACTIONS(2193), + [anon_sym_GT_LPAREN] = ACTIONS(2193), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_LF] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2178), + [sym_word] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_LF] = ACTIONS(2195), + [anon_sym_AMP] = ACTIONS(2179), }, [565] = { - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [anon_sym_esac] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2178), - [anon_sym_SEMI_SEMI] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_EQ_TILDE] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2178), - [anon_sym_LT_LT_LT] = ACTIONS(2178), - [sym__special_characters] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LT_LPAREN] = ACTIONS(2178), - [anon_sym_GT_LPAREN] = ACTIONS(2178), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_LF] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2178), + [sym__terminated_statement] = STATE(1034), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1034), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [566] = { - [aux_sym_concatenation_repeat1] = STATE(1047), - [sym__simple_heredoc_body] = ACTIONS(697), - [sym__heredoc_body_beginning] = ACTIONS(697), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(701), - [anon_sym_LT_AMP] = ACTIONS(701), - [anon_sym_GT_AMP] = ACTIONS(701), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(701), + [anon_sym_esac] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_SEMI_SEMI] = ACTIONS(2199), + [anon_sym_PIPE_AMP] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_BQUOTE] = ACTIONS(2199), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LF] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2199), }, [567] = { - [aux_sym_concatenation_repeat1] = STATE(1047), - [sym__simple_heredoc_body] = ACTIONS(715), - [sym__heredoc_body_beginning] = ACTIONS(715), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(717), - [anon_sym_LT_AMP] = ACTIONS(717), - [anon_sym_GT_AMP] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(717), - [anon_sym_LT_LT_LT] = ACTIONS(717), + [sym__simple_heredoc_body] = ACTIONS(2203), + [sym__heredoc_body_beginning] = ACTIONS(2203), + [sym_file_descriptor] = ACTIONS(2203), + [anon_sym_esac] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_SEMI_SEMI] = ACTIONS(2205), + [anon_sym_PIPE_AMP] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2205), + [anon_sym_PIPE_PIPE] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_GT_GT] = ACTIONS(2205), + [anon_sym_AMP_GT] = ACTIONS(2205), + [anon_sym_AMP_GT_GT] = ACTIONS(2205), + [anon_sym_LT_AMP] = ACTIONS(2205), + [anon_sym_GT_AMP] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_LT_LT_DASH] = ACTIONS(2205), + [anon_sym_LT_LT_LT] = ACTIONS(2205), + [anon_sym_BQUOTE] = ACTIONS(2205), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2205), }, [568] = { - [sym__simple_heredoc_body] = ACTIONS(715), - [sym__heredoc_body_beginning] = ACTIONS(715), - [sym_file_descriptor] = ACTIONS(715), - [anon_sym_esac] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(717), - [anon_sym_LT_AMP] = ACTIONS(717), - [anon_sym_GT_AMP] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(717), - [anon_sym_LT_LT_LT] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), + [sym__terminated_statement] = STATE(1036), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1036), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [569] = { - [sym__simple_heredoc_body] = ACTIONS(2180), - [sym__heredoc_body_beginning] = ACTIONS(2180), - [sym_file_descriptor] = ACTIONS(2180), - [anon_sym_esac] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_RPAREN] = ACTIONS(2182), - [anon_sym_SEMI_SEMI] = ACTIONS(2182), - [anon_sym_PIPE_AMP] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2182), - [anon_sym_PIPE_PIPE] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2182), - [anon_sym_GT_GT] = ACTIONS(2182), - [anon_sym_AMP_GT] = ACTIONS(2182), - [anon_sym_AMP_GT_GT] = ACTIONS(2182), - [anon_sym_LT_AMP] = ACTIONS(2182), - [anon_sym_GT_AMP] = ACTIONS(2182), - [anon_sym_LT_LT] = ACTIONS(2182), - [anon_sym_LT_LT_DASH] = ACTIONS(2182), - [anon_sym_LT_LT_LT] = ACTIONS(2182), + [anon_sym_esac] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_RPAREN] = ACTIONS(2209), + [anon_sym_SEMI_SEMI] = ACTIONS(2209), + [anon_sym_PIPE_AMP] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_BQUOTE] = ACTIONS(2209), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_LF] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2209), }, [570] = { - [aux_sym_concatenation_repeat1] = STATE(1047), - [sym__simple_heredoc_body] = ACTIONS(2184), - [sym__heredoc_body_beginning] = ACTIONS(2184), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_SEMI_SEMI] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(2186), - [anon_sym_AMP_AMP] = ACTIONS(2186), - [anon_sym_PIPE_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2186), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2186), - [anon_sym_LT_AMP] = ACTIONS(2186), - [anon_sym_GT_AMP] = ACTIONS(2186), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2186), - [anon_sym_LT_LT_LT] = ACTIONS(2186), + [sym_file_redirect] = STATE(491), + [sym_heredoc_redirect] = STATE(491), + [sym_heredoc_body] = STATE(1037), + [sym_herestring_redirect] = STATE(491), + [aux_sym_while_statement_repeat1] = STATE(491), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_SEMI_SEMI] = ACTIONS(2209), + [anon_sym_PIPE_AMP] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_AMP_GT] = ACTIONS(301), + [anon_sym_AMP_GT_GT] = ACTIONS(301), + [anon_sym_LT_AMP] = ACTIONS(301), + [anon_sym_GT_AMP] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(305), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2209), }, [571] = { - [aux_sym_concatenation_repeat1] = STATE(1047), - [sym__simple_heredoc_body] = ACTIONS(2188), - [sym__heredoc_body_beginning] = ACTIONS(2188), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), + [anon_sym_esac] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_SEMI_SEMI] = ACTIONS(2213), + [anon_sym_PIPE_AMP] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_BQUOTE] = ACTIONS(2213), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_LF] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2213), }, [572] = { - [sym__simple_heredoc_body] = ACTIONS(2188), - [sym__heredoc_body_beginning] = ACTIONS(2188), - [sym_file_descriptor] = ACTIONS(2188), - [anon_sym_esac] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2190), + [sym__terminated_statement] = STATE(1038), + [sym_for_statement] = STATE(40), + [sym_c_style_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_negated_command] = STATE(40), + [sym_test_command] = STATE(40), + [sym_declaration_command] = STATE(40), + [sym_unset_command] = STATE(40), + [sym_command] = STATE(40), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(41), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [573] = { - [anon_sym_esac] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2192), + [sym__terminated_statement] = STATE(1039), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1039), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(2217), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [574] = { - [sym_file_redirect] = STATE(574), - [sym_heredoc_redirect] = STATE(574), - [sym_herestring_redirect] = STATE(574), - [aux_sym_while_statement_repeat1] = STATE(574), - [sym__simple_heredoc_body] = ACTIONS(2196), - [sym__heredoc_body_beginning] = ACTIONS(2196), - [sym_file_descriptor] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_SEMI_SEMI] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_GT_GT] = ACTIONS(2203), - [anon_sym_AMP_GT] = ACTIONS(2203), - [anon_sym_AMP_GT_GT] = ACTIONS(2203), - [anon_sym_LT_AMP] = ACTIONS(2203), - [anon_sym_GT_AMP] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_LT_LT_DASH] = ACTIONS(2206), - [anon_sym_LT_LT_LT] = ACTIONS(2209), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_fi] = ACTIONS(2219), + [anon_sym_elif] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [sym_comment] = ACTIONS(53), }, [575] = { - [sym_file_redirect] = STATE(574), - [sym_heredoc_redirect] = STATE(574), - [sym_heredoc_body] = STATE(1048), - [sym_herestring_redirect] = STATE(574), - [aux_sym_while_statement_repeat1] = STATE(574), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(349), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2192), + [anon_sym_fi] = ACTIONS(2221), + [sym_comment] = ACTIONS(53), }, [576] = { - [sym_concatenation] = STATE(202), - [sym_string] = STATE(200), - [sym_simple_expansion] = STATE(200), - [sym_string_expansion] = STATE(200), - [sym_expansion] = STATE(200), - [sym_command_substitution] = STATE(200), - [sym_process_substitution] = STATE(200), - [aux_sym_command_repeat2] = STATE(576), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_SEMI_SEMI] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_EQ_TILDE] = ACTIONS(2212), - [anon_sym_EQ_EQ] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2178), - [anon_sym_LT_LT_LT] = ACTIONS(2178), - [sym__special_characters] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2221), - [sym_raw_string] = ACTIONS(2224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2233), - [anon_sym_LT_LPAREN] = ACTIONS(2236), - [anon_sym_GT_LPAREN] = ACTIONS(2236), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_LF] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2178), + [sym__terminated_statement] = STATE(1042), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_elif_clause] = STATE(574), + [sym_else_clause] = STATE(1041), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1042), + [aux_sym_if_statement_repeat1] = STATE(1043), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(2223), + [anon_sym_elif] = ACTIONS(1091), + [anon_sym_else] = ACTIONS(1093), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), }, [577] = { - [sym_file_redirect] = STATE(1049), - [sym_heredoc_redirect] = STATE(1049), - [sym_heredoc_body] = STATE(1048), - [sym_herestring_redirect] = STATE(1049), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(200), - [sym_simple_expansion] = STATE(200), - [sym_string_expansion] = STATE(200), - [sym_expansion] = STATE(200), - [sym_command_substitution] = STATE(200), - [sym_process_substitution] = STATE(200), - [aux_sym_while_statement_repeat1] = STATE(1049), - [aux_sym_command_repeat2] = STATE(576), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(349), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [sym__special_characters] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2192), + [sym_elif_clause] = STATE(574), + [sym_else_clause] = STATE(1041), + [aux_sym_if_statement_repeat1] = STATE(1044), + [anon_sym_fi] = ACTIONS(2221), + [anon_sym_elif] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2227), + [sym_comment] = ACTIONS(53), }, [578] = { - [sym_string] = STATE(723), - [sym_simple_expansion] = STATE(723), - [sym_string_expansion] = STATE(723), - [sym_expansion] = STATE(723), - [sym_command_substitution] = STATE(723), - [sym_process_substitution] = STATE(723), - [anon_sym_RBRACK] = ACTIONS(2239), - [sym__special_characters] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(1399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1399), + [sym__concat] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, [579] = { - [sym__concat] = ACTIONS(2243), - [anon_sym_EQ] = ACTIONS(2245), - [anon_sym_PLUS_EQ] = ACTIONS(2245), + [sym_case_item] = STATE(1050), + [sym_last_case_item] = STATE(1048), + [sym_concatenation] = STATE(1049), + [sym_string] = STATE(1047), + [sym_simple_expansion] = STATE(1047), + [sym_string_expansion] = STATE(1047), + [sym_expansion] = STATE(1047), + [sym_command_substitution] = STATE(1047), + [sym_process_substitution] = STATE(1047), + [aux_sym_case_statement_repeat1] = STATE(1050), + [anon_sym_esac] = ACTIONS(2229), + [sym__special_characters] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2235), }, [580] = { - [aux_sym_concatenation_repeat1] = STATE(1052), - [sym__concat] = ACTIONS(541), - [anon_sym_RBRACK] = ACTIONS(731), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI_SEMI] = ACTIONS(2237), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_LF] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2237), }, [581] = { - [sym_string] = STATE(723), - [sym_simple_expansion] = STATE(723), - [sym_string_expansion] = STATE(723), - [sym_expansion] = STATE(723), - [sym_command_substitution] = STATE(723), - [sym_process_substitution] = STATE(723), - [anon_sym_RBRACK] = ACTIONS(2247), - [sym__special_characters] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(1399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1399), + [aux_sym_concatenation_repeat1] = STATE(581), + [sym__concat] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, [582] = { - [sym__concat] = ACTIONS(2249), - [anon_sym_EQ] = ACTIONS(2251), - [anon_sym_PLUS_EQ] = ACTIONS(2251), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1657), + [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [sym__special_characters] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [anon_sym_LT_LPAREN] = ACTIONS(1657), + [anon_sym_GT_LPAREN] = ACTIONS(1657), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), }, [583] = { - [anon_sym_RBRACK] = ACTIONS(2247), - [sym_comment] = ACTIONS(53), + [anon_sym_DQUOTE] = ACTIONS(2244), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, [584] = { - [sym_file_descriptor] = ACTIONS(2253), - [sym_variable_name] = ACTIONS(2253), - [anon_sym_esac] = ACTIONS(2255), - [anon_sym_PIPE] = ACTIONS(2255), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_SEMI_SEMI] = ACTIONS(2255), - [anon_sym_PIPE_AMP] = ACTIONS(2255), - [anon_sym_AMP_AMP] = ACTIONS(2255), - [anon_sym_PIPE_PIPE] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_GT] = ACTIONS(2255), - [anon_sym_GT_GT] = ACTIONS(2255), - [anon_sym_AMP_GT] = ACTIONS(2255), - [anon_sym_AMP_GT_GT] = ACTIONS(2255), - [anon_sym_LT_AMP] = ACTIONS(2255), - [anon_sym_GT_AMP] = ACTIONS(2255), - [sym__special_characters] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2255), - [sym_raw_string] = ACTIONS(2255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2255), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2255), - [anon_sym_BQUOTE] = ACTIONS(2255), - [anon_sym_LT_LPAREN] = ACTIONS(2255), - [anon_sym_GT_LPAREN] = ACTIONS(2255), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2255), + [sym_case_item] = STATE(1055), + [sym_last_case_item] = STATE(1054), + [sym_concatenation] = STATE(1049), + [sym_string] = STATE(1047), + [sym_simple_expansion] = STATE(1047), + [sym_string_expansion] = STATE(1047), + [sym_expansion] = STATE(1047), + [sym_command_substitution] = STATE(1047), + [sym_process_substitution] = STATE(1047), + [aux_sym_case_statement_repeat1] = STATE(1055), + [anon_sym_esac] = ACTIONS(2246), + [sym__special_characters] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2235), }, [585] = { - [aux_sym_concatenation_repeat1] = STATE(1056), - [sym__concat] = ACTIONS(2257), - [anon_sym_RPAREN] = ACTIONS(2259), - [sym__special_characters] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_DOLLAR] = ACTIONS(2261), - [sym_raw_string] = ACTIONS(2259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2259), - [anon_sym_BQUOTE] = ACTIONS(2259), - [anon_sym_LT_LPAREN] = ACTIONS(2259), - [anon_sym_GT_LPAREN] = ACTIONS(2259), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2259), + [anon_sym_SEMI_SEMI] = ACTIONS(2248), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_LF] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2248), }, [586] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(1059), - [anon_sym_DQUOTE] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2265), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), + [sym_concatenation] = STATE(1060), + [sym_string] = STATE(1059), + [sym_simple_expansion] = STATE(1059), + [sym_string_expansion] = STATE(1059), + [sym_expansion] = STATE(1059), + [sym_command_substitution] = STATE(1059), + [sym_process_substitution] = STATE(1059), + [anon_sym_RBRACE] = ACTIONS(2252), + [sym__special_characters] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(2256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2256), }, [587] = { - [sym_string] = STATE(1061), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(2267), - [sym_raw_string] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), + [sym__concat] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_SEMI_SEMI] = ACTIONS(1750), + [sym__special_characters] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), + [anon_sym_BQUOTE] = ACTIONS(1750), + [anon_sym_LT_LPAREN] = ACTIONS(1750), + [anon_sym_GT_LPAREN] = ACTIONS(1750), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_QMARK] = ACTIONS(2267), - [anon_sym_0] = ACTIONS(2273), - [anon_sym__] = ACTIONS(2273), + [sym_word] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LF] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1750), }, [588] = { - [aux_sym_concatenation_repeat1] = STATE(1056), - [sym__concat] = ACTIONS(2257), - [anon_sym_RPAREN] = ACTIONS(2275), - [sym__special_characters] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2277), - [sym_raw_string] = ACTIONS(2275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2275), - [anon_sym_BQUOTE] = ACTIONS(2275), - [anon_sym_LT_LPAREN] = ACTIONS(2275), - [anon_sym_GT_LPAREN] = ACTIONS(2275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2275), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2258), }, [589] = { - [sym_subscript] = STATE(1067), - [sym_variable_name] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(2283), - [anon_sym_DASH] = ACTIONS(2281), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_AT] = ACTIONS(2281), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_0] = ACTIONS(2287), - [anon_sym__] = ACTIONS(2287), + [sym_word] = ACTIONS(759), }, [590] = { - [sym_for_statement] = STATE(1068), - [sym_c_style_for_statement] = STATE(1068), - [sym_while_statement] = STATE(1068), - [sym_if_statement] = STATE(1068), - [sym_case_statement] = STATE(1068), - [sym_function_definition] = STATE(1068), - [sym_subshell] = STATE(1068), - [sym_pipeline] = STATE(1068), - [sym_list] = STATE(1068), - [sym_negated_command] = STATE(1068), - [sym_test_command] = STATE(1068), - [sym_declaration_command] = STATE(1068), - [sym_unset_command] = STATE(1068), - [sym_command] = STATE(1068), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1069), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2262), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), }, [591] = { - [sym_for_statement] = STATE(1070), - [sym_c_style_for_statement] = STATE(1070), - [sym_while_statement] = STATE(1070), - [sym_if_statement] = STATE(1070), - [sym_case_statement] = STATE(1070), - [sym_function_definition] = STATE(1070), - [sym_subshell] = STATE(1070), - [sym_pipeline] = STATE(1070), - [sym_list] = STATE(1070), - [sym_negated_command] = STATE(1070), - [sym_test_command] = STATE(1070), - [sym_declaration_command] = STATE(1070), - [sym_unset_command] = STATE(1070), - [sym_command] = STATE(1070), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(1071), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), + [sym_concatenation] = STATE(1066), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1066), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_EQ] = ACTIONS(2266), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2270), + [anon_sym_COLON] = ACTIONS(2266), + [anon_sym_COLON_QMARK] = ACTIONS(2266), + [anon_sym_COLON_DASH] = ACTIONS(2266), + [anon_sym_PERCENT] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [592] = { - [sym_for_statement] = STATE(1072), - [sym_c_style_for_statement] = STATE(1072), - [sym_while_statement] = STATE(1072), - [sym_if_statement] = STATE(1072), - [sym_case_statement] = STATE(1072), - [sym_function_definition] = STATE(1072), - [sym_subshell] = STATE(1072), - [sym_pipeline] = STATE(1072), - [sym_list] = STATE(1072), - [sym_negated_command] = STATE(1072), - [sym_test_command] = STATE(1072), - [sym_declaration_command] = STATE(1072), - [sym_unset_command] = STATE(1072), - [sym_command] = STATE(1072), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1073), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_concatenation] = STATE(1069), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1069), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_EQ] = ACTIONS(2274), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2278), + [anon_sym_COLON] = ACTIONS(2274), + [anon_sym_COLON_QMARK] = ACTIONS(2274), + [anon_sym_COLON_DASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [593] = { - [sym_concatenation] = STATE(1075), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(1075), - [anon_sym_RPAREN] = ACTIONS(2289), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), + [sym_concatenation] = STATE(1071), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1071), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_EQ] = ACTIONS(2280), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2280), + [anon_sym_COLON_QMARK] = ACTIONS(2280), + [anon_sym_COLON_DASH] = ACTIONS(2280), + [anon_sym_PERCENT] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [594] = { - [sym_string] = STATE(1076), - [sym_simple_expansion] = STATE(1076), - [sym_string_expansion] = STATE(1076), - [sym_expansion] = STATE(1076), - [sym_command_substitution] = STATE(1076), - [sym_process_substitution] = STATE(1076), - [sym__special_characters] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(2291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2291), + [sym__concat] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), + [sym__special_characters] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), }, [595] = { - [aux_sym_concatenation_repeat1] = STATE(1077), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(1175), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [sym_regex_without_right_brace] = ACTIONS(2286), }, [596] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), + [sym_word] = ACTIONS(759), }, [597] = { - [anon_sym_DQUOTE] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [sym__concat] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [sym_word] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), }, [598] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2295), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2290), }, [599] = { - [sym_file_descriptor] = ACTIONS(767), - [sym__concat] = ACTIONS(767), - [sym_variable_name] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(769), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), + [sym_word] = ACTIONS(759), }, [600] = { - [sym_file_descriptor] = ACTIONS(771), - [sym__concat] = ACTIONS(771), - [sym_variable_name] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [sym__special_characters] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(773), + [sym__concat] = ACTIONS(1830), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LF] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), + [sym_word] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1832), }, [601] = { - [sym_file_descriptor] = ACTIONS(775), - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(775), - [anon_sym_esac] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [anon_sym_PIPE_AMP] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(777), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(777), - [anon_sym_LT_AMP] = ACTIONS(777), - [anon_sym_GT_AMP] = ACTIONS(777), - [sym__special_characters] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(777), - [anon_sym_GT_LPAREN] = ACTIONS(777), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [602] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2297), - [sym_comment] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2296), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_LF] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2296), }, [603] = { - [sym_concatenation] = STATE(1083), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1083), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(2301), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2301), - [anon_sym_COLON_QMARK] = ACTIONS(2301), - [anon_sym_COLON_DASH] = ACTIONS(2301), - [anon_sym_PERCENT] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2294), + [anon_sym_SEMI_SEMI] = ACTIONS(2296), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_LF] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2296), }, [604] = { - [sym_subscript] = STATE(1087), - [sym_variable_name] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2311), - [anon_sym_STAR] = ACTIONS(2309), - [anon_sym_AT] = ACTIONS(2309), - [anon_sym_QMARK] = ACTIONS(2309), - [anon_sym_0] = ACTIONS(2313), - [anon_sym__] = ACTIONS(2313), + [sym_word] = ACTIONS(819), }, [605] = { - [sym_concatenation] = STATE(1090), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1090), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_EQ] = ACTIONS(2317), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2321), - [anon_sym_COLON] = ACTIONS(2317), - [anon_sym_COLON_QMARK] = ACTIONS(2317), - [anon_sym_COLON_DASH] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2300), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2294), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_LF] = ACTIONS(2302), + [anon_sym_AMP] = ACTIONS(2300), }, [606] = { - [sym_concatenation] = STATE(1093), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1093), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(2325), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2325), - [anon_sym_COLON_QMARK] = ACTIONS(2325), - [anon_sym_COLON_DASH] = ACTIONS(2325), - [anon_sym_PERCENT] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2300), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2294), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_LF] = ACTIONS(2302), + [anon_sym_AMP] = ACTIONS(2300), }, [607] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), + [anon_sym_BQUOTE] = ACTIONS(1866), + [anon_sym_LT_LPAREN] = ACTIONS(1866), + [anon_sym_GT_LPAREN] = ACTIONS(1866), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), }, [608] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym_word] = ACTIONS(819), }, [609] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(2331), - [sym_comment] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2306), + [anon_sym_SEMI_SEMI] = ACTIONS(2308), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_LF] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2308), }, [610] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(2331), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2306), + [anon_sym_SEMI_SEMI] = ACTIONS(2308), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_LF] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2308), }, [611] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2333), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_compound_statement] = STATE(1080), + [anon_sym_LBRACE] = ACTIONS(435), [sym_comment] = ACTIONS(53), }, [612] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2333), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym_file_descriptor] = ACTIONS(2312), + [anon_sym_esac] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2314), + [anon_sym_SEMI_SEMI] = ACTIONS(2314), + [anon_sym_PIPE_AMP] = ACTIONS(2314), + [anon_sym_AMP_AMP] = ACTIONS(2314), + [anon_sym_PIPE_PIPE] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_AMP_GT] = ACTIONS(2314), + [anon_sym_AMP_GT_GT] = ACTIONS(2314), + [anon_sym_LT_AMP] = ACTIONS(2314), + [anon_sym_GT_AMP] = ACTIONS(2314), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_LF] = ACTIONS(2312), + [anon_sym_AMP] = ACTIONS(2314), }, [613] = { - [sym__expression] = STATE(1107), - [sym_binary_expression] = STATE(1107), - [sym_unary_expression] = STATE(1107), - [sym_parenthesized_expression] = STATE(1107), - [sym_concatenation] = STATE(1107), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_string_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [sym__special_characters] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(2347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2355), - [anon_sym_GT_LPAREN] = ACTIONS(2355), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2357), - [sym_test_operator] = ACTIONS(2359), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(2316), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2316), + [anon_sym_LF] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2316), }, [614] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2361), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(2316), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_LF] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2361), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2316), + [anon_sym_LF] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2316), }, [615] = { - [anon_sym_RPAREN] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1391), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), + [sym__terminated_statement] = STATE(1083), + [sym_for_statement] = STATE(613), + [sym_c_style_for_statement] = STATE(613), + [sym_while_statement] = STATE(613), + [sym_if_statement] = STATE(613), + [sym_case_statement] = STATE(613), + [sym_function_definition] = STATE(613), + [sym_subshell] = STATE(613), + [sym_pipeline] = STATE(613), + [sym_list] = STATE(613), + [sym_negated_command] = STATE(613), + [sym_test_command] = STATE(613), + [sym_declaration_command] = STATE(613), + [sym_unset_command] = STATE(613), + [sym_command] = STATE(613), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(614), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1083), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1391), + [sym_word] = ACTIONS(55), }, [616] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2367), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2322), + [anon_sym_GT] = ACTIONS(2322), + [anon_sym_GT_GT] = ACTIONS(2324), + [anon_sym_AMP_GT] = ACTIONS(2322), + [anon_sym_AMP_GT_GT] = ACTIONS(2324), + [anon_sym_LT_AMP] = ACTIONS(2324), + [anon_sym_GT_AMP] = ACTIONS(2324), + [sym_comment] = ACTIONS(53), }, [617] = { - [sym_string] = STATE(1110), - [sym_simple_expansion] = STATE(1110), - [sym_string_expansion] = STATE(1110), - [sym_expansion] = STATE(1110), - [sym_command_substitution] = STATE(1110), - [sym_process_substitution] = STATE(1110), - [sym__special_characters] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(2369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1217), - [anon_sym_LT_LPAREN] = ACTIONS(1219), - [anon_sym_GT_LPAREN] = ACTIONS(1219), + [sym_concatenation] = STATE(1087), + [sym_string] = STATE(1086), + [sym_simple_expansion] = STATE(1086), + [sym_string_expansion] = STATE(1086), + [sym_expansion] = STATE(1086), + [sym_command_substitution] = STATE(1086), + [sym_process_substitution] = STATE(1086), + [sym__special_characters] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(2328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(1503), + [anon_sym_LT_LPAREN] = ACTIONS(1505), + [anon_sym_GT_LPAREN] = ACTIONS(1505), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2369), + [sym_word] = ACTIONS(2328), }, [618] = { - [aux_sym_concatenation_repeat1] = STATE(1111), - [sym__concat] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_esac] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_SEMI_SEMI] = ACTIONS(2330), + [anon_sym_PIPE_AMP] = ACTIONS(2330), + [anon_sym_AMP_AMP] = ACTIONS(2330), + [anon_sym_PIPE_PIPE] = ACTIONS(2330), + [anon_sym_BQUOTE] = ACTIONS(2330), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_LF] = ACTIONS(2332), + [anon_sym_AMP] = ACTIONS(2330), }, [619] = { - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_EQ_TILDE] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), + [aux_sym_concatenation_repeat1] = STATE(1088), + [sym_file_descriptor] = ACTIONS(995), + [sym__concat] = ACTIONS(997), + [sym_variable_name] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_SEMI_SEMI] = ACTIONS(999), + [anon_sym_PIPE_AMP] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(999), + [anon_sym_LT_AMP] = ACTIONS(999), + [anon_sym_GT_AMP] = ACTIONS(999), + [sym__special_characters] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [sym_raw_string] = ACTIONS(999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(999), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(999), + [anon_sym_BQUOTE] = ACTIONS(999), + [anon_sym_LT_LPAREN] = ACTIONS(999), + [anon_sym_GT_LPAREN] = ACTIONS(999), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), + [sym_word] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LF] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(999), }, [620] = { - [anon_sym_DQUOTE] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [aux_sym_concatenation_repeat1] = STATE(1088), + [sym_file_descriptor] = ACTIONS(973), + [sym__concat] = ACTIONS(997), + [sym_variable_name] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [sym_word] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), }, [621] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2373), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), + [sym_file_redirect] = STATE(1089), + [sym_heredoc_redirect] = STATE(1089), + [sym_heredoc_body] = STATE(569), + [sym_herestring_redirect] = STATE(1089), + [aux_sym_while_statement_repeat1] = STATE(1089), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(469), [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1085), }, [622] = { - [sym__concat] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(2334), + [sym_comment] = ACTIONS(53), }, [623] = { - [sym__concat] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), + [sym_file_redirect] = STATE(618), + [sym_file_descriptor] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_SEMI_SEMI] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1169), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_GT] = ACTIONS(2338), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_AMP_GT] = ACTIONS(2338), + [anon_sym_AMP_GT_GT] = ACTIONS(2338), + [anon_sym_LT_AMP] = ACTIONS(2338), + [anon_sym_GT_AMP] = ACTIONS(2338), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LF] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1169), }, [624] = { - [sym__concat] = ACTIONS(775), - [anon_sym_esac] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [anon_sym_PIPE_AMP] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), + [sym_file_redirect] = STATE(1096), + [sym_heredoc_redirect] = STATE(1096), + [sym_herestring_redirect] = STATE(1096), + [aux_sym_while_statement_repeat1] = STATE(1096), + [sym_file_descriptor] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_SEMI_SEMI] = ACTIONS(1291), + [anon_sym_PIPE_AMP] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_AMP_GT] = ACTIONS(2342), + [anon_sym_AMP_GT_GT] = ACTIONS(2342), + [anon_sym_LT_AMP] = ACTIONS(2342), + [anon_sym_GT_AMP] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_LT_LT_DASH] = ACTIONS(1295), + [anon_sym_LT_LT_LT] = ACTIONS(2344), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_LF] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1291), }, [625] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2375), + [sym_concatenation] = STATE(724), + [sym_string] = STATE(1098), + [sym_array] = STATE(724), + [sym_simple_expansion] = STATE(1098), + [sym_string_expansion] = STATE(1098), + [sym_expansion] = STATE(1098), + [sym_command_substitution] = STATE(1098), + [sym_process_substitution] = STATE(1098), + [sym__empty_value] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [sym__special_characters] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_DOLLAR] = ACTIONS(167), + [sym_raw_string] = ACTIONS(2348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1399), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1403), + [anon_sym_LT_LPAREN] = ACTIONS(1405), + [anon_sym_GT_LPAREN] = ACTIONS(1405), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2348), }, [626] = { - [sym_concatenation] = STATE(1117), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1117), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_EQ] = ACTIONS(2379), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2383), - [anon_sym_COLON] = ACTIONS(2379), - [anon_sym_COLON_QMARK] = ACTIONS(2379), - [anon_sym_COLON_DASH] = ACTIONS(2379), - [anon_sym_PERCENT] = ACTIONS(2379), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [aux_sym_concatenation_repeat1] = STATE(1099), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(685), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), }, [627] = { - [sym_subscript] = STATE(1121), - [sym_variable_name] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2389), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_AT] = ACTIONS(2387), - [anon_sym_QMARK] = ACTIONS(2387), - [anon_sym_0] = ACTIONS(2391), - [anon_sym__] = ACTIONS(2391), + [sym_variable_assignment] = STATE(627), + [sym_subscript] = STATE(252), + [sym_concatenation] = STATE(627), + [sym_string] = STATE(251), + [sym_simple_expansion] = STATE(251), + [sym_string_expansion] = STATE(251), + [sym_expansion] = STATE(251), + [sym_command_substitution] = STATE(251), + [sym_process_substitution] = STATE(251), + [aux_sym_declaration_command_repeat1] = STATE(627), + [sym_variable_name] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__special_characters] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_DOLLAR] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(2356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1489), + [anon_sym_GT_LPAREN] = ACTIONS(1489), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1492), + [sym_word] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LF] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1466), }, [628] = { - [sym_concatenation] = STATE(1124), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1124), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_EQ] = ACTIONS(2395), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2399), - [anon_sym_COLON] = ACTIONS(2395), - [anon_sym_COLON_QMARK] = ACTIONS(2395), - [anon_sym_COLON_DASH] = ACTIONS(2395), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_DASH] = ACTIONS(2395), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(685), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), }, [629] = { - [sym_concatenation] = STATE(1127), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1127), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_EQ] = ACTIONS(2403), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2405), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_COLON] = ACTIONS(2403), - [anon_sym_COLON_QMARK] = ACTIONS(2403), - [anon_sym_COLON_DASH] = ACTIONS(2403), - [anon_sym_PERCENT] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(629), + [sym_string] = STATE(255), + [sym_simple_expansion] = STATE(255), + [sym_string_expansion] = STATE(255), + [sym_expansion] = STATE(255), + [sym_command_substitution] = STATE(255), + [sym_process_substitution] = STATE(255), + [aux_sym_unset_command_repeat1] = STATE(629), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(2362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1575), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1578), + [anon_sym_BQUOTE] = ACTIONS(1581), + [anon_sym_LT_LPAREN] = ACTIONS(1584), + [anon_sym_GT_LPAREN] = ACTIONS(1584), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1587), + [sym_word] = ACTIONS(2362), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1561), }, [630] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(630), + [sym__simple_heredoc_body] = ACTIONS(1648), + [sym__heredoc_body_beginning] = ACTIONS(1648), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_EQ_TILDE] = ACTIONS(1650), + [anon_sym_EQ_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, [631] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_compound_statement] = STATE(1101), + [anon_sym_LBRACE] = ACTIONS(435), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), }, [632] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(2409), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(2365), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_SEMI_SEMI] = ACTIONS(2365), + [anon_sym_PIPE_AMP] = ACTIONS(2365), + [anon_sym_AMP_AMP] = ACTIONS(2365), + [anon_sym_PIPE_PIPE] = ACTIONS(2365), + [anon_sym_BQUOTE] = ACTIONS(2365), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2365), + [anon_sym_LF] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2365), }, [633] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(2409), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1880), }, [634] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1880), }, [635] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_concatenation] = STATE(922), + [sym_string] = STATE(1103), + [sym_simple_expansion] = STATE(1103), + [sym_string_expansion] = STATE(1103), + [sym_expansion] = STATE(1103), + [sym_command_substitution] = STATE(1103), + [sym_process_substitution] = STATE(1103), + [sym__special_characters] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym_word] = ACTIONS(2371), }, [636] = { - [sym__expression] = STATE(1130), - [sym_binary_expression] = STATE(1130), - [sym_unary_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_concatenation] = STATE(1130), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [anon_sym_SEMI_SEMI] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [sym__special_characters] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_LT_LPAREN] = ACTIONS(427), - [anon_sym_GT_LPAREN] = ACTIONS(427), + [aux_sym_concatenation_repeat1] = STATE(257), + [sym__simple_heredoc_body] = ACTIONS(1912), + [sym__heredoc_body_beginning] = ACTIONS(1912), + [sym_file_descriptor] = ACTIONS(1912), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_SEMI_SEMI] = ACTIONS(1914), + [anon_sym_PIPE_AMP] = ACTIONS(1914), + [anon_sym_AMP_AMP] = ACTIONS(1914), + [anon_sym_PIPE_PIPE] = ACTIONS(1914), + [anon_sym_EQ_TILDE] = ACTIONS(1914), + [anon_sym_EQ_EQ] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_GT_GT] = ACTIONS(1914), + [anon_sym_AMP_GT] = ACTIONS(1914), + [anon_sym_AMP_GT_GT] = ACTIONS(1914), + [anon_sym_LT_AMP] = ACTIONS(1914), + [anon_sym_GT_AMP] = ACTIONS(1914), + [anon_sym_LT_LT] = ACTIONS(1914), + [anon_sym_LT_LT_DASH] = ACTIONS(1914), + [anon_sym_LT_LT_LT] = ACTIONS(1914), + [sym__special_characters] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [sym_raw_string] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_LT_LPAREN] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1914), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(419), - [sym_test_operator] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_LF] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2361), + [sym_word] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_LF] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1914), }, [637] = { - [sym__expression] = STATE(1131), - [sym_binary_expression] = STATE(1131), - [sym_unary_expression] = STATE(1131), - [sym_parenthesized_expression] = STATE(1131), - [sym_concatenation] = STATE(1131), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(411), - [sym__special_characters] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(1211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1217), - [anon_sym_LT_LPAREN] = ACTIONS(1219), - [anon_sym_GT_LPAREN] = ACTIONS(1219), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(419), - [sym_test_operator] = ACTIONS(1221), + [aux_sym_concatenation_repeat1] = STATE(257), + [sym__simple_heredoc_body] = ACTIONS(1916), + [sym__heredoc_body_beginning] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(1916), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_SEMI_SEMI] = ACTIONS(1918), + [anon_sym_PIPE_AMP] = ACTIONS(1918), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_EQ_TILDE] = ACTIONS(1918), + [anon_sym_EQ_EQ] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_AMP_GT] = ACTIONS(1918), + [anon_sym_AMP_GT_GT] = ACTIONS(1918), + [anon_sym_LT_AMP] = ACTIONS(1918), + [anon_sym_GT_AMP] = ACTIONS(1918), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_LT_LT_DASH] = ACTIONS(1918), + [anon_sym_LT_LT_LT] = ACTIONS(1918), + [sym__special_characters] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [sym_raw_string] = ACTIONS(1918), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), + [anon_sym_BQUOTE] = ACTIONS(1918), + [anon_sym_LT_LPAREN] = ACTIONS(1918), + [anon_sym_GT_LPAREN] = ACTIONS(1918), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1918), }, [638] = { - [sym__expression] = STATE(1131), - [sym_binary_expression] = STATE(1131), - [sym_unary_expression] = STATE(1131), - [sym_parenthesized_expression] = STATE(1131), - [sym_concatenation] = STATE(1131), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [sym__special_characters] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_LT_LPAREN] = ACTIONS(427), - [anon_sym_GT_LPAREN] = ACTIONS(427), + [aux_sym_concatenation_repeat1] = STATE(1104), + [sym__simple_heredoc_body] = ACTIONS(649), + [sym__heredoc_body_beginning] = ACTIONS(649), + [sym_file_descriptor] = ACTIONS(649), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_AMP_GT] = ACTIONS(653), + [anon_sym_AMP_GT_GT] = ACTIONS(653), + [anon_sym_LT_AMP] = ACTIONS(653), + [anon_sym_GT_AMP] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_LT] = ACTIONS(653), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(419), - [sym_test_operator] = ACTIONS(411), - [sym_regex] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), }, [639] = { - [aux_sym_concatenation_repeat1] = STATE(1133), - [sym__concat] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(2261), - [sym__special_characters] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2261), - [sym_raw_string] = ACTIONS(2261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2261), - [anon_sym_BQUOTE] = ACTIONS(2261), - [anon_sym_LT_LPAREN] = ACTIONS(2261), - [anon_sym_GT_LPAREN] = ACTIONS(2261), + [aux_sym_concatenation_repeat1] = STATE(1104), + [sym__simple_heredoc_body] = ACTIONS(667), + [sym__heredoc_body_beginning] = ACTIONS(667), + [sym_file_descriptor] = ACTIONS(667), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2261), - [anon_sym_SEMI] = ACTIONS(2261), - [anon_sym_LF] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), }, [640] = { - [aux_sym_concatenation_repeat1] = STATE(1133), - [sym__concat] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(2277), - [sym__special_characters] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2277), - [sym_raw_string] = ACTIONS(2277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2277), - [anon_sym_BQUOTE] = ACTIONS(2277), - [anon_sym_LT_LPAREN] = ACTIONS(2277), - [anon_sym_GT_LPAREN] = ACTIONS(2277), + [aux_sym_concatenation_repeat1] = STATE(1104), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1926), + [anon_sym_PIPE_AMP] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_PIPE_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1926), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1926), + [anon_sym_LT_AMP] = ACTIONS(1926), + [anon_sym_GT_AMP] = ACTIONS(1926), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1926), + [anon_sym_LT_LT_LT] = ACTIONS(1926), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_LF] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [641] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(640), - [sym_simple_expansion] = STATE(640), - [sym_string_expansion] = STATE(640), - [sym_expansion] = STATE(640), - [sym_command_substitution] = STATE(640), - [sym_process_substitution] = STATE(640), - [aux_sym_for_statement_repeat1] = STATE(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(2415), - [sym__special_characters] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(73), - [sym_raw_string] = ACTIONS(2421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2423), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2425), - [anon_sym_BQUOTE] = ACTIONS(2427), - [anon_sym_LT_LPAREN] = ACTIONS(2429), - [anon_sym_GT_LPAREN] = ACTIONS(2429), + [aux_sym_concatenation_repeat1] = STATE(1104), + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2421), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_LF] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), }, [642] = { - [sym__terminated_statement] = STATE(1137), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1137), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_file_redirect] = STATE(642), + [sym_heredoc_redirect] = STATE(642), + [sym_herestring_redirect] = STATE(642), + [aux_sym_while_statement_repeat1] = STATE(642), + [sym__simple_heredoc_body] = ACTIONS(1936), + [sym__heredoc_body_beginning] = ACTIONS(1936), + [sym_file_descriptor] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_RPAREN] = ACTIONS(1941), + [anon_sym_SEMI_SEMI] = ACTIONS(1941), + [anon_sym_PIPE_AMP] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_AMP_GT] = ACTIONS(2376), + [anon_sym_AMP_GT_GT] = ACTIONS(2376), + [anon_sym_LT_AMP] = ACTIONS(2376), + [anon_sym_GT_AMP] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(1946), + [anon_sym_LT_LT_DASH] = ACTIONS(1946), + [anon_sym_LT_LT_LT] = ACTIONS(2379), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1941), }, [643] = { - [anon_sym_esac] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_SEMI_SEMI] = ACTIONS(2435), - [anon_sym_PIPE_AMP] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [sym_file_redirect] = STATE(642), + [sym_heredoc_redirect] = STATE(642), + [sym_heredoc_body] = STATE(924), + [sym_herestring_redirect] = STATE(642), + [aux_sym_while_statement_repeat1] = STATE(642), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1932), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(469), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LF] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), }, [644] = { - [sym__simple_heredoc_body] = ACTIONS(2439), - [sym__heredoc_body_beginning] = ACTIONS(2439), - [sym_file_descriptor] = ACTIONS(2439), - [anon_sym_esac] = ACTIONS(2441), - [anon_sym_PIPE] = ACTIONS(2441), - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_SEMI_SEMI] = ACTIONS(2441), - [anon_sym_PIPE_AMP] = ACTIONS(2441), - [anon_sym_AMP_AMP] = ACTIONS(2441), - [anon_sym_PIPE_PIPE] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_GT] = ACTIONS(2441), - [anon_sym_GT_GT] = ACTIONS(2441), - [anon_sym_AMP_GT] = ACTIONS(2441), - [anon_sym_AMP_GT_GT] = ACTIONS(2441), - [anon_sym_LT_AMP] = ACTIONS(2441), - [anon_sym_GT_AMP] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), - [anon_sym_LT_LT_DASH] = ACTIONS(2441), - [anon_sym_LT_LT_LT] = ACTIONS(2441), + [sym_concatenation] = STATE(644), + [sym_string] = STATE(268), + [sym_simple_expansion] = STATE(268), + [sym_string_expansion] = STATE(268), + [sym_expansion] = STATE(268), + [sym_command_substitution] = STATE(268), + [sym_process_substitution] = STATE(268), + [aux_sym_command_repeat2] = STATE(644), + [sym__simple_heredoc_body] = ACTIONS(1916), + [sym__heredoc_body_beginning] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_SEMI_SEMI] = ACTIONS(1918), + [anon_sym_PIPE_AMP] = ACTIONS(1918), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_EQ_TILDE] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_AMP_GT] = ACTIONS(1918), + [anon_sym_AMP_GT_GT] = ACTIONS(1918), + [anon_sym_LT_AMP] = ACTIONS(1918), + [anon_sym_GT_AMP] = ACTIONS(1918), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_LT_LT_DASH] = ACTIONS(1918), + [anon_sym_LT_LT_LT] = ACTIONS(1918), + [sym__special_characters] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(2388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LT_LPAREN] = ACTIONS(1976), + [anon_sym_GT_LPAREN] = ACTIONS(1976), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2441), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2441), + [sym_word] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1918), }, [645] = { - [sym__terminated_statement] = STATE(1139), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1139), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2391), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(819), }, [646] = { - [anon_sym_esac] = ACTIONS(2445), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_RPAREN] = ACTIONS(2445), - [anon_sym_SEMI_SEMI] = ACTIONS(2445), - [anon_sym_PIPE_AMP] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [sym_file_redirect] = STATE(1106), + [sym_heredoc_redirect] = STATE(1106), + [sym_heredoc_body] = STATE(924), + [sym_herestring_redirect] = STATE(1106), + [sym_concatenation] = STATE(644), + [sym_string] = STATE(268), + [sym_simple_expansion] = STATE(268), + [sym_string_expansion] = STATE(268), + [sym_expansion] = STATE(268), + [sym_command_substitution] = STATE(268), + [sym_process_substitution] = STATE(268), + [aux_sym_while_statement_repeat1] = STATE(1106), + [aux_sym_command_repeat2] = STATE(644), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1932), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_EQ_TILDE] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(469), + [sym__special_characters] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2445), + [sym_word] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), }, [647] = { - [sym_file_redirect] = STATE(574), - [sym_heredoc_redirect] = STATE(574), - [sym_heredoc_body] = STATE(1140), - [sym_herestring_redirect] = STATE(574), - [aux_sym_while_statement_repeat1] = STATE(574), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_SEMI_SEMI] = ACTIONS(2445), - [anon_sym_PIPE_AMP] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_PIPE_PIPE] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(349), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2445), + [sym_file_descriptor] = ACTIONS(973), + [sym_variable_name] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(973), + [anon_sym_LT_AMP] = ACTIONS(973), + [anon_sym_GT_AMP] = ACTIONS(973), + [sym__special_characters] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(973), + [anon_sym_LT_LPAREN] = ACTIONS(973), + [anon_sym_GT_LPAREN] = ACTIONS(973), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(973), }, [648] = { - [anon_sym_esac] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2449), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_SEMI_SEMI] = ACTIONS(2449), - [anon_sym_PIPE_AMP] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LF] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2449), + [sym_concatenation] = STATE(1108), + [sym_string] = STATE(505), + [sym_simple_expansion] = STATE(505), + [sym_string_expansion] = STATE(505), + [sym_expansion] = STATE(505), + [sym_command_substitution] = STATE(505), + [sym_process_substitution] = STATE(505), + [aux_sym_for_statement_repeat1] = STATE(1108), + [anon_sym_RPAREN] = ACTIONS(2393), + [sym__special_characters] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LT_LPAREN] = ACTIONS(993), + [anon_sym_GT_LPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(985), }, [649] = { - [sym__terminated_statement] = STATE(1141), - [sym_for_statement] = STATE(39), - [sym_c_style_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [aux_sym_concatenation_repeat1] = STATE(380), + [sym_file_descriptor] = ACTIONS(995), + [sym__concat] = ACTIONS(651), + [sym_variable_name] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(995), + [anon_sym_LT_AMP] = ACTIONS(995), + [anon_sym_GT_AMP] = ACTIONS(995), + [sym__special_characters] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(999), + [sym_raw_string] = ACTIONS(995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), + [anon_sym_BQUOTE] = ACTIONS(995), + [anon_sym_LT_LPAREN] = ACTIONS(995), + [anon_sym_GT_LPAREN] = ACTIONS(995), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(995), }, [650] = { - [sym__terminated_statement] = STATE(1142), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1142), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2453), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [aux_sym_concatenation_repeat1] = STATE(380), + [sym_file_descriptor] = ACTIONS(973), + [sym__concat] = ACTIONS(651), + [sym_variable_name] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(973), + [anon_sym_LT_AMP] = ACTIONS(973), + [anon_sym_GT_AMP] = ACTIONS(973), + [sym__special_characters] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(973), + [anon_sym_LT_LPAREN] = ACTIONS(973), + [anon_sym_GT_LPAREN] = ACTIONS(973), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(973), }, [651] = { - [anon_sym_fi] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE_PIPE] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1225), }, [652] = { - [sym__terminated_statement] = STATE(1145), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_elif_clause] = STATE(1146), - [sym_else_clause] = STATE(1144), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1145), - [aux_sym_if_statement_repeat1] = STATE(1146), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2457), - [anon_sym_elif] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [aux_sym_concatenation_repeat1] = STATE(1109), + [sym__concat] = ACTIONS(533), + [anon_sym_RPAREN] = ACTIONS(683), + [anon_sym_AMP_AMP] = ACTIONS(683), + [anon_sym_PIPE_PIPE] = ACTIONS(683), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_BANG_EQ] = ACTIONS(683), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_test_operator] = ACTIONS(683), }, [653] = { - [sym_elif_clause] = STATE(1147), - [sym_else_clause] = STATE(1144), - [aux_sym_if_statement_repeat1] = STATE(1147), - [anon_sym_fi] = ACTIONS(2455), - [anon_sym_elif] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2461), + [anon_sym_AMP_AMP] = ACTIONS(2395), + [anon_sym_PIPE_PIPE] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_EQ_TILDE] = ACTIONS(2395), + [anon_sym_EQ_EQ] = ACTIONS(2395), + [anon_sym_EQ] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), + [anon_sym_BANG_EQ] = ACTIONS(2395), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2395), }, [654] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [655] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(1152), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1154), - [anon_sym_esac] = ACTIONS(2463), - [sym__special_characters] = ACTIONS(2465), + [sym__expression] = STATE(722), + [sym_binary_expression] = STATE(722), + [sym_unary_expression] = STATE(722), + [sym_parenthesized_expression] = STATE(722), + [sym_concatenation] = STATE(722), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), + [sym_raw_string] = ACTIONS(487), [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_LT_LPAREN] = ACTIONS(153), [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2469), + [sym_word] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + }, + [655] = { + [sym__expression] = STATE(722), + [sym_binary_expression] = STATE(722), + [sym_unary_expression] = STATE(722), + [sym_parenthesized_expression] = STATE(722), + [sym_concatenation] = STATE(722), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(483), + [sym__special_characters] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(489), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1385), + [anon_sym_LT_LPAREN] = ACTIONS(1387), + [anon_sym_GT_LPAREN] = ACTIONS(1387), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(489), + [sym_test_operator] = ACTIONS(483), + [sym_regex] = ACTIONS(1389), }, [656] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2471), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_LF] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2471), + [sym__concat] = ACTIONS(1648), + [anon_sym_AMP_AMP] = ACTIONS(1648), + [anon_sym_PIPE_PIPE] = ACTIONS(1648), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_EQ_TILDE] = ACTIONS(1648), + [anon_sym_EQ_EQ] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_BANG_EQ] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1648), }, [657] = { [aux_sym_concatenation_repeat1] = STATE(657), - [sym__concat] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [sym__concat] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(1648), + [anon_sym_PIPE_PIPE] = ACTIONS(1648), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_EQ_TILDE] = ACTIONS(1648), + [anon_sym_EQ_EQ] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_BANG_EQ] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1648), }, [658] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), + [sym__concat] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_RBRACK] = ACTIONS(1655), + [anon_sym_EQ_TILDE] = ACTIONS(1655), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1655), }, [659] = { - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, [660] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(1158), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1159), - [anon_sym_esac] = ACTIONS(2480), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_concatenation] = STATE(1114), + [sym_string] = STATE(1113), + [sym_simple_expansion] = STATE(1113), + [sym_string_expansion] = STATE(1113), + [sym_expansion] = STATE(1113), + [sym_command_substitution] = STATE(1113), + [sym_process_substitution] = STATE(1113), + [anon_sym_RBRACE] = ACTIONS(2406), + [sym__special_characters] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(2410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2469), + [sym_word] = ACTIONS(2410), }, [661] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2482), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_LF] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2482), + [sym__concat] = ACTIONS(1748), + [anon_sym_AMP_AMP] = ACTIONS(1748), + [anon_sym_PIPE_PIPE] = ACTIONS(1748), + [anon_sym_RBRACK] = ACTIONS(1748), + [anon_sym_EQ_TILDE] = ACTIONS(1748), + [anon_sym_EQ_EQ] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_GT] = ACTIONS(1748), + [anon_sym_BANG_EQ] = ACTIONS(1748), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1748), }, [662] = { - [sym_concatenation] = STATE(1164), - [sym_string] = STATE(1163), - [sym_simple_expansion] = STATE(1163), - [sym_string_expansion] = STATE(1163), - [sym_expansion] = STATE(1163), - [sym_command_substitution] = STATE(1163), - [sym_process_substitution] = STATE(1163), - [anon_sym_RBRACE] = ACTIONS(2486), - [sym__special_characters] = ACTIONS(2488), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(2490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2490), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2412), }, [663] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1848), - [anon_sym_SEMI_SEMI] = ACTIONS(1848), - [sym__special_characters] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), - [anon_sym_BQUOTE] = ACTIONS(1848), - [anon_sym_LT_LPAREN] = ACTIONS(1848), - [anon_sym_GT_LPAREN] = ACTIONS(1848), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), + [sym_word] = ACTIONS(759), }, [664] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2416), + [sym_comment] = ACTIONS(53), }, [665] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(1120), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1120), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_EQ] = ACTIONS(2420), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2424), + [anon_sym_COLON] = ACTIONS(2420), + [anon_sym_COLON_QMARK] = ACTIONS(2420), + [anon_sym_COLON_DASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [666] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2496), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1123), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1123), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2428), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2430), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_COLON] = ACTIONS(2428), + [anon_sym_COLON_QMARK] = ACTIONS(2428), + [anon_sym_COLON_DASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [667] = { - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1170), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_EQ] = ACTIONS(2500), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2502), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2500), - [anon_sym_COLON_QMARK] = ACTIONS(2500), - [anon_sym_COLON_DASH] = ACTIONS(2500), - [anon_sym_PERCENT] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(1125), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1125), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(2434), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_COLON] = ACTIONS(2434), + [anon_sym_COLON_QMARK] = ACTIONS(2434), + [anon_sym_COLON_DASH] = ACTIONS(2434), + [anon_sym_PERCENT] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [668] = { - [sym_concatenation] = STATE(1173), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1173), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_EQ] = ACTIONS(2508), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2512), - [anon_sym_COLON] = ACTIONS(2508), - [anon_sym_COLON_QMARK] = ACTIONS(2508), - [anon_sym_COLON_DASH] = ACTIONS(2508), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_DASH] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_EQ_TILDE] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_GT] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1816), }, [669] = { - [sym_concatenation] = STATE(1175), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1175), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(2514), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2516), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2514), - [anon_sym_COLON_QMARK] = ACTIONS(2514), - [anon_sym_COLON_DASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(2440), }, [670] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_in] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), + [sym_word] = ACTIONS(759), }, [671] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2520), + [sym__concat] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_EQ_TILDE] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_GT] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1824), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1824), }, [672] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(2444), }, [673] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [sym__special_characters] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1924), + [sym_word] = ACTIONS(759), }, [674] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2524), + [sym__concat] = ACTIONS(1830), + [anon_sym_AMP_AMP] = ACTIONS(1830), + [anon_sym_PIPE_PIPE] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(1830), + [anon_sym_EQ_TILDE] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_GT] = ACTIONS(1830), + [anon_sym_BANG_EQ] = ACTIONS(1830), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1830), }, [675] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2446), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [676] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_in] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [anon_sym_LT_LPAREN] = ACTIONS(2068), - [anon_sym_GT_LPAREN] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_SEMI_SEMI] = ACTIONS(2450), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_LF] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2450), }, [677] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), - [anon_sym_BQUOTE] = ACTIONS(2134), - [anon_sym_LT_LPAREN] = ACTIONS(2134), - [anon_sym_GT_LPAREN] = ACTIONS(2134), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2448), + [anon_sym_SEMI_SEMI] = ACTIONS(2450), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_LF] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2450), }, [678] = { - [sym_compound_statement] = STATE(1179), - [anon_sym_LBRACE] = ACTIONS(483), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(2446), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [679] = { - [sym_file_descriptor] = ACTIONS(2526), - [anon_sym_esac] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_SEMI_SEMI] = ACTIONS(2528), - [anon_sym_PIPE_AMP] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2528), - [anon_sym_AMP_GT] = ACTIONS(2528), - [anon_sym_AMP_GT_GT] = ACTIONS(2528), - [anon_sym_LT_AMP] = ACTIONS(2528), - [anon_sym_GT_AMP] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2454), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2448), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_LF] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_LF] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2454), }, [680] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(2530), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2454), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2448), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_LF] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2530), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_LF] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2454), }, [681] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(2530), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_LF] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2530), + [sym__concat] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_EQ_TILDE] = ACTIONS(1864), + [anon_sym_EQ_EQ] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1864), + [anon_sym_BANG_EQ] = ACTIONS(1864), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1864), }, [682] = { - [sym__terminated_statement] = STATE(1182), - [sym_for_statement] = STATE(680), - [sym_c_style_for_statement] = STATE(680), - [sym_while_statement] = STATE(680), - [sym_if_statement] = STATE(680), - [sym_case_statement] = STATE(680), - [sym_function_definition] = STATE(680), - [sym_subshell] = STATE(680), - [sym_pipeline] = STATE(680), - [sym_list] = STATE(680), - [sym_negated_command] = STATE(680), - [sym_test_command] = STATE(680), - [sym_declaration_command] = STATE(680), - [sym_unset_command] = STATE(680), - [sym_command] = STATE(680), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(681), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1182), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(819), }, [683] = { - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_AMP_GT] = ACTIONS(2536), - [anon_sym_AMP_GT_GT] = ACTIONS(2538), - [anon_sym_LT_AMP] = ACTIONS(2538), - [anon_sym_GT_AMP] = ACTIONS(2538), - [sym_comment] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2460), + [anon_sym_SEMI_SEMI] = ACTIONS(2462), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LF] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2462), }, [684] = { - [sym_concatenation] = STATE(1186), - [sym_string] = STATE(1185), - [sym_simple_expansion] = STATE(1185), - [sym_string_expansion] = STATE(1185), - [sym_expansion] = STATE(1185), - [sym_command_substitution] = STATE(1185), - [sym_process_substitution] = STATE(1185), - [sym__special_characters] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(2542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1633), - [anon_sym_LT_LPAREN] = ACTIONS(1635), - [anon_sym_GT_LPAREN] = ACTIONS(1635), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2542), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2460), + [anon_sym_SEMI_SEMI] = ACTIONS(2462), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LF] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2462), }, [685] = { - [anon_sym_esac] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_SEMI_SEMI] = ACTIONS(2544), - [anon_sym_PIPE_AMP] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LF] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_RBRACK] = ACTIONS(2466), + [anon_sym_EQ_TILDE] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2466), }, [686] = { - [aux_sym_concatenation_repeat1] = STATE(1187), - [sym_file_descriptor] = ACTIONS(1173), - [sym__concat] = ACTIONS(1175), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_SEMI_SEMI] = ACTIONS(1177), - [anon_sym_PIPE_AMP] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_AMP_GT] = ACTIONS(1177), - [anon_sym_AMP_GT_GT] = ACTIONS(1177), - [anon_sym_LT_AMP] = ACTIONS(1177), - [anon_sym_GT_AMP] = ACTIONS(1177), - [sym__special_characters] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1177), - [anon_sym_LT_LPAREN] = ACTIONS(1177), - [anon_sym_GT_LPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_AMP_GT] = ACTIONS(2470), + [anon_sym_AMP_GT_GT] = ACTIONS(2472), + [anon_sym_LT_AMP] = ACTIONS(2472), + [anon_sym_GT_AMP] = ACTIONS(2472), + [sym_comment] = ACTIONS(53), }, [687] = { - [aux_sym_concatenation_repeat1] = STATE(1187), - [sym_file_descriptor] = ACTIONS(1151), - [sym__concat] = ACTIONS(1175), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_SEMI_SEMI] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_AMP_GT] = ACTIONS(1153), - [anon_sym_AMP_GT_GT] = ACTIONS(1153), - [anon_sym_LT_AMP] = ACTIONS(1153), - [anon_sym_GT_AMP] = ACTIONS(1153), - [sym__special_characters] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_LT_LPAREN] = ACTIONS(1153), - [anon_sym_GT_LPAREN] = ACTIONS(1153), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), + [sym_concatenation] = STATE(1143), + [sym_string] = STATE(1138), + [sym_simple_expansion] = STATE(1138), + [sym_string_expansion] = STATE(1138), + [sym_expansion] = STATE(1138), + [sym_command_substitution] = STATE(1138), + [sym_process_substitution] = STATE(1138), + [sym__special_characters] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(2480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2480), }, [688] = { - [sym_file_redirect] = STATE(1188), - [sym_heredoc_redirect] = STATE(1188), - [sym_heredoc_body] = STATE(646), - [sym_herestring_redirect] = STATE(1188), - [aux_sym_while_statement_repeat1] = STATE(1188), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_SEMI_SEMI] = ACTIONS(1263), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(515), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(517), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1263), + [sym_heredoc_start] = ACTIONS(2490), + [sym_comment] = ACTIONS(53), }, [689] = { - [anon_sym_RPAREN] = ACTIONS(2548), + [sym_concatenation] = STATE(1147), + [sym_string] = STATE(1146), + [sym_simple_expansion] = STATE(1146), + [sym_string_expansion] = STATE(1146), + [sym_expansion] = STATE(1146), + [sym_command_substitution] = STATE(1146), + [sym_process_substitution] = STATE(1146), + [sym__special_characters] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(2494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2494), }, [690] = { - [sym_file_redirect] = STATE(685), - [sym_file_descriptor] = ACTIONS(2550), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2552), - [anon_sym_AMP_GT] = ACTIONS(2552), - [anon_sym_AMP_GT_GT] = ACTIONS(2552), - [anon_sym_LT_AMP] = ACTIONS(2552), - [anon_sym_GT_AMP] = ACTIONS(2552), + [sym_file_redirect] = STATE(1148), + [sym_heredoc_redirect] = STATE(1148), + [sym_herestring_redirect] = STATE(1148), + [aux_sym_while_statement_repeat1] = STATE(1148), + [sym_file_descriptor] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_SEMI_SEMI] = ACTIONS(2496), + [anon_sym_PIPE_AMP] = ACTIONS(2496), + [anon_sym_AMP_AMP] = ACTIONS(2496), + [anon_sym_PIPE_PIPE] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(1293), + [anon_sym_GT] = ACTIONS(1293), + [anon_sym_GT_GT] = ACTIONS(1293), + [anon_sym_AMP_GT] = ACTIONS(1293), + [anon_sym_AMP_GT_GT] = ACTIONS(1293), + [anon_sym_LT_AMP] = ACTIONS(1293), + [anon_sym_GT_AMP] = ACTIONS(1293), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_LT_LT_DASH] = ACTIONS(1295), + [anon_sym_LT_LT_LT] = ACTIONS(1297), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_LF] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), }, [691] = { - [sym_file_redirect] = STATE(1195), - [sym_heredoc_redirect] = STATE(1195), - [sym_herestring_redirect] = STATE(1195), - [aux_sym_while_statement_repeat1] = STATE(1195), - [sym_file_descriptor] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_SEMI_SEMI] = ACTIONS(1445), - [anon_sym_PIPE_AMP] = ACTIONS(1445), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(2556), - [anon_sym_GT] = ACTIONS(2556), - [anon_sym_GT_GT] = ACTIONS(2556), - [anon_sym_AMP_GT] = ACTIONS(2556), - [anon_sym_AMP_GT_GT] = ACTIONS(2556), - [anon_sym_LT_AMP] = ACTIONS(2556), - [anon_sym_GT_AMP] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_LT_LT_DASH] = ACTIONS(1449), - [anon_sym_LT_LT_LT] = ACTIONS(2558), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_LF] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_RBRACK] = ACTIONS(2466), + [anon_sym_EQ_TILDE] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2466), }, [692] = { - [sym_concatenation] = STATE(773), - [sym_string] = STATE(1197), - [sym_array] = STATE(773), - [sym_simple_expansion] = STATE(1197), - [sym_string_expansion] = STATE(1197), - [sym_expansion] = STATE(1197), - [sym_command_substitution] = STATE(1197), - [sym_process_substitution] = STATE(1197), - [sym__empty_value] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1535), - [sym__special_characters] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(167), - [sym_raw_string] = ACTIONS(2562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1541), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1543), - [anon_sym_BQUOTE] = ACTIONS(1545), - [anon_sym_LT_LPAREN] = ACTIONS(1547), - [anon_sym_GT_LPAREN] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_AMP_AMP] = ACTIONS(2395), + [anon_sym_PIPE_PIPE] = ACTIONS(2395), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2395), + [anon_sym_EQ_TILDE] = ACTIONS(2395), + [anon_sym_EQ_EQ] = ACTIONS(2395), + [anon_sym_EQ] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), + [anon_sym_BANG_EQ] = ACTIONS(2395), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2562), + [sym_test_operator] = ACTIONS(2395), }, [693] = { - [aux_sym_concatenation_repeat1] = STATE(1198), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [sym__concat] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_AMP_AMP] = ACTIONS(1648), + [anon_sym_PIPE_PIPE] = ACTIONS(1648), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1648), + [anon_sym_EQ_TILDE] = ACTIONS(1648), + [anon_sym_EQ_EQ] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_BANG_EQ] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1648), }, [694] = { - [sym_variable_assignment] = STATE(104), - [sym_subscript] = STATE(276), - [sym_concatenation] = STATE(104), - [sym_string] = STATE(275), - [sym_simple_expansion] = STATE(275), - [sym_string_expansion] = STATE(275), - [sym_expansion] = STATE(275), - [sym_command_substitution] = STATE(275), - [sym_process_substitution] = STATE(275), - [aux_sym_declaration_command_repeat1] = STATE(694), - [sym_variable_name] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_SEMI_SEMI] = ACTIONS(1596), - [anon_sym_PIPE_AMP] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_PIPE_PIPE] = ACTIONS(1596), - [sym__special_characters] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym_DOLLAR] = ACTIONS(1604), - [sym_raw_string] = ACTIONS(2570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1613), - [anon_sym_BQUOTE] = ACTIONS(1616), - [anon_sym_LT_LPAREN] = ACTIONS(1619), - [anon_sym_GT_LPAREN] = ACTIONS(1619), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1622), - [sym_word] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_LF] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1596), + [aux_sym_concatenation_repeat1] = STATE(694), + [sym__concat] = ACTIONS(2500), + [anon_sym_AMP_AMP] = ACTIONS(1648), + [anon_sym_PIPE_PIPE] = ACTIONS(1648), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1648), + [anon_sym_EQ_TILDE] = ACTIONS(1648), + [anon_sym_EQ_EQ] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_BANG_EQ] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1648), }, [695] = { - [aux_sym_concatenation_repeat1] = STATE(1199), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [sym__concat] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1655), + [anon_sym_EQ_TILDE] = ACTIONS(1655), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1655), }, [696] = { - [sym_concatenation] = STATE(696), - [sym_string] = STATE(279), - [sym_simple_expansion] = STATE(279), - [sym_string_expansion] = STATE(279), - [sym_expansion] = STATE(279), - [sym_command_substitution] = STATE(279), - [sym_process_substitution] = STATE(279), - [aux_sym_unset_command_repeat1] = STATE(696), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_SEMI_SEMI] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [sym__special_characters] = ACTIONS(2573), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1687), - [sym_raw_string] = ACTIONS(2576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), - [anon_sym_BQUOTE] = ACTIONS(1699), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(2503), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1705), - [sym_word] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_LF] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1679), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, [697] = { - [aux_sym_concatenation_repeat1] = STATE(697), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_EQ_TILDE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [sym_concatenation] = STATE(1153), + [sym_string] = STATE(1152), + [sym_simple_expansion] = STATE(1152), + [sym_string_expansion] = STATE(1152), + [sym_expansion] = STATE(1152), + [sym_command_substitution] = STATE(1152), + [sym_process_substitution] = STATE(1152), + [anon_sym_RBRACE] = ACTIONS(2505), + [sym__special_characters] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(2509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2509), }, [698] = { - [sym_compound_statement] = STATE(1200), - [anon_sym_LBRACE] = ACTIONS(483), + [sym__concat] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1748), + [anon_sym_AMP_AMP] = ACTIONS(1748), + [anon_sym_PIPE_PIPE] = ACTIONS(1748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1748), + [anon_sym_EQ_TILDE] = ACTIONS(1748), + [anon_sym_EQ_EQ] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_GT] = ACTIONS(1748), + [anon_sym_BANG_EQ] = ACTIONS(1748), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1748), }, [699] = { - [anon_sym_esac] = ACTIONS(2579), - [anon_sym_PIPE] = ACTIONS(2579), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_SEMI_SEMI] = ACTIONS(2579), - [anon_sym_PIPE_AMP] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_LF] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), + [sym_regex_without_right_brace] = ACTIONS(2511), }, [700] = { - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_SEMI_SEMI] = ACTIONS(2140), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LF] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2140), + [sym_word] = ACTIONS(759), }, [701] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_SEMI_SEMI] = ACTIONS(2140), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LF] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2515), + [sym_comment] = ACTIONS(53), }, [702] = { - [sym_concatenation] = STATE(1046), + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1159), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_EQ] = ACTIONS(2519), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2521), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2523), + [anon_sym_COLON] = ACTIONS(2519), + [anon_sym_COLON_QMARK] = ACTIONS(2519), + [anon_sym_COLON_DASH] = ACTIONS(2519), + [anon_sym_PERCENT] = ACTIONS(2519), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [703] = { + [sym_concatenation] = STATE(1162), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1162), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_EQ] = ACTIONS(2527), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2531), + [anon_sym_COLON] = ACTIONS(2527), + [anon_sym_COLON_QMARK] = ACTIONS(2527), + [anon_sym_COLON_DASH] = ACTIONS(2527), + [anon_sym_PERCENT] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [704] = { + [sym_concatenation] = STATE(1164), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1164), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2533), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2537), + [anon_sym_COLON] = ACTIONS(2533), + [anon_sym_COLON_QMARK] = ACTIONS(2533), + [anon_sym_COLON_DASH] = ACTIONS(2533), + [anon_sym_PERCENT] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [705] = { + [sym__concat] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1816), + [anon_sym_EQ_TILDE] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_GT] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1816), + }, + [706] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2539), + }, + [707] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [708] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1824), + [anon_sym_EQ_TILDE] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_GT] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1824), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1824), + }, + [709] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2543), + }, + [710] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [711] = { + [sym__concat] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1830), + [anon_sym_AMP_AMP] = ACTIONS(1830), + [anon_sym_PIPE_PIPE] = ACTIONS(1830), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1830), + [anon_sym_EQ_TILDE] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_GT] = ACTIONS(1830), + [anon_sym_BANG_EQ] = ACTIONS(1830), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1830), + }, + [712] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2545), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [713] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2549), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_LF] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + }, + [714] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_SEMI_SEMI] = ACTIONS(2549), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_LF] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + }, + [715] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(2545), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [716] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2553), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2547), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_LF] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2553), + }, + [717] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2553), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2547), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_LF] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2553), + }, + [718] = { + [sym__concat] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1864), + [anon_sym_EQ_TILDE] = ACTIONS(1864), + [anon_sym_EQ_EQ] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1864), + [anon_sym_BANG_EQ] = ACTIONS(1864), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1864), + }, + [719] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [720] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_SEMI_SEMI] = ACTIONS(2561), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_LF] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2561), + }, + [721] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_SEMI_SEMI] = ACTIONS(2561), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_LF] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2561), + }, + [722] = { + [anon_sym_RPAREN] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2466), + [anon_sym_EQ_TILDE] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2466), + }, + [723] = { + [anon_sym_RPAREN] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2466), + [anon_sym_EQ_TILDE] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2466), + }, + [724] = { + [sym_variable_name] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + }, + [725] = { + [sym_concatenation] = STATE(1174), + [sym_string] = STATE(505), + [sym_simple_expansion] = STATE(505), + [sym_string_expansion] = STATE(505), + [sym_expansion] = STATE(505), + [sym_command_substitution] = STATE(505), + [sym_process_substitution] = STATE(505), + [aux_sym_for_statement_repeat1] = STATE(1174), + [anon_sym_RPAREN] = ACTIONS(2565), + [sym__special_characters] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LT_LPAREN] = ACTIONS(993), + [anon_sym_GT_LPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(985), + }, + [726] = { + [aux_sym_concatenation_repeat1] = STATE(334), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_SEMI_SEMI] = ACTIONS(999), + [anon_sym_PIPE_AMP] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [sym__special_characters] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [sym_raw_string] = ACTIONS(999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(999), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(999), + [anon_sym_BQUOTE] = ACTIONS(999), + [anon_sym_LT_LPAREN] = ACTIONS(999), + [anon_sym_GT_LPAREN] = ACTIONS(999), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(999), + [sym_word] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LF] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(999), + }, + [727] = { + [aux_sym_concatenation_repeat1] = STATE(334), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + }, + [728] = { + [sym__concat] = ACTIONS(1648), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [729] = { + [aux_sym_concatenation_repeat1] = STATE(729), + [sym__concat] = ACTIONS(2567), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [730] = { + [sym__concat] = ACTIONS(1655), + [sym_variable_name] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [anon_sym_PIPE_AMP] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [sym__special_characters] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [anon_sym_LT_LPAREN] = ACTIONS(1657), + [anon_sym_GT_LPAREN] = ACTIONS(1657), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1657), + [sym_word] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + }, + [731] = { + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [732] = { + [sym_concatenation] = STATE(1179), + [sym_string] = STATE(1178), + [sym_simple_expansion] = STATE(1178), + [sym_string_expansion] = STATE(1178), + [sym_expansion] = STATE(1178), + [sym_command_substitution] = STATE(1178), + [sym_process_substitution] = STATE(1178), + [anon_sym_RBRACE] = ACTIONS(2572), + [sym__special_characters] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(2576), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2576), + }, + [733] = { + [sym__concat] = ACTIONS(1748), + [sym_variable_name] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_SEMI_SEMI] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [sym__special_characters] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), + [anon_sym_BQUOTE] = ACTIONS(1750), + [anon_sym_LT_LPAREN] = ACTIONS(1750), + [anon_sym_GT_LPAREN] = ACTIONS(1750), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1750), + [sym_word] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LF] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1750), + }, + [734] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2578), + }, + [735] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [736] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2582), + [sym_comment] = ACTIONS(53), + }, + [737] = { + [sym_concatenation] = STATE(1185), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1185), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_EQ] = ACTIONS(2586), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2588), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2590), + [anon_sym_COLON] = ACTIONS(2586), + [anon_sym_COLON_QMARK] = ACTIONS(2586), + [anon_sym_COLON_DASH] = ACTIONS(2586), + [anon_sym_PERCENT] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [738] = { + [sym_concatenation] = STATE(1188), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1188), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_EQ] = ACTIONS(2594), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2598), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_COLON_DASH] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [739] = { + [sym_concatenation] = STATE(1190), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1190), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_EQ] = ACTIONS(2600), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_COLON] = ACTIONS(2600), + [anon_sym_COLON_QMARK] = ACTIONS(2600), + [anon_sym_COLON_DASH] = ACTIONS(2600), + [anon_sym_PERCENT] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [740] = { + [sym__concat] = ACTIONS(1816), + [sym_variable_name] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [sym__special_characters] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1818), + [sym_word] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), + }, + [741] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2606), + }, + [742] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [743] = { + [sym__concat] = ACTIONS(1824), + [sym_variable_name] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1826), + [sym_word] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), + }, + [744] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2610), + }, + [745] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [746] = { + [sym__concat] = ACTIONS(1830), + [sym_variable_name] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1832), + [sym_word] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1832), + }, + [747] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2612), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [748] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2616), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_LF] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2616), + }, + [749] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2616), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_LF] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2616), + }, + [750] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(2612), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [751] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2620), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2614), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_LF] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2620), + }, + [752] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2620), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2614), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_LF] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2620), + }, + [753] = { + [sym__concat] = ACTIONS(1864), + [sym_variable_name] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [anon_sym_PIPE_AMP] = ACTIONS(1866), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), + [anon_sym_BQUOTE] = ACTIONS(1866), + [anon_sym_LT_LPAREN] = ACTIONS(1866), + [anon_sym_GT_LPAREN] = ACTIONS(1866), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1866), + [sym_word] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), + }, + [754] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2624), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [755] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2626), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_LF] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + }, + [756] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2626), + [anon_sym_SEMI_SEMI] = ACTIONS(2628), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_LF] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + }, + [757] = { + [sym__concat] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [758] = { + [aux_sym_concatenation_repeat1] = STATE(758), + [sym__concat] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [759] = { + [sym__concat] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [anon_sym_PIPE_AMP] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [sym__special_characters] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [anon_sym_LT_LPAREN] = ACTIONS(1657), + [anon_sym_GT_LPAREN] = ACTIONS(1657), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1657), + [sym_word] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + }, + [760] = { + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [761] = { + [sym_concatenation] = STATE(1203), [sym_string] = STATE(1202), [sym_simple_expansion] = STATE(1202), [sym_string_expansion] = STATE(1202), [sym_expansion] = STATE(1202), [sym_command_substitution] = STATE(1202), [sym_process_substitution] = STATE(1202), - [sym__special_characters] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2637), + [sym__special_characters] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(2641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2585), - }, - [703] = { - [aux_sym_concatenation_repeat1] = STATE(281), - [sym__simple_heredoc_body] = ACTIONS(2172), - [sym__heredoc_body_beginning] = ACTIONS(2172), - [sym_file_descriptor] = ACTIONS(2172), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_RPAREN] = ACTIONS(2174), - [anon_sym_SEMI_SEMI] = ACTIONS(2174), - [anon_sym_PIPE_AMP] = ACTIONS(2174), - [anon_sym_AMP_AMP] = ACTIONS(2174), - [anon_sym_PIPE_PIPE] = ACTIONS(2174), - [anon_sym_EQ_TILDE] = ACTIONS(2174), - [anon_sym_EQ_EQ] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_GT] = ACTIONS(2174), - [anon_sym_GT_GT] = ACTIONS(2174), - [anon_sym_AMP_GT] = ACTIONS(2174), - [anon_sym_AMP_GT_GT] = ACTIONS(2174), - [anon_sym_LT_AMP] = ACTIONS(2174), - [anon_sym_GT_AMP] = ACTIONS(2174), - [anon_sym_LT_LT] = ACTIONS(2174), - [anon_sym_LT_LT_DASH] = ACTIONS(2174), - [anon_sym_LT_LT_LT] = ACTIONS(2174), - [sym__special_characters] = ACTIONS(2174), - [anon_sym_DQUOTE] = ACTIONS(2174), - [anon_sym_DOLLAR] = ACTIONS(2174), - [sym_raw_string] = ACTIONS(2174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2174), - [anon_sym_BQUOTE] = ACTIONS(2174), - [anon_sym_LT_LPAREN] = ACTIONS(2174), - [anon_sym_GT_LPAREN] = ACTIONS(2174), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_LF] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2174), - }, - [704] = { - [aux_sym_concatenation_repeat1] = STATE(281), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2178), - [anon_sym_SEMI_SEMI] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_EQ_TILDE] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2178), - [anon_sym_LT_LT_LT] = ACTIONS(2178), - [sym__special_characters] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LT_LPAREN] = ACTIONS(2178), - [anon_sym_GT_LPAREN] = ACTIONS(2178), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_LF] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2178), - }, - [705] = { - [aux_sym_concatenation_repeat1] = STATE(1203), - [sym__simple_heredoc_body] = ACTIONS(697), - [sym__heredoc_body_beginning] = ACTIONS(697), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(701), - [anon_sym_LT_AMP] = ACTIONS(701), - [anon_sym_GT_AMP] = ACTIONS(701), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(701), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(701), - }, - [706] = { - [aux_sym_concatenation_repeat1] = STATE(1203), - [sym__simple_heredoc_body] = ACTIONS(715), - [sym__heredoc_body_beginning] = ACTIONS(715), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(717), - [anon_sym_LT_AMP] = ACTIONS(717), - [anon_sym_GT_AMP] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(717), - [anon_sym_LT_LT_LT] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [707] = { - [aux_sym_concatenation_repeat1] = STATE(1203), - [sym__simple_heredoc_body] = ACTIONS(2184), - [sym__heredoc_body_beginning] = ACTIONS(2184), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_SEMI_SEMI] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(2186), - [anon_sym_AMP_AMP] = ACTIONS(2186), - [anon_sym_PIPE_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2186), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2186), - [anon_sym_LT_AMP] = ACTIONS(2186), - [anon_sym_GT_AMP] = ACTIONS(2186), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2186), - [anon_sym_LT_LT_LT] = ACTIONS(2186), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2186), - }, - [708] = { - [aux_sym_concatenation_repeat1] = STATE(1203), - [sym__simple_heredoc_body] = ACTIONS(2188), - [sym__heredoc_body_beginning] = ACTIONS(2188), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2190), - }, - [709] = { - [sym_file_redirect] = STATE(709), - [sym_heredoc_redirect] = STATE(709), - [sym_herestring_redirect] = STATE(709), - [aux_sym_while_statement_repeat1] = STATE(709), - [sym__simple_heredoc_body] = ACTIONS(2196), - [sym__heredoc_body_beginning] = ACTIONS(2196), - [sym_file_descriptor] = ACTIONS(2587), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_SEMI_SEMI] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_GT] = ACTIONS(2590), - [anon_sym_GT_GT] = ACTIONS(2590), - [anon_sym_AMP_GT] = ACTIONS(2590), - [anon_sym_AMP_GT_GT] = ACTIONS(2590), - [anon_sym_LT_AMP] = ACTIONS(2590), - [anon_sym_GT_AMP] = ACTIONS(2590), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_LT_LT_DASH] = ACTIONS(2206), - [anon_sym_LT_LT_LT] = ACTIONS(2593), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2201), - }, - [710] = { - [sym_file_redirect] = STATE(709), - [sym_heredoc_redirect] = STATE(709), - [sym_heredoc_body] = STATE(1048), - [sym_herestring_redirect] = STATE(709), - [aux_sym_while_statement_repeat1] = STATE(709), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(515), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(517), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2192), - }, - [711] = { - [sym_concatenation] = STATE(202), - [sym_string] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_string_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [sym_command_substitution] = STATE(292), - [sym_process_substitution] = STATE(292), - [aux_sym_command_repeat2] = STATE(711), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2178), - [anon_sym_SEMI_SEMI] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_EQ_TILDE] = ACTIONS(2596), - [anon_sym_EQ_EQ] = ACTIONS(2596), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2178), - [anon_sym_LT_LT_LT] = ACTIONS(2178), - [sym__special_characters] = ACTIONS(2599), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2221), - [sym_raw_string] = ACTIONS(2602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2233), - [anon_sym_LT_LPAREN] = ACTIONS(2236), - [anon_sym_GT_LPAREN] = ACTIONS(2236), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_LF] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2178), - }, - [712] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(2605), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(997), - [sym_raw_string] = ACTIONS(995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), - [anon_sym_BQUOTE] = ACTIONS(995), - [anon_sym_LT_LPAREN] = ACTIONS(995), - [anon_sym_GT_LPAREN] = ACTIONS(995), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(997), - }, - [713] = { - [sym_file_redirect] = STATE(1205), - [sym_heredoc_redirect] = STATE(1205), - [sym_heredoc_body] = STATE(1048), - [sym_herestring_redirect] = STATE(1205), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_string_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [sym_command_substitution] = STATE(292), - [sym_process_substitution] = STATE(292), - [aux_sym_while_statement_repeat1] = STATE(1205), - [aux_sym_command_repeat2] = STATE(711), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(515), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(517), - [sym__special_characters] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2192), - }, - [714] = { - [sym_file_descriptor] = ACTIONS(1151), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_PIPE_AMP] = ACTIONS(1151), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1153), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), - [anon_sym_BQUOTE] = ACTIONS(1151), - [anon_sym_LT_LPAREN] = ACTIONS(1151), - [anon_sym_GT_LPAREN] = ACTIONS(1151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1151), - }, - [715] = { - [sym_concatenation] = STATE(1207), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(1207), - [anon_sym_RPAREN] = ACTIONS(2607), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), - }, - [716] = { - [aux_sym_concatenation_repeat1] = STATE(392), - [sym_file_descriptor] = ACTIONS(1173), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_AMP_GT] = ACTIONS(1177), - [anon_sym_AMP_GT_GT] = ACTIONS(1173), - [anon_sym_LT_AMP] = ACTIONS(1173), - [anon_sym_GT_AMP] = ACTIONS(1173), - [sym__special_characters] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), - [anon_sym_BQUOTE] = ACTIONS(1173), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1173), - }, - [717] = { - [aux_sym_concatenation_repeat1] = STATE(392), - [sym_file_descriptor] = ACTIONS(1151), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1153), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), - [anon_sym_BQUOTE] = ACTIONS(1151), - [anon_sym_LT_LPAREN] = ACTIONS(1151), - [anon_sym_GT_LPAREN] = ACTIONS(1151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1151), - }, - [718] = { - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1391), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1391), - }, - [719] = { - [aux_sym_concatenation_repeat1] = STATE(1208), - [sym__concat] = ACTIONS(581), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_EQ_TILDE] = ACTIONS(731), - [anon_sym_EQ_EQ] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG_EQ] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(731), - }, - [720] = { - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_RBRACK] = ACTIONS(2609), - [anon_sym_EQ_TILDE] = ACTIONS(2609), - [anon_sym_EQ_EQ] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_GT] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2609), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2609), - }, - [721] = { - [sym__expression] = STATE(771), - [sym_binary_expression] = STATE(771), - [sym_unary_expression] = STATE(771), - [sym_parenthesized_expression] = STATE(771), - [sym_concatenation] = STATE(771), - [sym_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_string_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(531), - [sym__special_characters] = ACTIONS(533), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(537), - [sym_test_operator] = ACTIONS(539), - }, - [722] = { - [sym__expression] = STATE(771), - [sym_binary_expression] = STATE(771), - [sym_unary_expression] = STATE(771), - [sym_parenthesized_expression] = STATE(771), - [sym_concatenation] = STATE(771), - [sym_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_string_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(531), - [sym__special_characters] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(537), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1523), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1525), - [anon_sym_BQUOTE] = ACTIONS(1527), - [anon_sym_LT_LPAREN] = ACTIONS(1529), - [anon_sym_GT_LPAREN] = ACTIONS(1529), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(537), - [sym_test_operator] = ACTIONS(531), - [sym_regex] = ACTIONS(1531), - }, - [723] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1754), - }, - [724] = { - [aux_sym_concatenation_repeat1] = STATE(724), - [sym__concat] = ACTIONS(2615), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1754), - }, - [725] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [anon_sym_RBRACK] = ACTIONS(1761), - [anon_sym_EQ_TILDE] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1761), - [anon_sym_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_BANG_EQ] = ACTIONS(1761), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1761), - }, - [726] = { - [anon_sym_DQUOTE] = ACTIONS(2618), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [727] = { - [sym_concatenation] = STATE(1213), - [sym_string] = STATE(1212), - [sym_simple_expansion] = STATE(1212), - [sym_string_expansion] = STATE(1212), - [sym_expansion] = STATE(1212), - [sym_command_substitution] = STATE(1212), - [sym_process_substitution] = STATE(1212), - [anon_sym_RBRACE] = ACTIONS(2620), - [sym__special_characters] = ACTIONS(2622), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(2624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2624), - }, - [728] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_RBRACK] = ACTIONS(1846), - [anon_sym_EQ_TILDE] = ACTIONS(1846), - [anon_sym_EQ_EQ] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [anon_sym_BANG_EQ] = ACTIONS(1846), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1846), - }, - [729] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2626), - }, - [730] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [731] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2630), - [sym_comment] = ACTIONS(53), - }, - [732] = { - [sym_concatenation] = STATE(1219), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1219), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_EQ] = ACTIONS(2634), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2636), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2638), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_COLON_DASH] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [733] = { - [sym_concatenation] = STATE(1222), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1222), - [anon_sym_RBRACE] = ACTIONS(2640), - [anon_sym_EQ] = ACTIONS(2642), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2644), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_COLON] = ACTIONS(2642), - [anon_sym_COLON_QMARK] = ACTIONS(2642), - [anon_sym_COLON_DASH] = ACTIONS(2642), - [anon_sym_PERCENT] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [734] = { - [sym_concatenation] = STATE(1224), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1224), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2648), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2652), - [anon_sym_COLON] = ACTIONS(2648), - [anon_sym_COLON_QMARK] = ACTIONS(2648), - [anon_sym_COLON_DASH] = ACTIONS(2648), - [anon_sym_PERCENT] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2648), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [735] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_RBRACK] = ACTIONS(1914), - [anon_sym_EQ_TILDE] = ACTIONS(1914), - [anon_sym_EQ_EQ] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_GT] = ACTIONS(1914), - [anon_sym_BANG_EQ] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1914), - }, - [736] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2654), - }, - [737] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [738] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_AMP_AMP] = ACTIONS(1922), - [anon_sym_PIPE_PIPE] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1922), - [anon_sym_EQ_TILDE] = ACTIONS(1922), - [anon_sym_EQ_EQ] = ACTIONS(1922), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG_EQ] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1922), - }, - [739] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2658), - }, - [740] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [741] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_RBRACK] = ACTIONS(2066), - [anon_sym_EQ_TILDE] = ACTIONS(2066), - [anon_sym_EQ_EQ] = ACTIONS(2066), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_BANG_EQ] = ACTIONS(2066), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2066), - }, - [742] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [anon_sym_RBRACK] = ACTIONS(2132), - [anon_sym_EQ_TILDE] = ACTIONS(2132), - [anon_sym_EQ_EQ] = ACTIONS(2132), - [anon_sym_EQ] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2132), - [anon_sym_GT] = ACTIONS(2132), - [anon_sym_BANG_EQ] = ACTIONS(2132), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2132), - }, - [743] = { - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_RBRACK] = ACTIONS(2660), - [anon_sym_EQ_TILDE] = ACTIONS(2660), - [anon_sym_EQ_EQ] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2660), - [anon_sym_GT] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2660), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2660), - }, - [744] = { - [anon_sym_LT] = ACTIONS(2664), - [anon_sym_GT] = ACTIONS(2664), - [anon_sym_GT_GT] = ACTIONS(2666), - [anon_sym_AMP_GT] = ACTIONS(2664), - [anon_sym_AMP_GT_GT] = ACTIONS(2666), - [anon_sym_LT_AMP] = ACTIONS(2666), - [anon_sym_GT_AMP] = ACTIONS(2666), - [sym_comment] = ACTIONS(53), - }, - [745] = { - [sym_concatenation] = STATE(1237), - [sym_string] = STATE(1232), - [sym_simple_expansion] = STATE(1232), - [sym_string_expansion] = STATE(1232), - [sym_expansion] = STATE(1232), - [sym_command_substitution] = STATE(1232), - [sym_process_substitution] = STATE(1232), - [sym__special_characters] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(2674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2674), - }, - [746] = { - [sym_heredoc_start] = ACTIONS(2684), - [sym_comment] = ACTIONS(53), - }, - [747] = { - [sym_concatenation] = STATE(1241), - [sym_string] = STATE(1240), - [sym_simple_expansion] = STATE(1240), - [sym_string_expansion] = STATE(1240), - [sym_expansion] = STATE(1240), - [sym_command_substitution] = STATE(1240), - [sym_process_substitution] = STATE(1240), - [sym__special_characters] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(2688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2688), - }, - [748] = { - [sym_file_redirect] = STATE(1242), - [sym_heredoc_redirect] = STATE(1242), - [sym_herestring_redirect] = STATE(1242), - [aux_sym_while_statement_repeat1] = STATE(1242), - [sym_file_descriptor] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_SEMI_SEMI] = ACTIONS(2690), - [anon_sym_PIPE_AMP] = ACTIONS(2690), - [anon_sym_AMP_AMP] = ACTIONS(2690), - [anon_sym_PIPE_PIPE] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_AMP_GT] = ACTIONS(1447), - [anon_sym_AMP_GT_GT] = ACTIONS(1447), - [anon_sym_LT_AMP] = ACTIONS(1447), - [anon_sym_GT_AMP] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_LT_LT_DASH] = ACTIONS(1449), - [anon_sym_LT_LT_LT] = ACTIONS(1451), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_LF] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2690), - }, - [749] = { - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_RBRACK] = ACTIONS(2660), - [anon_sym_EQ_TILDE] = ACTIONS(2660), - [anon_sym_EQ_EQ] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2660), - [anon_sym_GT] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2660), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2660), - }, - [750] = { - [anon_sym_RPAREN] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2609), - [anon_sym_EQ_TILDE] = ACTIONS(2609), - [anon_sym_EQ_EQ] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_GT] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2609), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2609), - }, - [751] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1754), - }, - [752] = { - [aux_sym_concatenation_repeat1] = STATE(752), - [sym__concat] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1754), - }, - [753] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1761), - [anon_sym_EQ_TILDE] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1761), - [anon_sym_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_BANG_EQ] = ACTIONS(1761), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1761), - }, - [754] = { - [anon_sym_DQUOTE] = ACTIONS(2697), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [755] = { - [sym_concatenation] = STATE(1247), - [sym_string] = STATE(1246), - [sym_simple_expansion] = STATE(1246), - [sym_string_expansion] = STATE(1246), - [sym_expansion] = STATE(1246), - [sym_command_substitution] = STATE(1246), - [sym_process_substitution] = STATE(1246), - [anon_sym_RBRACE] = ACTIONS(2699), - [sym__special_characters] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2703), - }, - [756] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1846), - [anon_sym_EQ_TILDE] = ACTIONS(1846), - [anon_sym_EQ_EQ] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [anon_sym_BANG_EQ] = ACTIONS(1846), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1846), - }, - [757] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2705), - }, - [758] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [759] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2709), - [sym_comment] = ACTIONS(53), - }, - [760] = { - [sym_concatenation] = STATE(1253), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1253), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_EQ] = ACTIONS(2713), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2717), - [anon_sym_COLON] = ACTIONS(2713), - [anon_sym_COLON_QMARK] = ACTIONS(2713), - [anon_sym_COLON_DASH] = ACTIONS(2713), - [anon_sym_PERCENT] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [761] = { - [sym_concatenation] = STATE(1256), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1256), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_EQ] = ACTIONS(2721), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2723), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_COLON] = ACTIONS(2721), - [anon_sym_COLON_QMARK] = ACTIONS(2721), - [anon_sym_COLON_DASH] = ACTIONS(2721), - [anon_sym_PERCENT] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(2641), }, [762] = { - [sym_concatenation] = STATE(1258), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1258), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_EQ] = ACTIONS(2727), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2727), - [anon_sym_COLON_QMARK] = ACTIONS(2727), - [anon_sym_COLON_DASH] = ACTIONS(2727), - [anon_sym_PERCENT] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__concat] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_SEMI_SEMI] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [sym__special_characters] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), + [anon_sym_BQUOTE] = ACTIONS(1750), + [anon_sym_LT_LPAREN] = ACTIONS(1750), + [anon_sym_GT_LPAREN] = ACTIONS(1750), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1750), + [sym_word] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LF] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1750), }, [763] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1914), - [anon_sym_EQ_TILDE] = ACTIONS(1914), - [anon_sym_EQ_EQ] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_GT] = ACTIONS(1914), - [anon_sym_BANG_EQ] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1914), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2643), }, [764] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2733), + [sym_word] = ACTIONS(759), }, [765] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2647), + [sym_comment] = ACTIONS(53), }, [766] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1922), - [anon_sym_AMP_AMP] = ACTIONS(1922), - [anon_sym_PIPE_PIPE] = ACTIONS(1922), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1922), - [anon_sym_EQ_TILDE] = ACTIONS(1922), - [anon_sym_EQ_EQ] = ACTIONS(1922), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG_EQ] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1922), + [sym_concatenation] = STATE(1209), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1209), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2651), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_COLON] = ACTIONS(2651), + [anon_sym_COLON_QMARK] = ACTIONS(2651), + [anon_sym_COLON_DASH] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [767] = { + [sym_concatenation] = STATE(1212), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1212), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2659), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2661), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2663), + [anon_sym_COLON] = ACTIONS(2659), + [anon_sym_COLON_QMARK] = ACTIONS(2659), + [anon_sym_COLON_DASH] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2737), + [sym_word] = ACTIONS(759), }, [768] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(1214), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1214), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2665), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_COLON] = ACTIONS(2665), + [anon_sym_COLON_QMARK] = ACTIONS(2665), + [anon_sym_COLON_DASH] = ACTIONS(2665), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [769] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2066), - [anon_sym_EQ_TILDE] = ACTIONS(2066), - [anon_sym_EQ_EQ] = ACTIONS(2066), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_BANG_EQ] = ACTIONS(2066), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2066), + [sym__concat] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [sym__special_characters] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1818), + [sym_word] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), }, [770] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2132), - [anon_sym_EQ_TILDE] = ACTIONS(2132), - [anon_sym_EQ_EQ] = ACTIONS(2132), - [anon_sym_EQ] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2132), - [anon_sym_GT] = ACTIONS(2132), - [anon_sym_BANG_EQ] = ACTIONS(2132), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2132), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2671), }, [771] = { - [anon_sym_RPAREN] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2660), - [anon_sym_EQ_TILDE] = ACTIONS(2660), - [anon_sym_EQ_EQ] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2660), - [anon_sym_GT] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2660), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2660), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [772] = { - [anon_sym_RPAREN] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2660), - [anon_sym_EQ_TILDE] = ACTIONS(2660), - [anon_sym_EQ_EQ] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2660), - [anon_sym_GT] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2660), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2660), + [sym__concat] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1826), + [sym_word] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), }, [773] = { - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_SEMI_SEMI] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [sym__special_characters] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_LT_LPAREN] = ACTIONS(1153), - [anon_sym_GT_LPAREN] = ACTIONS(1153), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), - [sym_word] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), + [sym_regex_without_right_brace] = ACTIONS(2675), }, [774] = { - [sym_concatenation] = STATE(1263), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(1263), - [anon_sym_RPAREN] = ACTIONS(2739), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [775] = { - [aux_sym_concatenation_repeat1] = STATE(352), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_SEMI_SEMI] = ACTIONS(1177), - [anon_sym_PIPE_AMP] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [sym__special_characters] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1177), - [anon_sym_LT_LPAREN] = ACTIONS(1177), - [anon_sym_GT_LPAREN] = ACTIONS(1177), + [sym__concat] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), - [sym_word] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1177), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1832), + [sym_word] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1832), }, [776] = { - [aux_sym_concatenation_repeat1] = STATE(352), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_SEMI_SEMI] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [sym__special_characters] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_LT_LPAREN] = ACTIONS(1153), - [anon_sym_GT_LPAREN] = ACTIONS(1153), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), - [sym_word] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [777] = { - [sym__concat] = ACTIONS(1754), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_SEMI_SEMI] = ACTIONS(2681), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), }, [778] = { - [aux_sym_concatenation_repeat1] = STATE(778), - [sym__concat] = ACTIONS(2741), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_SEMI_SEMI] = ACTIONS(2681), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), }, [779] = { - [sym__concat] = ACTIONS(1761), - [sym_variable_name] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), - [sym_word] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(2677), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [780] = { - [anon_sym_DQUOTE] = ACTIONS(2744), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2685), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2679), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), }, [781] = { - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(1267), - [sym_simple_expansion] = STATE(1267), - [sym_string_expansion] = STATE(1267), - [sym_expansion] = STATE(1267), - [sym_command_substitution] = STATE(1267), - [sym_process_substitution] = STATE(1267), - [anon_sym_RBRACE] = ACTIONS(2746), - [sym__special_characters] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(2750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2750), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2685), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2679), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), }, [782] = { - [sym__concat] = ACTIONS(1846), - [sym_variable_name] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_SEMI_SEMI] = ACTIONS(1848), - [anon_sym_PIPE_AMP] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [sym__special_characters] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), - [anon_sym_BQUOTE] = ACTIONS(1848), - [anon_sym_LT_LPAREN] = ACTIONS(1848), - [anon_sym_GT_LPAREN] = ACTIONS(1848), + [sym__concat] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [anon_sym_PIPE_AMP] = ACTIONS(1866), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), + [anon_sym_BQUOTE] = ACTIONS(1866), + [anon_sym_LT_LPAREN] = ACTIONS(1866), + [anon_sym_GT_LPAREN] = ACTIONS(1866), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), - [sym_word] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1866), + [sym_word] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), }, [783] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2752), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2689), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [784] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2691), + [anon_sym_SEMI_SEMI] = ACTIONS(2693), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), }, [785] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2756), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2691), + [anon_sym_SEMI_SEMI] = ACTIONS(2693), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), }, [786] = { - [sym_concatenation] = STATE(1274), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1274), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2760), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_COLON] = ACTIONS(2760), - [anon_sym_COLON_QMARK] = ACTIONS(2760), - [anon_sym_COLON_DASH] = ACTIONS(2760), - [anon_sym_PERCENT] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1648), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1648), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1648), + [anon_sym_LT_AMP] = ACTIONS(1648), + [anon_sym_GT_AMP] = ACTIONS(1648), + [sym__special_characters] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_LT_LPAREN] = ACTIONS(1648), + [anon_sym_GT_LPAREN] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1648), }, [787] = { - [sym_concatenation] = STATE(1277), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1277), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_EQ] = ACTIONS(2768), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_COLON_QMARK] = ACTIONS(2768), - [anon_sym_COLON_DASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_concatenation_repeat1] = STATE(787), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(2697), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1648), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1648), + [anon_sym_LT_AMP] = ACTIONS(1648), + [anon_sym_GT_AMP] = ACTIONS(1648), + [sym__special_characters] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_LT_LPAREN] = ACTIONS(1648), + [anon_sym_GT_LPAREN] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1648), }, [788] = { - [sym_concatenation] = STATE(1279), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1279), - [anon_sym_RBRACE] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2774), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2776), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2774), - [anon_sym_COLON_QMARK] = ACTIONS(2774), - [anon_sym_COLON_DASH] = ACTIONS(2774), - [anon_sym_PERCENT] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(1655), + [sym__concat] = ACTIONS(1655), + [sym_variable_name] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_AMP_GT] = ACTIONS(1657), + [anon_sym_AMP_GT_GT] = ACTIONS(1655), + [anon_sym_LT_AMP] = ACTIONS(1655), + [anon_sym_GT_AMP] = ACTIONS(1655), + [sym__special_characters] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1655), + [anon_sym_BQUOTE] = ACTIONS(1655), + [anon_sym_LT_LPAREN] = ACTIONS(1655), + [anon_sym_GT_LPAREN] = ACTIONS(1655), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1655), }, [789] = { - [sym__concat] = ACTIONS(1914), - [sym_variable_name] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(2700), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), - [sym_word] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, [790] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2780), + [sym_concatenation] = STATE(1227), + [sym_string] = STATE(1226), + [sym_simple_expansion] = STATE(1226), + [sym_string_expansion] = STATE(1226), + [sym_expansion] = STATE(1226), + [sym_command_substitution] = STATE(1226), + [sym_process_substitution] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(2702), + [sym__special_characters] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(2706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2706), }, [791] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(1748), + [sym__concat] = ACTIONS(1748), + [sym_variable_name] = ACTIONS(1748), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(1748), + [anon_sym_AMP_GT] = ACTIONS(1750), + [anon_sym_AMP_GT_GT] = ACTIONS(1748), + [anon_sym_LT_AMP] = ACTIONS(1748), + [anon_sym_GT_AMP] = ACTIONS(1748), + [sym__special_characters] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1748), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1748), + [anon_sym_BQUOTE] = ACTIONS(1748), + [anon_sym_LT_LPAREN] = ACTIONS(1748), + [anon_sym_GT_LPAREN] = ACTIONS(1748), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1748), }, [792] = { - [sym__concat] = ACTIONS(1922), - [sym_variable_name] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [sym__special_characters] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [anon_sym_GT_LPAREN] = ACTIONS(1924), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), - [sym_word] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1924), + [sym_regex_without_right_brace] = ACTIONS(2708), }, [793] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2784), + [sym_word] = ACTIONS(759), }, [794] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2712), + [sym_comment] = ACTIONS(53), }, [795] = { - [sym__concat] = ACTIONS(2066), - [sym_variable_name] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [anon_sym_LT_LPAREN] = ACTIONS(2068), - [anon_sym_GT_LPAREN] = ACTIONS(2068), + [sym_concatenation] = STATE(1233), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1233), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_EQ] = ACTIONS(2716), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2720), + [anon_sym_COLON] = ACTIONS(2716), + [anon_sym_COLON_QMARK] = ACTIONS(2716), + [anon_sym_COLON_DASH] = ACTIONS(2716), + [anon_sym_PERCENT] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), - [sym_word] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), + [sym_word] = ACTIONS(759), }, [796] = { - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), - [anon_sym_BQUOTE] = ACTIONS(2134), - [anon_sym_LT_LPAREN] = ACTIONS(2134), - [anon_sym_GT_LPAREN] = ACTIONS(2134), + [sym_concatenation] = STATE(1236), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1236), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2724), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2728), + [anon_sym_COLON] = ACTIONS(2724), + [anon_sym_COLON_QMARK] = ACTIONS(2724), + [anon_sym_COLON_DASH] = ACTIONS(2724), + [anon_sym_PERCENT] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), - [sym_word] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), + [sym_word] = ACTIONS(759), }, [797] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), + [sym_concatenation] = STATE(1238), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1238), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_EQ] = ACTIONS(2730), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2730), + [anon_sym_COLON_QMARK] = ACTIONS(2730), + [anon_sym_COLON_DASH] = ACTIONS(2730), + [anon_sym_PERCENT] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [sym_word] = ACTIONS(759), }, [798] = { - [aux_sym_concatenation_repeat1] = STATE(798), - [sym__concat] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [sym_file_descriptor] = ACTIONS(1816), + [sym__concat] = ACTIONS(1816), + [sym_variable_name] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_GT] = ACTIONS(1818), + [anon_sym_GT_GT] = ACTIONS(1816), + [anon_sym_AMP_GT] = ACTIONS(1818), + [anon_sym_AMP_GT_GT] = ACTIONS(1816), + [anon_sym_LT_AMP] = ACTIONS(1816), + [anon_sym_GT_AMP] = ACTIONS(1816), + [sym__special_characters] = ACTIONS(1816), + [anon_sym_DQUOTE] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), + [anon_sym_BQUOTE] = ACTIONS(1816), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1816), }, [799] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), - [sym_word] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), + [sym_regex_without_right_brace] = ACTIONS(2736), }, [800] = { - [anon_sym_DQUOTE] = ACTIONS(2789), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [sym_word] = ACTIONS(759), }, [801] = { - [sym_concatenation] = STATE(1287), - [sym_string] = STATE(1286), - [sym_simple_expansion] = STATE(1286), - [sym_string_expansion] = STATE(1286), - [sym_expansion] = STATE(1286), - [sym_command_substitution] = STATE(1286), - [sym_process_substitution] = STATE(1286), - [anon_sym_RBRACE] = ACTIONS(2791), - [sym__special_characters] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(2795), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [sym_variable_name] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_GT_GT] = ACTIONS(1824), + [anon_sym_AMP_GT] = ACTIONS(1826), + [anon_sym_AMP_GT_GT] = ACTIONS(1824), + [anon_sym_LT_AMP] = ACTIONS(1824), + [anon_sym_GT_AMP] = ACTIONS(1824), + [sym__special_characters] = ACTIONS(1824), + [anon_sym_DQUOTE] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [anon_sym_LT_LPAREN] = ACTIONS(1824), + [anon_sym_GT_LPAREN] = ACTIONS(1824), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2795), + [sym_word] = ACTIONS(1824), }, [802] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_SEMI_SEMI] = ACTIONS(1848), - [anon_sym_PIPE_AMP] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [sym__special_characters] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), - [anon_sym_BQUOTE] = ACTIONS(1848), - [anon_sym_LT_LPAREN] = ACTIONS(1848), - [anon_sym_GT_LPAREN] = ACTIONS(1848), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), - [sym_word] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), + [sym_regex_without_right_brace] = ACTIONS(2740), }, [803] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2797), + [sym_word] = ACTIONS(759), }, [804] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(1830), + [sym__concat] = ACTIONS(1830), + [sym_variable_name] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_GT_GT] = ACTIONS(1830), + [anon_sym_AMP_GT] = ACTIONS(1832), + [anon_sym_AMP_GT_GT] = ACTIONS(1830), + [anon_sym_LT_AMP] = ACTIONS(1830), + [anon_sym_GT_AMP] = ACTIONS(1830), + [sym__special_characters] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), + [anon_sym_BQUOTE] = ACTIONS(1830), + [anon_sym_LT_LPAREN] = ACTIONS(1830), + [anon_sym_GT_LPAREN] = ACTIONS(1830), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1830), }, [805] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2801), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [806] = { - [sym_concatenation] = STATE(1293), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1293), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_EQ] = ACTIONS(2805), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_COLON] = ACTIONS(2805), - [anon_sym_COLON_QMARK] = ACTIONS(2805), - [anon_sym_COLON_DASH] = ACTIONS(2805), - [anon_sym_PERCENT] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_SEMI_SEMI] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2746), }, [807] = { - [sym_concatenation] = STATE(1296), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1296), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_EQ] = ACTIONS(2813), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2817), - [anon_sym_COLON] = ACTIONS(2813), - [anon_sym_COLON_QMARK] = ACTIONS(2813), - [anon_sym_COLON_DASH] = ACTIONS(2813), - [anon_sym_PERCENT] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_SEMI_SEMI] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2746), }, [808] = { - [sym_concatenation] = STATE(1298), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1298), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_EQ] = ACTIONS(2819), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2823), - [anon_sym_COLON] = ACTIONS(2819), - [anon_sym_COLON_QMARK] = ACTIONS(2819), - [anon_sym_COLON_DASH] = ACTIONS(2819), - [anon_sym_PERCENT] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(2742), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [809] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2744), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), - [sym_word] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2750), }, [810] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2744), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2825), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2750), }, [811] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(1864), + [sym__concat] = ACTIONS(1864), + [sym_variable_name] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_GT] = ACTIONS(1864), + [anon_sym_AMP_GT] = ACTIONS(1866), + [anon_sym_AMP_GT_GT] = ACTIONS(1864), + [anon_sym_LT_AMP] = ACTIONS(1864), + [anon_sym_GT_AMP] = ACTIONS(1864), + [sym__special_characters] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1864), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1864), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1864), + [anon_sym_BQUOTE] = ACTIONS(1864), + [anon_sym_LT_LPAREN] = ACTIONS(1864), + [anon_sym_GT_LPAREN] = ACTIONS(1864), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1864), }, [812] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [sym__special_characters] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), - [sym_word] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [813] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), }, [814] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), }, [815] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [anon_sym_LT_LPAREN] = ACTIONS(2068), - [anon_sym_GT_LPAREN] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_DOLLAR] = ACTIONS(2762), + [sym__string_content] = ACTIONS(2764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2762), + [anon_sym_BQUOTE] = ACTIONS(2762), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), - [sym_word] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), }, [816] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), - [anon_sym_BQUOTE] = ACTIONS(2134), - [anon_sym_LT_LPAREN] = ACTIONS(2134), - [anon_sym_GT_LPAREN] = ACTIONS(2134), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), - [sym_word] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), + [sym_concatenation] = STATE(1250), + [sym_string] = STATE(1249), + [sym_simple_expansion] = STATE(1249), + [sym_string_expansion] = STATE(1249), + [sym_expansion] = STATE(1249), + [sym_command_substitution] = STATE(1249), + [sym_process_substitution] = STATE(1249), + [anon_sym_RBRACE] = ACTIONS(2766), + [sym__special_characters] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(2770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2770), }, [817] = { - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1754), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1754), + [sym__concat] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym__string_content] = ACTIONS(1748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), + [anon_sym_BQUOTE] = ACTIONS(1750), + [sym_comment] = ACTIONS(179), }, [818] = { - [aux_sym_concatenation_repeat1] = STATE(818), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(2831), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1754), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2772), }, [819] = { - [sym_file_descriptor] = ACTIONS(1761), - [sym__concat] = ACTIONS(1761), - [sym_variable_name] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_PIPE_AMP] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1761), - [anon_sym_AMP_GT] = ACTIONS(1763), - [anon_sym_AMP_GT_GT] = ACTIONS(1761), - [anon_sym_LT_AMP] = ACTIONS(1761), - [anon_sym_GT_AMP] = ACTIONS(1761), - [sym__special_characters] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), - [anon_sym_BQUOTE] = ACTIONS(1761), - [anon_sym_LT_LPAREN] = ACTIONS(1761), - [anon_sym_GT_LPAREN] = ACTIONS(1761), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1761), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [820] = { - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2776), + [sym_comment] = ACTIONS(53), }, [821] = { - [sym_concatenation] = STATE(1306), - [sym_string] = STATE(1305), - [sym_simple_expansion] = STATE(1305), - [sym_string_expansion] = STATE(1305), - [sym_expansion] = STATE(1305), - [sym_command_substitution] = STATE(1305), - [sym_process_substitution] = STATE(1305), - [anon_sym_RBRACE] = ACTIONS(2836), - [sym__special_characters] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(2840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2840), + [sym_concatenation] = STATE(1256), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1256), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_EQ] = ACTIONS(2780), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2780), + [anon_sym_COLON_QMARK] = ACTIONS(2780), + [anon_sym_COLON_DASH] = ACTIONS(2780), + [anon_sym_PERCENT] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [822] = { - [sym_file_descriptor] = ACTIONS(1846), - [sym__concat] = ACTIONS(1846), - [sym_variable_name] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_AMP_GT] = ACTIONS(1848), - [anon_sym_AMP_GT_GT] = ACTIONS(1846), - [anon_sym_LT_AMP] = ACTIONS(1846), - [anon_sym_GT_AMP] = ACTIONS(1846), - [sym__special_characters] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_LT_LPAREN] = ACTIONS(1846), - [anon_sym_GT_LPAREN] = ACTIONS(1846), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1846), + [sym_concatenation] = STATE(1259), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1259), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_EQ] = ACTIONS(2788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2792), + [anon_sym_COLON] = ACTIONS(2788), + [anon_sym_COLON_QMARK] = ACTIONS(2788), + [anon_sym_COLON_DASH] = ACTIONS(2788), + [anon_sym_PERCENT] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [823] = { + [sym_concatenation] = STATE(1261), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1261), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_EQ] = ACTIONS(2794), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_COLON] = ACTIONS(2794), + [anon_sym_COLON_QMARK] = ACTIONS(2794), + [anon_sym_COLON_DASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2842), + [sym_word] = ACTIONS(759), }, [824] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__concat] = ACTIONS(1816), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym__string_content] = ACTIONS(1816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), }, [825] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2846), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2800), }, [826] = { - [sym_concatenation] = STATE(1312), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1312), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_EQ] = ACTIONS(2850), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_DASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [827] = { - [sym_concatenation] = STATE(1315), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1315), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_EQ] = ACTIONS(2858), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_COLON_DASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__concat] = ACTIONS(1824), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym__string_content] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), }, [828] = { - [sym_concatenation] = STATE(1317), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1317), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_EQ] = ACTIONS(2864), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2864), - [anon_sym_COLON_QMARK] = ACTIONS(2864), - [anon_sym_COLON_DASH] = ACTIONS(2864), - [anon_sym_PERCENT] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(2804), }, [829] = { - [sym_file_descriptor] = ACTIONS(1914), - [sym__concat] = ACTIONS(1914), - [sym_variable_name] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_PIPE_AMP] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_GT_GT] = ACTIONS(1914), - [anon_sym_AMP_GT] = ACTIONS(1916), - [anon_sym_AMP_GT_GT] = ACTIONS(1914), - [anon_sym_LT_AMP] = ACTIONS(1914), - [anon_sym_GT_AMP] = ACTIONS(1914), - [sym__special_characters] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), - [anon_sym_BQUOTE] = ACTIONS(1914), - [anon_sym_LT_LPAREN] = ACTIONS(1914), - [anon_sym_GT_LPAREN] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1914), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [830] = { + [sym__concat] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym__string_content] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2870), }, [831] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [832] = { - [sym_file_descriptor] = ACTIONS(1922), - [sym__concat] = ACTIONS(1922), - [sym_variable_name] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1922), - [anon_sym_PIPE_AMP] = ACTIONS(1922), - [anon_sym_AMP_AMP] = ACTIONS(1922), - [anon_sym_PIPE_PIPE] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_GT_GT] = ACTIONS(1922), - [anon_sym_AMP_GT] = ACTIONS(1924), - [anon_sym_AMP_GT_GT] = ACTIONS(1922), - [anon_sym_LT_AMP] = ACTIONS(1922), - [anon_sym_GT_AMP] = ACTIONS(1922), - [sym__special_characters] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), - [anon_sym_BQUOTE] = ACTIONS(1922), - [anon_sym_LT_LPAREN] = ACTIONS(1922), - [anon_sym_GT_LPAREN] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2808), + [anon_sym_SEMI_SEMI] = ACTIONS(2810), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_LF] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2810), }, [833] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2808), + [anon_sym_SEMI_SEMI] = ACTIONS(2810), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2874), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_LF] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2810), }, [834] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(2806), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [835] = { - [sym_file_descriptor] = ACTIONS(2066), - [sym__concat] = ACTIONS(2066), - [sym_variable_name] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2066), - [anon_sym_LT_AMP] = ACTIONS(2066), - [anon_sym_GT_AMP] = ACTIONS(2066), - [sym__special_characters] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2066), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [anon_sym_LT_LPAREN] = ACTIONS(2066), - [anon_sym_GT_LPAREN] = ACTIONS(2066), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2814), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2808), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_LF] = ACTIONS(2816), + [anon_sym_AMP] = ACTIONS(2814), }, [836] = { - [sym_file_descriptor] = ACTIONS(2132), - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_PIPE_AMP] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2134), - [anon_sym_GT_GT] = ACTIONS(2132), - [anon_sym_AMP_GT] = ACTIONS(2134), - [anon_sym_AMP_GT_GT] = ACTIONS(2132), - [anon_sym_LT_AMP] = ACTIONS(2132), - [anon_sym_GT_AMP] = ACTIONS(2132), - [sym__special_characters] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2132), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_LT_LPAREN] = ACTIONS(2132), - [anon_sym_GT_LPAREN] = ACTIONS(2132), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2132), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2814), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2808), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_LF] = ACTIONS(2816), + [anon_sym_AMP] = ACTIONS(2814), }, [837] = { - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2876), - [sym__string_content] = ACTIONS(2878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), + [sym__simple_heredoc_body] = ACTIONS(2818), + [sym__heredoc_body_beginning] = ACTIONS(2818), + [sym_file_descriptor] = ACTIONS(2818), + [sym__concat] = ACTIONS(2818), + [anon_sym_esac] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_SEMI_SEMI] = ACTIONS(2820), + [anon_sym_PIPE_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [anon_sym_EQ_TILDE] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_AMP_GT] = ACTIONS(2820), + [anon_sym_AMP_GT_GT] = ACTIONS(2820), + [anon_sym_LT_AMP] = ACTIONS(2820), + [anon_sym_GT_AMP] = ACTIONS(2820), + [anon_sym_LT_LT] = ACTIONS(2820), + [anon_sym_LT_LT_DASH] = ACTIONS(2820), + [anon_sym_LT_LT_LT] = ACTIONS(2820), + [sym__special_characters] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), + [anon_sym_BQUOTE] = ACTIONS(2820), + [anon_sym_LT_LPAREN] = ACTIONS(2820), + [anon_sym_GT_LPAREN] = ACTIONS(2820), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), }, [838] = { - [sym_concatenation] = STATE(1324), - [sym_string] = STATE(1323), - [sym_simple_expansion] = STATE(1323), - [sym_string_expansion] = STATE(1323), - [sym_expansion] = STATE(1323), - [sym_command_substitution] = STATE(1323), - [sym_process_substitution] = STATE(1323), - [anon_sym_RBRACE] = ACTIONS(2880), - [sym__special_characters] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(2884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2884), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, [839] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym__string_content] = ACTIONS(1846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), - [anon_sym_BQUOTE] = ACTIONS(1848), - [sym_comment] = ACTIONS(179), + [aux_sym_concatenation_repeat1] = STATE(497), + [sym__concat] = ACTIONS(2822), + [anon_sym_RBRACK] = ACTIONS(2824), + [sym_comment] = ACTIONS(53), }, [840] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2886), + [aux_sym_concatenation_repeat1] = STATE(497), + [sym__concat] = ACTIONS(2826), + [anon_sym_RBRACK] = ACTIONS(2828), + [sym_comment] = ACTIONS(53), }, [841] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(2830), + [anon_sym_RBRACK] = ACTIONS(2828), + [sym_comment] = ACTIONS(53), }, [842] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(2832), + [sym__heredoc_body_beginning] = ACTIONS(2832), + [sym_file_descriptor] = ACTIONS(2832), + [sym__concat] = ACTIONS(2832), + [anon_sym_esac] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_SEMI_SEMI] = ACTIONS(2834), + [anon_sym_PIPE_AMP] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [anon_sym_EQ_TILDE] = ACTIONS(2834), + [anon_sym_EQ_EQ] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2834), + [anon_sym_GT_GT] = ACTIONS(2834), + [anon_sym_AMP_GT] = ACTIONS(2834), + [anon_sym_AMP_GT_GT] = ACTIONS(2834), + [anon_sym_LT_AMP] = ACTIONS(2834), + [anon_sym_GT_AMP] = ACTIONS(2834), + [anon_sym_LT_LT] = ACTIONS(2834), + [anon_sym_LT_LT_DASH] = ACTIONS(2834), + [anon_sym_LT_LT_LT] = ACTIONS(2834), + [sym__special_characters] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2834), + [anon_sym_LT_LPAREN] = ACTIONS(2834), + [anon_sym_GT_LPAREN] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), }, [843] = { - [sym_concatenation] = STATE(1330), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1330), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_COLON_DASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2838), + [sym_comment] = ACTIONS(53), }, [844] = { - [sym_concatenation] = STATE(1333), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1333), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_COLON] = ACTIONS(2902), - [anon_sym_COLON_QMARK] = ACTIONS(2902), - [anon_sym_COLON_DASH] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(1278), + [anon_sym_DQUOTE] = ACTIONS(2840), + [anon_sym_DOLLAR] = ACTIONS(2842), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), }, [845] = { - [sym_concatenation] = STATE(1335), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1335), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_EQ] = ACTIONS(2908), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2912), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_COLON_QMARK] = ACTIONS(2908), - [anon_sym_COLON_DASH] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_string] = STATE(1280), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(2844), + [sym_raw_string] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2844), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_QMARK] = ACTIONS(2844), + [anon_sym_0] = ACTIONS(2850), + [anon_sym__] = ACTIONS(2850), }, [846] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym__string_content] = ACTIONS(1914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [sym_comment] = ACTIONS(179), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), }, [847] = { + [sym_subscript] = STATE(1287), + [sym_variable_name] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2914), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2856), + [anon_sym_AT] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_0] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), }, [848] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__terminated_statement] = STATE(1290), + [sym_for_statement] = STATE(1288), + [sym_c_style_for_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_case_statement] = STATE(1288), + [sym_function_definition] = STATE(1288), + [sym_subshell] = STATE(1288), + [sym_pipeline] = STATE(1288), + [sym_list] = STATE(1288), + [sym_negated_command] = STATE(1288), + [sym_test_command] = STATE(1288), + [sym_declaration_command] = STATE(1288), + [sym_unset_command] = STATE(1288), + [sym_command] = STATE(1288), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1289), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(1290), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), }, [849] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym__string_content] = ACTIONS(1922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [sym_comment] = ACTIONS(179), + [sym__terminated_statement] = STATE(1293), + [sym_for_statement] = STATE(1291), + [sym_c_style_for_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_function_definition] = STATE(1291), + [sym_subshell] = STATE(1291), + [sym_pipeline] = STATE(1291), + [sym_list] = STATE(1291), + [sym_negated_command] = STATE(1291), + [sym_test_command] = STATE(1291), + [sym_declaration_command] = STATE(1291), + [sym_unset_command] = STATE(1291), + [sym_command] = STATE(1291), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1292), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1293), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), }, [850] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2918), + [sym__terminated_statement] = STATE(1296), + [sym_for_statement] = STATE(1294), + [sym_c_style_for_statement] = STATE(1294), + [sym_while_statement] = STATE(1294), + [sym_if_statement] = STATE(1294), + [sym_case_statement] = STATE(1294), + [sym_function_definition] = STATE(1294), + [sym_subshell] = STATE(1294), + [sym_pipeline] = STATE(1294), + [sym_list] = STATE(1294), + [sym_negated_command] = STATE(1294), + [sym_test_command] = STATE(1294), + [sym_declaration_command] = STATE(1294), + [sym_unset_command] = STATE(1294), + [sym_command] = STATE(1294), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1295), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(1296), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), }, [851] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(2852), + [sym_comment] = ACTIONS(53), }, [852] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym__string_content] = ACTIONS(2066), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [sym_comment] = ACTIONS(179), + [sym_string] = STATE(1297), + [sym_simple_expansion] = STATE(1297), + [sym_string_expansion] = STATE(1297), + [sym_expansion] = STATE(1297), + [sym_command_substitution] = STATE(1297), + [sym_process_substitution] = STATE(1297), + [sym__special_characters] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(2864), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2864), }, [853] = { - [sym__simple_heredoc_body] = ACTIONS(2920), - [sym__heredoc_body_beginning] = ACTIONS(2920), - [sym_file_descriptor] = ACTIONS(2920), - [sym__concat] = ACTIONS(2920), - [anon_sym_esac] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2922), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), - [anon_sym_PIPE_AMP] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_EQ_TILDE] = ACTIONS(2922), - [anon_sym_EQ_EQ] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_AMP_GT] = ACTIONS(2922), - [anon_sym_AMP_GT_GT] = ACTIONS(2922), - [anon_sym_LT_AMP] = ACTIONS(2922), - [anon_sym_GT_AMP] = ACTIONS(2922), - [anon_sym_LT_LT] = ACTIONS(2922), - [anon_sym_LT_LT_DASH] = ACTIONS(2922), - [anon_sym_LT_LT_LT] = ACTIONS(2922), - [sym__special_characters] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), - [anon_sym_BQUOTE] = ACTIONS(2922), - [anon_sym_LT_LPAREN] = ACTIONS(2922), - [anon_sym_GT_LPAREN] = ACTIONS(2922), + [aux_sym_concatenation_repeat1] = STATE(1298), + [sym__concat] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(683), + [anon_sym_POUND] = ACTIONS(683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(683), + [anon_sym_COLON] = ACTIONS(685), + [anon_sym_COLON_QMARK] = ACTIONS(685), + [anon_sym_COLON_DASH] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(683), + [anon_sym_BQUOTE] = ACTIONS(683), + [anon_sym_LT_LPAREN] = ACTIONS(683), + [anon_sym_GT_LPAREN] = ACTIONS(683), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), + [sym_word] = ACTIONS(685), }, [854] = { - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [sym__concat] = ACTIONS(687), + [anon_sym_RBRACE] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(687), + [anon_sym_POUND] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(687), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_COLON_QMARK] = ACTIONS(689), + [anon_sym_COLON_DASH] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(687), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [sym_word] = ACTIONS(689), }, [855] = { - [aux_sym_concatenation_repeat1] = STATE(580), - [sym__concat] = ACTIONS(2924), - [anon_sym_RBRACK] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, [856] = { - [aux_sym_concatenation_repeat1] = STATE(580), - [sym__concat] = ACTIONS(2928), - [anon_sym_RBRACK] = ACTIONS(2930), - [sym_comment] = ACTIONS(53), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2868), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), }, [857] = { - [sym__concat] = ACTIONS(2932), - [anon_sym_RBRACK] = ACTIONS(2930), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(719), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(721), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(719), + [anon_sym_POUND] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(719), + [anon_sym_COLON] = ACTIONS(721), + [anon_sym_COLON_QMARK] = ACTIONS(721), + [anon_sym_COLON_DASH] = ACTIONS(721), + [anon_sym_PERCENT] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(719), + [anon_sym_LT_LPAREN] = ACTIONS(719), + [anon_sym_GT_LPAREN] = ACTIONS(719), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(721), }, [858] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2936), - [anon_sym_PIPE_AMP] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [anon_sym_EQ_TILDE] = ACTIONS(2936), - [anon_sym_EQ_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2936), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2936), - [anon_sym_LT_AMP] = ACTIONS(2936), - [anon_sym_GT_AMP] = ACTIONS(2936), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2936), - [anon_sym_LT_LT_LT] = ACTIONS(2936), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), - [anon_sym_BQUOTE] = ACTIONS(2936), - [anon_sym_LT_LPAREN] = ACTIONS(2936), - [anon_sym_GT_LPAREN] = ACTIONS(2936), + [sym__concat] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_EQ] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(723), + [anon_sym_POUND] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(723), + [anon_sym_COLON] = ACTIONS(725), + [anon_sym_COLON_QMARK] = ACTIONS(725), + [anon_sym_COLON_DASH] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(723), + [anon_sym_LT_LPAREN] = ACTIONS(723), + [anon_sym_GT_LPAREN] = ACTIONS(723), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), + [sym_word] = ACTIONS(725), }, [859] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2940), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_COLON_QMARK] = ACTIONS(729), + [anon_sym_COLON_DASH] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(727), + [anon_sym_GT_LPAREN] = ACTIONS(727), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(729), }, [860] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(1349), - [anon_sym_DQUOTE] = ACTIONS(2942), - [anon_sym_DOLLAR] = ACTIONS(2944), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2870), + [sym_comment] = ACTIONS(53), }, [861] = { - [sym_string] = STATE(1351), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(2946), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_POUND] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1304), + [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2874), + [anon_sym_COLON_QMARK] = ACTIONS(2874), + [anon_sym_COLON_DASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_AT] = ACTIONS(2946), - [anon_sym_QMARK] = ACTIONS(2946), - [anon_sym_0] = ACTIONS(2952), - [anon_sym__] = ACTIONS(2952), + [sym_word] = ACTIONS(759), }, [862] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2954), + [sym_subscript] = STATE(1308), + [sym_variable_name] = ACTIONS(2880), + [anon_sym_DOLLAR] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2882), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2882), + [anon_sym_0] = ACTIONS(2886), + [anon_sym__] = ACTIONS(2886), }, [863] = { - [sym_subscript] = STATE(1358), - [sym_variable_name] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2958), + [sym_concatenation] = STATE(1311), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1311), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2890), + [anon_sym_COLON_QMARK] = ACTIONS(2890), + [anon_sym_COLON_DASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2958), - [anon_sym_QMARK] = ACTIONS(2958), - [anon_sym_0] = ACTIONS(2964), - [anon_sym__] = ACTIONS(2964), + [sym_word] = ACTIONS(759), }, [864] = { - [sym_for_statement] = STATE(1359), - [sym_c_style_for_statement] = STATE(1359), - [sym_while_statement] = STATE(1359), - [sym_if_statement] = STATE(1359), - [sym_case_statement] = STATE(1359), - [sym_function_definition] = STATE(1359), - [sym_subshell] = STATE(1359), - [sym_pipeline] = STATE(1359), - [sym_list] = STATE(1359), - [sym_negated_command] = STATE(1359), - [sym_test_command] = STATE(1359), - [sym_declaration_command] = STATE(1359), - [sym_unset_command] = STATE(1359), - [sym_command] = STATE(1359), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1360), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_concatenation] = STATE(1314), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1314), + [anon_sym_RBRACE] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2898), + [anon_sym_COLON_QMARK] = ACTIONS(2898), + [anon_sym_COLON_DASH] = ACTIONS(2898), + [anon_sym_PERCENT] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [865] = { - [sym_for_statement] = STATE(1361), - [sym_c_style_for_statement] = STATE(1361), - [sym_while_statement] = STATE(1361), - [sym_if_statement] = STATE(1361), - [sym_case_statement] = STATE(1361), - [sym_function_definition] = STATE(1361), - [sym_subshell] = STATE(1361), - [sym_pipeline] = STATE(1361), - [sym_list] = STATE(1361), - [sym_negated_command] = STATE(1361), - [sym_test_command] = STATE(1361), - [sym_declaration_command] = STATE(1361), - [sym_unset_command] = STATE(1361), - [sym_command] = STATE(1361), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(1362), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), + [sym_concatenation] = STATE(1316), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1316), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2906), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(2906), + [anon_sym_COLON_QMARK] = ACTIONS(2906), + [anon_sym_COLON_DASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [866] = { - [sym_for_statement] = STATE(1363), - [sym_c_style_for_statement] = STATE(1363), - [sym_while_statement] = STATE(1363), - [sym_if_statement] = STATE(1363), - [sym_case_statement] = STATE(1363), - [sym_function_definition] = STATE(1363), - [sym_subshell] = STATE(1363), - [sym_pipeline] = STATE(1363), - [sym_list] = STATE(1363), - [sym_negated_command] = STATE(1363), - [sym_test_command] = STATE(1363), - [sym_declaration_command] = STATE(1363), - [sym_unset_command] = STATE(1363), - [sym_command] = STATE(1363), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1364), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2910), + [anon_sym_SEMI_SEMI] = ACTIONS(2912), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2912), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), }, [867] = { - [anon_sym_RBRACE] = ACTIONS(2954), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2910), + [anon_sym_SEMI_SEMI] = ACTIONS(2912), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2912), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), }, [868] = { - [sym_string] = STATE(1365), - [sym_simple_expansion] = STATE(1365), - [sym_string_expansion] = STATE(1365), - [sym_expansion] = STATE(1365), - [sym_command_substitution] = STATE(1365), - [sym_process_substitution] = STATE(1365), - [sym__special_characters] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(2966), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1319), + [sym_c_style_for_statement] = STATE(1319), + [sym_while_statement] = STATE(1319), + [sym_if_statement] = STATE(1319), + [sym_case_statement] = STATE(1319), + [sym_function_definition] = STATE(1319), + [sym_subshell] = STATE(1319), + [sym_pipeline] = STATE(1319), + [sym_list] = STATE(1319), + [sym_negated_command] = STATE(1319), + [sym_test_command] = STATE(1319), + [sym_declaration_command] = STATE(1319), + [sym_unset_command] = STATE(1319), + [sym_command] = STATE(1319), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1320), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2966), + [sym_word] = ACTIONS(107), }, [869] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(733), - [anon_sym_COLON_QMARK] = ACTIONS(733), - [anon_sym_COLON_DASH] = ACTIONS(733), - [anon_sym_PERCENT] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2916), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(2910), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(2916), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), }, [870] = { - [sym__concat] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_COLON] = ACTIONS(737), - [anon_sym_COLON_QMARK] = ACTIONS(737), - [anon_sym_COLON_DASH] = ACTIONS(737), - [anon_sym_PERCENT] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(2916), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2910), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(737), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2916), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), }, [871] = { - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1322), + [sym_c_style_for_statement] = STATE(1322), + [sym_while_statement] = STATE(1322), + [sym_if_statement] = STATE(1322), + [sym_case_statement] = STATE(1322), + [sym_function_definition] = STATE(1322), + [sym_subshell] = STATE(1322), + [sym_pipeline] = STATE(1322), + [sym_list] = STATE(1322), + [sym_negated_command] = STATE(1322), + [sym_test_command] = STATE(1322), + [sym_declaration_command] = STATE(1322), + [sym_unset_command] = STATE(1322), + [sym_command] = STATE(1322), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1323), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), }, [872] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2970), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2922), }, [873] = { - [sym__concat] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_EQ] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(767), - [anon_sym_POUND] = ACTIONS(767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), - [anon_sym_COLON] = ACTIONS(769), - [anon_sym_COLON_QMARK] = ACTIONS(769), - [anon_sym_COLON_DASH] = ACTIONS(769), - [anon_sym_PERCENT] = ACTIONS(769), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), - [anon_sym_BQUOTE] = ACTIONS(767), - [anon_sym_LT_LPAREN] = ACTIONS(767), - [anon_sym_GT_LPAREN] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(769), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2922), }, [874] = { - [sym__concat] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_EQ] = ACTIONS(773), - [sym__special_characters] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_COLON_QMARK] = ACTIONS(773), - [anon_sym_COLON_DASH] = ACTIONS(773), - [anon_sym_PERCENT] = ACTIONS(773), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(771), - [anon_sym_LT_LPAREN] = ACTIONS(771), - [anon_sym_GT_LPAREN] = ACTIONS(771), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(773), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1326), + [sym_c_style_for_statement] = STATE(1326), + [sym_while_statement] = STATE(1326), + [sym_if_statement] = STATE(1326), + [sym_case_statement] = STATE(1326), + [sym_function_definition] = STATE(1326), + [sym_subshell] = STATE(1326), + [sym_pipeline] = STATE(1326), + [sym_list] = STATE(1326), + [sym_negated_command] = STATE(1326), + [sym_test_command] = STATE(1326), + [sym_declaration_command] = STATE(1326), + [sym_unset_command] = STATE(1326), + [sym_command] = STATE(1326), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1327), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), }, [875] = { - [sym__concat] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(777), - [sym__special_characters] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_COLON_QMARK] = ACTIONS(777), - [anon_sym_COLON_DASH] = ACTIONS(777), - [anon_sym_PERCENT] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LT_LPAREN] = ACTIONS(775), - [anon_sym_GT_LPAREN] = ACTIONS(775), + [sym__simple_heredoc_body] = ACTIONS(2926), + [sym__heredoc_body_beginning] = ACTIONS(2926), + [sym_file_descriptor] = ACTIONS(2926), + [sym__concat] = ACTIONS(2926), + [anon_sym_esac] = ACTIONS(2928), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_RPAREN] = ACTIONS(2928), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [anon_sym_EQ_TILDE] = ACTIONS(2928), + [anon_sym_EQ_EQ] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2928), + [anon_sym_GT] = ACTIONS(2928), + [anon_sym_GT_GT] = ACTIONS(2928), + [anon_sym_AMP_GT] = ACTIONS(2928), + [anon_sym_AMP_GT_GT] = ACTIONS(2928), + [anon_sym_LT_AMP] = ACTIONS(2928), + [anon_sym_GT_AMP] = ACTIONS(2928), + [anon_sym_LT_LT] = ACTIONS(2928), + [anon_sym_LT_LT_DASH] = ACTIONS(2928), + [anon_sym_LT_LT_LT] = ACTIONS(2928), + [sym__special_characters] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_LT_LPAREN] = ACTIONS(2928), + [anon_sym_GT_LPAREN] = ACTIONS(2928), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(777), + [sym_word] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2928), }, [876] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(2972), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [sym__special_characters] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_DOLLAR] = ACTIONS(2941), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(2947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2932), + [anon_sym_COLON_QMARK] = ACTIONS(2932), + [anon_sym_COLON_DASH] = ACTIONS(2932), + [anon_sym_PERCENT] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2953), + [anon_sym_BQUOTE] = ACTIONS(2956), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2962), }, [877] = { - [sym_concatenation] = STATE(1372), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1372), - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_EQ] = ACTIONS(2976), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2978), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2980), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_COLON_DASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_concatenation] = STATE(1330), + [sym_string] = STATE(1329), + [sym_simple_expansion] = STATE(1329), + [sym_string_expansion] = STATE(1329), + [sym_expansion] = STATE(1329), + [sym_command_substitution] = STATE(1329), + [sym_process_substitution] = STATE(1329), + [anon_sym_RBRACE] = ACTIONS(2852), + [sym__special_characters] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(2967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2967), }, [878] = { - [sym_subscript] = STATE(1376), - [sym_variable_name] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_AT] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_0] = ACTIONS(2988), - [anon_sym__] = ACTIONS(2988), + [sym__simple_heredoc_body] = ACTIONS(2969), + [sym__heredoc_body_beginning] = ACTIONS(2969), + [sym_file_descriptor] = ACTIONS(2969), + [sym__concat] = ACTIONS(2969), + [anon_sym_esac] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_RPAREN] = ACTIONS(2971), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_EQ_TILDE] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2971), + [anon_sym_AMP_GT] = ACTIONS(2971), + [anon_sym_AMP_GT_GT] = ACTIONS(2971), + [anon_sym_LT_AMP] = ACTIONS(2971), + [anon_sym_GT_AMP] = ACTIONS(2971), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_LT_LT_DASH] = ACTIONS(2971), + [anon_sym_LT_LT_LT] = ACTIONS(2971), + [sym__special_characters] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_LT_LPAREN] = ACTIONS(2971), + [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), }, [879] = { - [sym_concatenation] = STATE(1379), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1379), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(2994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(2996), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_COLON_DASH] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(2973), }, [880] = { - [sym_concatenation] = STATE(1382), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1382), - [anon_sym_RBRACE] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3000), - [anon_sym_COLON_QMARK] = ACTIONS(3000), - [anon_sym_COLON_DASH] = ACTIONS(3000), - [anon_sym_PERCENT] = ACTIONS(3000), - [anon_sym_DASH] = ACTIONS(3000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2975), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [881] = { - [sym_concatenation] = STATE(1384), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1384), - [anon_sym_RBRACE] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3008), - [anon_sym_COLON_QMARK] = ACTIONS(3008), - [anon_sym_COLON_DASH] = ACTIONS(3008), - [anon_sym_PERCENT] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__simple_heredoc_body] = ACTIONS(2977), + [sym__heredoc_body_beginning] = ACTIONS(2977), + [sym_file_descriptor] = ACTIONS(2977), + [sym__concat] = ACTIONS(2977), + [anon_sym_esac] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2979), + [anon_sym_PIPE_AMP] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_EQ_TILDE] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2979), + [anon_sym_AMP_GT] = ACTIONS(2979), + [anon_sym_AMP_GT_GT] = ACTIONS(2979), + [anon_sym_LT_AMP] = ACTIONS(2979), + [anon_sym_GT_AMP] = ACTIONS(2979), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_LT_LT_DASH] = ACTIONS(2979), + [anon_sym_LT_LT_LT] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2979), + [anon_sym_LT_LPAREN] = ACTIONS(2979), + [anon_sym_GT_LPAREN] = ACTIONS(2979), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), }, [882] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2981), }, [883] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [884] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(3012), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2985), }, [885] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(3012), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [886] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1337), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1337), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(2989), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(2991), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(2989), + [anon_sym_COLON_QMARK] = ACTIONS(2989), + [anon_sym_COLON_DASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [887] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym__simple_heredoc_body] = ACTIONS(2993), + [sym__heredoc_body_beginning] = ACTIONS(2993), + [sym_file_descriptor] = ACTIONS(2993), + [sym__concat] = ACTIONS(2993), + [anon_sym_esac] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_RPAREN] = ACTIONS(2995), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), + [anon_sym_PIPE_AMP] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_EQ_TILDE] = ACTIONS(2995), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2995), + [anon_sym_AMP_GT] = ACTIONS(2995), + [anon_sym_AMP_GT_GT] = ACTIONS(2995), + [anon_sym_LT_AMP] = ACTIONS(2995), + [anon_sym_GT_AMP] = ACTIONS(2995), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_LT_LT_DASH] = ACTIONS(2995), + [anon_sym_LT_LT_LT] = ACTIONS(2995), + [sym__special_characters] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2995), + [anon_sym_BQUOTE] = ACTIONS(2995), + [anon_sym_LT_LPAREN] = ACTIONS(2995), + [anon_sym_GT_LPAREN] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), }, [888] = { - [sym__simple_heredoc_body] = ACTIONS(3016), - [sym__heredoc_body_beginning] = ACTIONS(3016), - [sym_file_descriptor] = ACTIONS(3016), - [sym__concat] = ACTIONS(3016), - [anon_sym_esac] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [anon_sym_PIPE_AMP] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_EQ_TILDE] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_AMP_GT] = ACTIONS(3018), - [anon_sym_AMP_GT_GT] = ACTIONS(3018), - [anon_sym_LT_AMP] = ACTIONS(3018), - [anon_sym_GT_AMP] = ACTIONS(3018), - [anon_sym_LT_LT] = ACTIONS(3018), - [anon_sym_LT_LT_DASH] = ACTIONS(3018), - [anon_sym_LT_LT_LT] = ACTIONS(3018), - [sym__special_characters] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [anon_sym_LT_LPAREN] = ACTIONS(3018), - [anon_sym_GT_LPAREN] = ACTIONS(3018), + [sym_concatenation] = STATE(1339), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1339), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(2999), + [anon_sym_COLON_QMARK] = ACTIONS(2999), + [anon_sym_COLON_DASH] = ACTIONS(2999), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), + [sym_word] = ACTIONS(759), }, [889] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_EQ] = ACTIONS(3022), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3031), - [sym_raw_string] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_COLON_DASH] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3043), - [anon_sym_BQUOTE] = ACTIONS(3046), - [anon_sym_LT_LPAREN] = ACTIONS(3049), - [anon_sym_GT_LPAREN] = ACTIONS(3049), + [sym__simple_heredoc_body] = ACTIONS(3003), + [sym__heredoc_body_beginning] = ACTIONS(3003), + [sym_file_descriptor] = ACTIONS(3003), + [sym__concat] = ACTIONS(3003), + [anon_sym_esac] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_SEMI_SEMI] = ACTIONS(3005), + [anon_sym_PIPE_AMP] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_EQ_TILDE] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_GT] = ACTIONS(3005), + [anon_sym_AMP_GT_GT] = ACTIONS(3005), + [anon_sym_LT_AMP] = ACTIONS(3005), + [anon_sym_GT_AMP] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_LT_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT_LT] = ACTIONS(3005), + [sym__special_characters] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3005), + [anon_sym_LT_LPAREN] = ACTIONS(3005), + [anon_sym_GT_LPAREN] = ACTIONS(3005), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3052), + [sym_word] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), }, [890] = { - [sym_concatenation] = STATE(1389), - [sym_string] = STATE(1388), - [sym_simple_expansion] = STATE(1388), - [sym_string_expansion] = STATE(1388), - [sym_expansion] = STATE(1388), - [sym_command_substitution] = STATE(1388), - [sym_process_substitution] = STATE(1388), - [anon_sym_RBRACE] = ACTIONS(2954), - [sym__special_characters] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(3057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3057), + [sym_word] = ACTIONS(819), }, [891] = { - [sym__simple_heredoc_body] = ACTIONS(3059), - [sym__heredoc_body_beginning] = ACTIONS(3059), - [sym_file_descriptor] = ACTIONS(3059), - [sym__concat] = ACTIONS(3059), - [anon_sym_esac] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_SEMI_SEMI] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_EQ_TILDE] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(3061), - [anon_sym_LT_AMP] = ACTIONS(3061), - [anon_sym_GT_AMP] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_LT_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT_LT] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), - [anon_sym_BQUOTE] = ACTIONS(3061), - [anon_sym_LT_LPAREN] = ACTIONS(3061), - [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_file_redirect] = STATE(1341), + [sym_heredoc_redirect] = STATE(1341), + [sym_heredoc_body] = STATE(569), + [sym_herestring_redirect] = STATE(1341), + [aux_sym_while_statement_repeat1] = STATE(1341), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(1085), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1085), }, [892] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3063), + [anon_sym_RPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(53), }, [893] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_redirect] = STATE(618), + [sym_file_descriptor] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_SEMI_SEMI] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1169), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(3013), + [anon_sym_LT_AMP] = ACTIONS(3013), + [anon_sym_GT_AMP] = ACTIONS(3013), + [anon_sym_BQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1169), }, [894] = { - [sym__simple_heredoc_body] = ACTIONS(3067), - [sym__heredoc_body_beginning] = ACTIONS(3067), - [sym_file_descriptor] = ACTIONS(3067), - [sym__concat] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3069), - [anon_sym_PIPE_AMP] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_EQ_TILDE] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_AMP_GT] = ACTIONS(3069), - [anon_sym_AMP_GT_GT] = ACTIONS(3069), - [anon_sym_LT_AMP] = ACTIONS(3069), - [anon_sym_GT_AMP] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_LT_LT_DASH] = ACTIONS(3069), - [anon_sym_LT_LT_LT] = ACTIONS(3069), - [sym__special_characters] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3069), - [anon_sym_LT_LPAREN] = ACTIONS(3069), - [anon_sym_GT_LPAREN] = ACTIONS(3069), + [sym_file_redirect] = STATE(1348), + [sym_heredoc_redirect] = STATE(1348), + [sym_herestring_redirect] = STATE(1348), + [aux_sym_while_statement_repeat1] = STATE(1348), + [sym_file_descriptor] = ACTIONS(3015), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_SEMI_SEMI] = ACTIONS(1291), + [anon_sym_PIPE_AMP] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_GT_GT] = ACTIONS(3017), + [anon_sym_AMP_GT] = ACTIONS(3017), + [anon_sym_AMP_GT_GT] = ACTIONS(3017), + [anon_sym_LT_AMP] = ACTIONS(3017), + [anon_sym_GT_AMP] = ACTIONS(3017), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_LT_LT_DASH] = ACTIONS(1295), + [anon_sym_LT_LT_LT] = ACTIONS(3019), + [anon_sym_BQUOTE] = ACTIONS(1291), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_LF] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1291), }, [895] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3071), + [sym_compound_statement] = STATE(1349), + [anon_sym_LBRACE] = ACTIONS(435), + [sym_comment] = ACTIONS(53), }, [896] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_SEMI_SEMI] = ACTIONS(1876), + [anon_sym_PIPE_AMP] = ACTIONS(1876), + [anon_sym_AMP_AMP] = ACTIONS(1876), + [anon_sym_PIPE_PIPE] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1876), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1876), }, [897] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_BQUOTE] = ACTIONS(1880), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1880), }, [898] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(2954), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1880), }, [899] = { - [sym_concatenation] = STATE(1396), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1396), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_EQ] = ACTIONS(3079), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_DASH] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_concatenation] = STATE(922), + [sym_string] = STATE(1351), + [sym_simple_expansion] = STATE(1351), + [sym_string_expansion] = STATE(1351), + [sym_expansion] = STATE(1351), + [sym_command_substitution] = STATE(1351), + [sym_process_substitution] = STATE(1351), + [sym__special_characters] = ACTIONS(3021), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3023), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3023), }, [900] = { - [sym__simple_heredoc_body] = ACTIONS(3083), - [sym__heredoc_body_beginning] = ACTIONS(3083), - [sym_file_descriptor] = ACTIONS(3083), - [sym__concat] = ACTIONS(3083), - [anon_sym_esac] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3085), - [anon_sym_PIPE_AMP] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_EQ_TILDE] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_GT] = ACTIONS(3085), - [anon_sym_AMP_GT_GT] = ACTIONS(3085), - [anon_sym_LT_AMP] = ACTIONS(3085), - [anon_sym_GT_AMP] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_LT_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT_LT] = ACTIONS(3085), - [sym__special_characters] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), - [anon_sym_BQUOTE] = ACTIONS(3085), - [anon_sym_LT_LPAREN] = ACTIONS(3085), - [anon_sym_GT_LPAREN] = ACTIONS(3085), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__simple_heredoc_body] = ACTIONS(649), + [sym__heredoc_body_beginning] = ACTIONS(649), + [sym_file_descriptor] = ACTIONS(649), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_AMP_GT] = ACTIONS(653), + [anon_sym_AMP_GT_GT] = ACTIONS(653), + [anon_sym_LT_AMP] = ACTIONS(653), + [anon_sym_GT_AMP] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_LT] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(653), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), }, [901] = { - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1398), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3089), - [anon_sym_COLON_QMARK] = ACTIONS(3089), - [anon_sym_COLON_DASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__simple_heredoc_body] = ACTIONS(667), + [sym__heredoc_body_beginning] = ACTIONS(667), + [sym_file_descriptor] = ACTIONS(667), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), }, [902] = { - [aux_sym_concatenation_repeat1] = STATE(1399), - [sym_file_descriptor] = ACTIONS(1173), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_PIPE_AMP] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1173), - [anon_sym_PIPE_PIPE] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_AMP_GT] = ACTIONS(1177), - [anon_sym_AMP_GT_GT] = ACTIONS(1173), - [anon_sym_LT_AMP] = ACTIONS(1173), - [anon_sym_GT_AMP] = ACTIONS(1173), - [sym__special_characters] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), - [anon_sym_BQUOTE] = ACTIONS(1173), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1173), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1926), + [anon_sym_PIPE_AMP] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_PIPE_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1926), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1926), + [anon_sym_LT_AMP] = ACTIONS(1926), + [anon_sym_GT_AMP] = ACTIONS(1926), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1926), + [anon_sym_LT_LT_LT] = ACTIONS(1926), + [anon_sym_BQUOTE] = ACTIONS(1926), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [903] = { - [aux_sym_concatenation_repeat1] = STATE(1399), - [sym_file_descriptor] = ACTIONS(1151), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_PIPE_AMP] = ACTIONS(1151), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1153), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), - [anon_sym_BQUOTE] = ACTIONS(1151), - [anon_sym_LT_LPAREN] = ACTIONS(1151), - [anon_sym_GT_LPAREN] = ACTIONS(1151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1151), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), + [anon_sym_BQUOTE] = ACTIONS(1930), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), }, [904] = { - [sym__expression] = STATE(1401), - [sym_binary_expression] = STATE(1401), - [sym_unary_expression] = STATE(1401), - [sym_parenthesized_expression] = STATE(1401), - [sym_concatenation] = STATE(1401), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [anon_sym_SEMI_SEMI] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [sym__special_characters] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_LT_LPAREN] = ACTIONS(427), - [anon_sym_GT_LPAREN] = ACTIONS(427), + [sym_file_redirect] = STATE(904), + [sym_heredoc_redirect] = STATE(904), + [sym_herestring_redirect] = STATE(904), + [aux_sym_while_statement_repeat1] = STATE(904), + [sym__simple_heredoc_body] = ACTIONS(1936), + [sym__heredoc_body_beginning] = ACTIONS(1936), + [sym_file_descriptor] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_SEMI_SEMI] = ACTIONS(1941), + [anon_sym_PIPE_AMP] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3028), + [anon_sym_GT_GT] = ACTIONS(3028), + [anon_sym_AMP_GT] = ACTIONS(3028), + [anon_sym_AMP_GT_GT] = ACTIONS(3028), + [anon_sym_LT_AMP] = ACTIONS(3028), + [anon_sym_GT_AMP] = ACTIONS(3028), + [anon_sym_LT_LT] = ACTIONS(1946), + [anon_sym_LT_LT_DASH] = ACTIONS(1946), + [anon_sym_LT_LT_LT] = ACTIONS(3031), + [anon_sym_BQUOTE] = ACTIONS(1941), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(419), - [sym_test_operator] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1941), }, [905] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), + [sym_file_redirect] = STATE(904), + [sym_heredoc_redirect] = STATE(904), + [sym_heredoc_body] = STATE(924), + [sym_herestring_redirect] = STATE(904), + [aux_sym_while_statement_repeat1] = STATE(904), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(1932), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), }, [906] = { - [sym_concatenation] = STATE(1403), - [sym_string] = STATE(640), - [sym_simple_expansion] = STATE(640), - [sym_string_expansion] = STATE(640), - [sym_expansion] = STATE(640), - [sym_command_substitution] = STATE(640), - [sym_process_substitution] = STATE(640), - [aux_sym_for_statement_repeat1] = STATE(1403), - [sym__special_characters] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR] = ACTIONS(73), - [sym_raw_string] = ACTIONS(1257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(79), - [anon_sym_BQUOTE] = ACTIONS(81), - [anon_sym_LT_LPAREN] = ACTIONS(83), - [anon_sym_GT_LPAREN] = ACTIONS(83), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3007), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1257), + [sym_word] = ACTIONS(819), }, [907] = { - [sym_do_group] = STATE(1405), - [anon_sym_do] = ACTIONS(3101), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(1353), + [sym_heredoc_redirect] = STATE(1353), + [sym_heredoc_body] = STATE(924), + [sym_herestring_redirect] = STATE(1353), + [sym_concatenation] = STATE(493), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_string_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [aux_sym_while_statement_repeat1] = STATE(1353), + [aux_sym_command_repeat2] = STATE(493), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_EQ_TILDE] = ACTIONS(299), + [anon_sym_EQ_EQ] = ACTIONS(299), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym__special_characters] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(1932), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), }, [908] = { - [sym__terminated_statement] = STATE(1407), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1407), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(3034), + [sym__heredoc_body_beginning] = ACTIONS(3034), + [sym_file_descriptor] = ACTIONS(3034), + [sym__concat] = ACTIONS(3034), + [anon_sym_esac] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3036), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), }, [909] = { - [sym_file_redirect] = STATE(1409), - [sym_heredoc_redirect] = STATE(1409), - [sym_heredoc_body] = STATE(1408), - [sym_herestring_redirect] = STATE(1409), - [aux_sym_while_statement_repeat1] = STATE(1409), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1265), - [anon_sym_PIPE_AMP] = ACTIONS(1265), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_PIPE_PIPE] = ACTIONS(1265), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(937), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3038), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [910] = { - [sym__terminated_statement] = STATE(1412), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_elif_clause] = STATE(1413), - [sym_else_clause] = STATE(1411), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1412), - [aux_sym_if_statement_repeat1] = STATE(1413), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(3105), - [anon_sym_elif] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_file_redirect] = STATE(1355), + [sym_file_descriptor] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_SEMI_SEMI] = ACTIONS(2330), + [anon_sym_PIPE_AMP] = ACTIONS(2330), + [anon_sym_AMP_AMP] = ACTIONS(2330), + [anon_sym_PIPE_PIPE] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1171), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_LF] = ACTIONS(2332), + [anon_sym_AMP] = ACTIONS(2330), }, [911] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3107), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3107), + [sym__heredoc_body_middle] = ACTIONS(719), + [sym__heredoc_body_end] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(719), + [sym_comment] = ACTIONS(53), }, [912] = { - [anon_sym_in] = ACTIONS(3111), + [sym__heredoc_body_middle] = ACTIONS(727), + [sym__heredoc_body_end] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), [sym_comment] = ACTIONS(53), }, [913] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3113), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), }, [914] = { - [anon_sym_in] = ACTIONS(3117), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1359), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1359), + [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3044), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3046), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_COLON] = ACTIONS(3044), + [anon_sym_COLON_QMARK] = ACTIONS(3044), + [anon_sym_COLON_DASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [915] = { - [anon_sym_RPAREN] = ACTIONS(3119), + [sym_subscript] = STATE(1363), + [sym_variable_name] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_AT] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_0] = ACTIONS(3056), + [anon_sym__] = ACTIONS(3056), }, [916] = { - [sym__terminated_statement] = STATE(1420), - [sym_for_statement] = STATE(680), - [sym_c_style_for_statement] = STATE(680), - [sym_while_statement] = STATE(680), - [sym_if_statement] = STATE(680), - [sym_case_statement] = STATE(680), - [sym_function_definition] = STATE(680), - [sym_subshell] = STATE(680), - [sym_pipeline] = STATE(680), - [sym_list] = STATE(680), - [sym_negated_command] = STATE(680), - [sym_test_command] = STATE(680), - [sym_declaration_command] = STATE(680), - [sym_unset_command] = STATE(680), - [sym_command] = STATE(680), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(681), + [sym_concatenation] = STATE(1366), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1366), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_COLON_QMARK] = ACTIONS(3060), + [anon_sym_COLON_DASH] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [917] = { + [sym_concatenation] = STATE(1369), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1369), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_EQ] = ACTIONS(3068), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_COLON_QMARK] = ACTIONS(3068), + [anon_sym_COLON_DASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [918] = { + [anon_sym_esac] = ACTIONS(3074), + [anon_sym_PIPE] = ACTIONS(3074), + [anon_sym_RPAREN] = ACTIONS(3074), + [anon_sym_SEMI_SEMI] = ACTIONS(3074), + [anon_sym_PIPE_AMP] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_PIPE_PIPE] = ACTIONS(3074), + [anon_sym_BQUOTE] = ACTIONS(3074), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_LF] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3074), + }, + [919] = { + [sym_simple_expansion] = STATE(919), + [sym_expansion] = STATE(919), + [aux_sym_heredoc_body_repeat1] = STATE(919), + [sym__heredoc_body_middle] = ACTIONS(3078), + [sym__heredoc_body_end] = ACTIONS(3081), + [anon_sym_DOLLAR] = ACTIONS(3083), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3086), + [sym_comment] = ACTIONS(53), + }, + [920] = { + [aux_sym_concatenation_repeat1] = STATE(923), + [sym__simple_heredoc_body] = ACTIONS(955), + [sym__heredoc_body_beginning] = ACTIONS(955), + [sym_file_descriptor] = ACTIONS(955), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [921] = { + [aux_sym_concatenation_repeat1] = STATE(923), + [sym__simple_heredoc_body] = ACTIONS(959), + [sym__heredoc_body_beginning] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [922] = { + [sym__simple_heredoc_body] = ACTIONS(959), + [sym__heredoc_body_beginning] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_esac] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [923] = { + [aux_sym_concatenation_repeat1] = STATE(1370), + [sym__simple_heredoc_body] = ACTIONS(683), + [sym__heredoc_body_beginning] = ACTIONS(683), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [924] = { + [anon_sym_esac] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + }, + [925] = { + [sym_file_redirect] = STATE(491), + [sym_heredoc_redirect] = STATE(491), + [sym_heredoc_body] = STATE(1371), + [sym_herestring_redirect] = STATE(491), + [aux_sym_while_statement_repeat1] = STATE(491), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(295), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_AMP_GT] = ACTIONS(301), + [anon_sym_AMP_GT_GT] = ACTIONS(301), + [anon_sym_LT_AMP] = ACTIONS(301), + [anon_sym_GT_AMP] = ACTIONS(301), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(305), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + }, + [926] = { + [sym__concat] = ACTIONS(3093), + [anon_sym_EQ] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(3095), + [sym_comment] = ACTIONS(53), + }, + [927] = { + [anon_sym_EQ] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(3095), + [sym_comment] = ACTIONS(53), + }, + [928] = { + [aux_sym_concatenation_repeat1] = STATE(928), + [sym__concat] = ACTIONS(2401), + [anon_sym_RBRACK] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + }, + [929] = { + [sym__concat] = ACTIONS(3097), + [anon_sym_EQ] = ACTIONS(3099), + [anon_sym_PLUS_EQ] = ACTIONS(3099), + [sym_comment] = ACTIONS(53), + }, + [930] = { + [anon_sym_EQ] = ACTIONS(3099), + [anon_sym_PLUS_EQ] = ACTIONS(3099), + [sym_comment] = ACTIONS(53), + }, + [931] = { + [sym_string] = STATE(1374), + [sym_simple_expansion] = STATE(1374), + [sym_string_expansion] = STATE(1374), + [sym_expansion] = STATE(1374), + [sym_command_substitution] = STATE(1374), + [sym_process_substitution] = STATE(1374), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(3101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LT_LPAREN] = ACTIONS(993), + [anon_sym_GT_LPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3101), + }, + [932] = { + [aux_sym_concatenation_repeat1] = STATE(1375), + [sym__concat] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(683), + [sym__special_characters] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(683), + [anon_sym_BQUOTE] = ACTIONS(683), + [anon_sym_LT_LPAREN] = ACTIONS(683), + [anon_sym_GT_LPAREN] = ACTIONS(683), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(683), + }, + [933] = { + [sym__concat] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(687), + [sym__special_characters] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(687), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(687), + }, + [934] = { + [anon_sym_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [935] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [936] = { + [sym__concat] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [sym__special_characters] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(719), + [anon_sym_LT_LPAREN] = ACTIONS(719), + [anon_sym_GT_LPAREN] = ACTIONS(719), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(719), + }, + [937] = { + [sym__concat] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(723), + [sym__special_characters] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(723), + [anon_sym_LT_LPAREN] = ACTIONS(723), + [anon_sym_GT_LPAREN] = ACTIONS(723), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(723), + }, + [938] = { + [sym__concat] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__special_characters] = ACTIONS(727), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(727), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(727), + [anon_sym_GT_LPAREN] = ACTIONS(727), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(727), + }, + [939] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(3107), + [sym_comment] = ACTIONS(53), + }, + [940] = { + [sym_concatenation] = STATE(1381), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1381), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3113), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3115), + [anon_sym_COLON] = ACTIONS(3111), + [anon_sym_COLON_QMARK] = ACTIONS(3111), + [anon_sym_COLON_DASH] = ACTIONS(3111), + [anon_sym_PERCENT] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [941] = { + [sym_subscript] = STATE(1385), + [sym_variable_name] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AT] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_0] = ACTIONS(3123), + [anon_sym__] = ACTIONS(3123), + }, + [942] = { + [sym_concatenation] = STATE(1388), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1388), + [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_EQ] = ACTIONS(3127), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3131), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_COLON_DASH] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [943] = { + [sym_concatenation] = STATE(1391), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1391), + [anon_sym_RBRACE] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3135), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3139), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_COLON_DASH] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [944] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3141), + [anon_sym_SEMI_SEMI] = ACTIONS(3143), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + }, + [945] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3141), + [anon_sym_SEMI_SEMI] = ACTIONS(3143), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + }, + [946] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1394), + [sym_c_style_for_statement] = STATE(1394), + [sym_while_statement] = STATE(1394), + [sym_if_statement] = STATE(1394), + [sym_case_statement] = STATE(1394), + [sym_function_definition] = STATE(1394), + [sym_subshell] = STATE(1394), + [sym_pipeline] = STATE(1394), + [sym_list] = STATE(1394), + [sym_negated_command] = STATE(1394), + [sym_test_command] = STATE(1394), + [sym_declaration_command] = STATE(1394), + [sym_unset_command] = STATE(1394), + [sym_command] = STATE(1394), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1395), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [947] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3147), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(3141), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + }, + [948] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3147), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3141), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + }, + [949] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1397), + [sym_c_style_for_statement] = STATE(1397), + [sym_while_statement] = STATE(1397), + [sym_if_statement] = STATE(1397), + [sym_case_statement] = STATE(1397), + [sym_function_definition] = STATE(1397), + [sym_subshell] = STATE(1397), + [sym_pipeline] = STATE(1397), + [sym_list] = STATE(1397), + [sym_negated_command] = STATE(1397), + [sym_test_command] = STATE(1397), + [sym_declaration_command] = STATE(1397), + [sym_unset_command] = STATE(1397), + [sym_command] = STATE(1397), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1398), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1420), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), + [anon_sym_while] = ACTIONS(263), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), + [anon_sym_function] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -31167,4937 +32578,11997 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [917] = { - [sym_file_redirect] = STATE(1423), - [sym_file_descriptor] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1339), - [anon_sym_PIPE_AMP] = ACTIONS(1339), - [anon_sym_AMP_AMP] = ACTIONS(1339), - [anon_sym_PIPE_PIPE] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_AMP_GT] = ACTIONS(3125), - [anon_sym_AMP_GT_GT] = ACTIONS(3127), - [anon_sym_LT_AMP] = ACTIONS(3127), - [anon_sym_GT_AMP] = ACTIONS(3127), - [sym_comment] = ACTIONS(53), - }, - [918] = { - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_RPAREN] = ACTIONS(1355), - [anon_sym_PIPE_AMP] = ACTIONS(1355), - [anon_sym_AMP_AMP] = ACTIONS(1355), - [anon_sym_PIPE_PIPE] = ACTIONS(1355), - [anon_sym_BQUOTE] = ACTIONS(1355), - [sym_comment] = ACTIONS(53), - }, - [919] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(997), - [sym_raw_string] = ACTIONS(995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), - [anon_sym_BQUOTE] = ACTIONS(995), - [anon_sym_LT_LPAREN] = ACTIONS(995), - [anon_sym_GT_LPAREN] = ACTIONS(995), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(997), - }, - [920] = { - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_SEMI_SEMI] = ACTIONS(3133), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3133), - }, - [921] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_SEMI_SEMI] = ACTIONS(3133), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3133), - }, - [922] = { - [sym_file_redirect] = STATE(1430), - [sym_heredoc_redirect] = STATE(1430), - [sym_herestring_redirect] = STATE(1430), - [aux_sym_while_statement_repeat1] = STATE(1430), - [sym_file_descriptor] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_RPAREN] = ACTIONS(1453), - [anon_sym_PIPE_AMP] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(3139), - [anon_sym_GT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_GT] = ACTIONS(3139), - [anon_sym_AMP_GT_GT] = ACTIONS(3141), - [anon_sym_LT_AMP] = ACTIONS(3141), - [anon_sym_GT_AMP] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_LT_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT_LT] = ACTIONS(3147), - [sym_comment] = ACTIONS(53), - }, - [923] = { - [sym_concatenation] = STATE(1431), - [sym_string] = STATE(1434), - [sym_array] = STATE(1431), - [sym_simple_expansion] = STATE(1434), - [sym_string_expansion] = STATE(1434), - [sym_expansion] = STATE(1434), - [sym_command_substitution] = STATE(1434), - [sym_process_substitution] = STATE(1434), - [sym__empty_value] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3151), - [sym__special_characters] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(3155), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), - [anon_sym_BQUOTE] = ACTIONS(859), - [anon_sym_LT_LPAREN] = ACTIONS(861), - [anon_sym_GT_LPAREN] = ACTIONS(861), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3155), - }, - [924] = { - [sym_string] = STATE(1435), - [sym_simple_expansion] = STATE(1435), - [sym_string_expansion] = STATE(1435), - [sym_expansion] = STATE(1435), - [sym_command_substitution] = STATE(1435), - [sym_process_substitution] = STATE(1435), - [sym__special_characters] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(3157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), - [anon_sym_BQUOTE] = ACTIONS(859), - [anon_sym_LT_LPAREN] = ACTIONS(861), - [anon_sym_GT_LPAREN] = ACTIONS(861), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3157), - }, - [925] = { - [aux_sym_concatenation_repeat1] = STATE(1436), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - }, - [926] = { - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - }, - [927] = { - [anon_sym_DQUOTE] = ACTIONS(3159), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [928] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(3159), - [anon_sym_DOLLAR] = ACTIONS(3161), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [929] = { - [sym__concat] = ACTIONS(767), - [sym_variable_name] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [sym__special_characters] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), - [anon_sym_BQUOTE] = ACTIONS(767), - [anon_sym_LT_LPAREN] = ACTIONS(767), - [anon_sym_GT_LPAREN] = ACTIONS(767), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), - [sym_word] = ACTIONS(769), - }, - [930] = { - [sym__concat] = ACTIONS(771), - [sym_variable_name] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [sym__special_characters] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(771), - [anon_sym_LT_LPAREN] = ACTIONS(771), - [anon_sym_GT_LPAREN] = ACTIONS(771), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), - [sym_word] = ACTIONS(773), - }, - [931] = { - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_PIPE_AMP] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [sym__special_characters] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LT_LPAREN] = ACTIONS(775), - [anon_sym_GT_LPAREN] = ACTIONS(775), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), - [sym_word] = ACTIONS(777), - }, - [932] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(3163), - [sym_comment] = ACTIONS(53), - }, - [933] = { - [sym_concatenation] = STATE(1442), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1442), - [anon_sym_RBRACE] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3167), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_DASH] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [934] = { - [sym_subscript] = STATE(1446), - [sym_variable_name] = ACTIONS(3173), - [anon_sym_DOLLAR] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_0] = ACTIONS(3179), - [anon_sym__] = ACTIONS(3179), - }, - [935] = { - [sym_concatenation] = STATE(1449), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1449), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_EQ] = ACTIONS(3183), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3183), - [anon_sym_COLON_QMARK] = ACTIONS(3183), - [anon_sym_COLON_DASH] = ACTIONS(3183), - [anon_sym_PERCENT] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [936] = { - [sym_concatenation] = STATE(1452), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1452), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3191), - [anon_sym_COLON_QMARK] = ACTIONS(3191), - [anon_sym_COLON_DASH] = ACTIONS(3191), - [anon_sym_PERCENT] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [937] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3197), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [938] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3197), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [939] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(3197), - [sym_comment] = ACTIONS(53), - }, - [940] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(3197), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [941] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [942] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [943] = { - [sym_variable_assignment] = STATE(476), - [sym_subscript] = STATE(477), - [sym_concatenation] = STATE(476), - [sym_string] = STATE(470), - [sym_simple_expansion] = STATE(470), - [sym_string_expansion] = STATE(470), - [sym_expansion] = STATE(470), - [sym_command_substitution] = STATE(470), - [sym_process_substitution] = STATE(470), - [aux_sym_declaration_command_repeat1] = STATE(943), - [sym_variable_name] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1625), - [anon_sym_PIPE_AMP] = ACTIONS(1625), - [anon_sym_AMP_AMP] = ACTIONS(1625), - [anon_sym_PIPE_PIPE] = ACTIONS(1625), - [sym__special_characters] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3207), - [anon_sym_DOLLAR] = ACTIONS(3210), - [sym_raw_string] = ACTIONS(3213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3219), - [anon_sym_BQUOTE] = ACTIONS(3222), - [anon_sym_LT_LPAREN] = ACTIONS(3225), - [anon_sym_GT_LPAREN] = ACTIONS(3225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3228), - [sym_word] = ACTIONS(3231), - }, - [944] = { - [sym_string] = STATE(1455), - [sym_simple_expansion] = STATE(1455), - [sym_string_expansion] = STATE(1455), - [sym_expansion] = STATE(1455), - [sym_command_substitution] = STATE(1455), - [sym_process_substitution] = STATE(1455), - [sym__special_characters] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(871), - [sym_raw_string] = ACTIONS(3234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LT_LPAREN] = ACTIONS(881), - [anon_sym_GT_LPAREN] = ACTIONS(881), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3234), - }, - [945] = { - [aux_sym_concatenation_repeat1] = STATE(1456), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - }, - [946] = { - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - }, - [947] = { - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [948] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_DOLLAR] = ACTIONS(3238), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [949] = { - [sym__concat] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [sym__special_characters] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), - [anon_sym_BQUOTE] = ACTIONS(767), - [anon_sym_LT_LPAREN] = ACTIONS(767), - [anon_sym_GT_LPAREN] = ACTIONS(767), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), - [sym_word] = ACTIONS(769), + [sym_word] = ACTIONS(277), }, [950] = { - [sym__concat] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [sym__special_characters] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(771), - [anon_sym_LT_LPAREN] = ACTIONS(771), - [anon_sym_GT_LPAREN] = ACTIONS(771), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), - [sym_word] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3151), + [anon_sym_SEMI_SEMI] = ACTIONS(3153), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_LF] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3153), }, [951] = { - [sym__concat] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_PIPE_AMP] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [sym__special_characters] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LT_LPAREN] = ACTIONS(775), - [anon_sym_GT_LPAREN] = ACTIONS(775), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), - [sym_word] = ACTIONS(777), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3151), + [anon_sym_SEMI_SEMI] = ACTIONS(3153), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_LF] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3153), }, [952] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(3240), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1401), + [sym_c_style_for_statement] = STATE(1401), + [sym_while_statement] = STATE(1401), + [sym_if_statement] = STATE(1401), + [sym_case_statement] = STATE(1401), + [sym_function_definition] = STATE(1401), + [sym_subshell] = STATE(1401), + [sym_pipeline] = STATE(1401), + [sym_list] = STATE(1401), + [sym_negated_command] = STATE(1401), + [sym_test_command] = STATE(1401), + [sym_declaration_command] = STATE(1401), + [sym_unset_command] = STATE(1401), + [sym_command] = STATE(1401), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1402), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), }, [953] = { - [sym_concatenation] = STATE(1462), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1462), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_EQ] = ACTIONS(3244), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3244), - [anon_sym_COLON_QMARK] = ACTIONS(3244), - [anon_sym_COLON_DASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(3157), + [sym_variable_name] = ACTIONS(3157), + [anon_sym_esac] = ACTIONS(3159), + [anon_sym_PIPE] = ACTIONS(3159), + [anon_sym_RPAREN] = ACTIONS(3159), + [anon_sym_SEMI_SEMI] = ACTIONS(3159), + [anon_sym_PIPE_AMP] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_GT] = ACTIONS(3159), + [anon_sym_GT_GT] = ACTIONS(3159), + [anon_sym_AMP_GT] = ACTIONS(3159), + [anon_sym_AMP_GT_GT] = ACTIONS(3159), + [anon_sym_LT_AMP] = ACTIONS(3159), + [anon_sym_GT_AMP] = ACTIONS(3159), + [sym__special_characters] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_DOLLAR] = ACTIONS(3159), + [sym_raw_string] = ACTIONS(3159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3159), + [anon_sym_BQUOTE] = ACTIONS(3159), + [anon_sym_LT_LPAREN] = ACTIONS(3159), + [anon_sym_GT_LPAREN] = ACTIONS(3159), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_LF] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), }, [954] = { - [sym_subscript] = STATE(1466), - [sym_variable_name] = ACTIONS(3250), - [anon_sym_DOLLAR] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), + [sym_concatenation] = STATE(954), + [sym_string] = STATE(505), + [sym_simple_expansion] = STATE(505), + [sym_string_expansion] = STATE(505), + [sym_expansion] = STATE(505), + [sym_command_substitution] = STATE(505), + [sym_process_substitution] = STATE(505), + [aux_sym_for_statement_repeat1] = STATE(954), + [anon_sym_RPAREN] = ACTIONS(3161), + [sym__special_characters] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3166), + [anon_sym_DOLLAR] = ACTIONS(3169), + [sym_raw_string] = ACTIONS(3172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3178), + [anon_sym_BQUOTE] = ACTIONS(3181), + [anon_sym_LT_LPAREN] = ACTIONS(3184), + [anon_sym_GT_LPAREN] = ACTIONS(3184), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_QMARK] = ACTIONS(3252), - [anon_sym_0] = ACTIONS(3256), - [anon_sym__] = ACTIONS(3256), + [sym_word] = ACTIONS(3172), }, [955] = { - [sym_concatenation] = STATE(1469), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1469), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_EQ] = ACTIONS(3260), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3260), - [anon_sym_COLON_QMARK] = ACTIONS(3260), - [anon_sym_COLON_DASH] = ACTIONS(3260), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1648), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, [956] = { - [sym_concatenation] = STATE(1472), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1472), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_EQ] = ACTIONS(3268), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_DASH] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [aux_sym_concatenation_repeat1] = STATE(956), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(3187), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, [957] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3274), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(1655), + [sym__concat] = ACTIONS(1655), + [sym_variable_name] = ACTIONS(1655), + [anon_sym_esac] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [anon_sym_PIPE_AMP] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym_AMP_GT] = ACTIONS(1657), + [anon_sym_AMP_GT_GT] = ACTIONS(1657), + [anon_sym_LT_AMP] = ACTIONS(1657), + [anon_sym_GT_AMP] = ACTIONS(1657), + [sym__special_characters] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [anon_sym_LT_LPAREN] = ACTIONS(1657), + [anon_sym_GT_LPAREN] = ACTIONS(1657), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), }, [958] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3274), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(3190), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, [959] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_concatenation] = STATE(1407), + [sym_string] = STATE(1406), + [sym_simple_expansion] = STATE(1406), + [sym_string_expansion] = STATE(1406), + [sym_expansion] = STATE(1406), + [sym_command_substitution] = STATE(1406), + [sym_process_substitution] = STATE(1406), + [anon_sym_RBRACE] = ACTIONS(3192), + [sym__special_characters] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3196), }, [960] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(3274), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym_file_descriptor] = ACTIONS(1748), + [sym__concat] = ACTIONS(1748), + [sym_variable_name] = ACTIONS(1748), + [anon_sym_esac] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_SEMI_SEMI] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(1750), + [anon_sym_AMP_GT] = ACTIONS(1750), + [anon_sym_AMP_GT_GT] = ACTIONS(1750), + [anon_sym_LT_AMP] = ACTIONS(1750), + [anon_sym_GT_AMP] = ACTIONS(1750), + [sym__special_characters] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), + [anon_sym_BQUOTE] = ACTIONS(1750), + [anon_sym_LT_LPAREN] = ACTIONS(1750), + [anon_sym_GT_LPAREN] = ACTIONS(1750), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LF] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1750), }, [961] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3276), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3198), }, [962] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3276), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [963] = { - [sym_concatenation] = STATE(963), - [sym_string] = STATE(482), - [sym_simple_expansion] = STATE(482), - [sym_string_expansion] = STATE(482), - [sym_expansion] = STATE(482), - [sym_command_substitution] = STATE(482), - [sym_process_substitution] = STATE(482), - [aux_sym_unset_command_repeat1] = STATE(963), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__special_characters] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_DOLLAR] = ACTIONS(3284), - [sym_raw_string] = ACTIONS(3287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3296), - [anon_sym_LT_LPAREN] = ACTIONS(3299), - [anon_sym_GT_LPAREN] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(3202), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3302), - [sym_word] = ACTIONS(3305), }, [964] = { - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1754), - [anon_sym_LT_LT_LT] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1756), + [sym_concatenation] = STATE(1413), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1413), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3206), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_COLON] = ACTIONS(3206), + [anon_sym_COLON_QMARK] = ACTIONS(3206), + [anon_sym_COLON_DASH] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [965] = { - [aux_sym_concatenation_repeat1] = STATE(965), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(3308), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1754), - [anon_sym_LT_LT_LT] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1756), + [sym_concatenation] = STATE(1416), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1416), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_COLON] = ACTIONS(3214), + [anon_sym_COLON_QMARK] = ACTIONS(3214), + [anon_sym_COLON_DASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [966] = { - [sym__simple_heredoc_body] = ACTIONS(1761), - [sym__heredoc_body_beginning] = ACTIONS(1761), - [sym_file_descriptor] = ACTIONS(1761), - [sym__concat] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_PIPE_AMP] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1761), - [anon_sym_AMP_GT] = ACTIONS(1763), - [anon_sym_AMP_GT_GT] = ACTIONS(1761), - [anon_sym_LT_AMP] = ACTIONS(1761), - [anon_sym_GT_AMP] = ACTIONS(1761), - [anon_sym_LT_LT] = ACTIONS(1763), - [anon_sym_LT_LT_DASH] = ACTIONS(1761), - [anon_sym_LT_LT_LT] = ACTIONS(1761), - [sym__special_characters] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), - [anon_sym_BQUOTE] = ACTIONS(1761), - [anon_sym_LT_LPAREN] = ACTIONS(1761), - [anon_sym_GT_LPAREN] = ACTIONS(1761), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1763), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1418), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_EQ] = ACTIONS(3220), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_COLON] = ACTIONS(3220), + [anon_sym_COLON_QMARK] = ACTIONS(3220), + [anon_sym_COLON_DASH] = ACTIONS(3220), + [anon_sym_PERCENT] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [967] = { - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [sym_file_descriptor] = ACTIONS(1816), + [sym__concat] = ACTIONS(1816), + [sym_variable_name] = ACTIONS(1816), + [anon_sym_esac] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_GT] = ACTIONS(1818), + [anon_sym_GT_GT] = ACTIONS(1818), + [anon_sym_AMP_GT] = ACTIONS(1818), + [anon_sym_AMP_GT_GT] = ACTIONS(1818), + [anon_sym_LT_AMP] = ACTIONS(1818), + [anon_sym_GT_AMP] = ACTIONS(1818), + [sym__special_characters] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [sym_word] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), }, [968] = { - [sym_concatenation] = STATE(1479), - [sym_string] = STATE(1478), - [sym_simple_expansion] = STATE(1478), - [sym_string_expansion] = STATE(1478), - [sym_expansion] = STATE(1478), - [sym_command_substitution] = STATE(1478), - [sym_process_substitution] = STATE(1478), - [anon_sym_RBRACE] = ACTIONS(3313), - [sym__special_characters] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(3317), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3317), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3226), }, [969] = { - [sym__simple_heredoc_body] = ACTIONS(1846), - [sym__heredoc_body_beginning] = ACTIONS(1846), - [sym_file_descriptor] = ACTIONS(1846), - [sym__concat] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_EQ_TILDE] = ACTIONS(1848), - [anon_sym_EQ_EQ] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_AMP_GT] = ACTIONS(1848), - [anon_sym_AMP_GT_GT] = ACTIONS(1846), - [anon_sym_LT_AMP] = ACTIONS(1846), - [anon_sym_GT_AMP] = ACTIONS(1846), - [anon_sym_LT_LT] = ACTIONS(1848), - [anon_sym_LT_LT_DASH] = ACTIONS(1846), - [anon_sym_LT_LT_LT] = ACTIONS(1846), - [sym__special_characters] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_LT_LPAREN] = ACTIONS(1846), - [anon_sym_GT_LPAREN] = ACTIONS(1846), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1848), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [970] = { + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [sym_variable_name] = ACTIONS(1824), + [anon_sym_esac] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_GT_GT] = ACTIONS(1826), + [anon_sym_AMP_GT] = ACTIONS(1826), + [anon_sym_AMP_GT_GT] = ACTIONS(1826), + [anon_sym_LT_AMP] = ACTIONS(1826), + [anon_sym_GT_AMP] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3319), + [sym_word] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), }, [971] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(3230), }, [972] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(3323), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [973] = { - [sym_concatenation] = STATE(1485), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1485), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_EQ] = ACTIONS(3327), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3329), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_COLON] = ACTIONS(3327), - [anon_sym_COLON_QMARK] = ACTIONS(3327), - [anon_sym_COLON_DASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(1830), + [sym__concat] = ACTIONS(1830), + [sym_variable_name] = ACTIONS(1830), + [anon_sym_esac] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1832), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1832), }, [974] = { - [sym_concatenation] = STATE(1488), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1488), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_EQ] = ACTIONS(3335), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3337), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_COLON] = ACTIONS(3335), - [anon_sym_COLON_QMARK] = ACTIONS(3335), - [anon_sym_COLON_DASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [975] = { - [sym_concatenation] = STATE(1490), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1490), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_EQ] = ACTIONS(3341), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_COLON_QMARK] = ACTIONS(3341), - [anon_sym_COLON_DASH] = ACTIONS(3341), - [anon_sym_PERCENT] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3234), + [anon_sym_SEMI_SEMI] = ACTIONS(3236), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_LF] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3236), }, [976] = { - [sym__simple_heredoc_body] = ACTIONS(1914), - [sym__heredoc_body_beginning] = ACTIONS(1914), - [sym_file_descriptor] = ACTIONS(1914), - [sym__concat] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_PIPE_AMP] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_EQ_TILDE] = ACTIONS(1916), - [anon_sym_EQ_EQ] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_GT_GT] = ACTIONS(1914), - [anon_sym_AMP_GT] = ACTIONS(1916), - [anon_sym_AMP_GT_GT] = ACTIONS(1914), - [anon_sym_LT_AMP] = ACTIONS(1914), - [anon_sym_GT_AMP] = ACTIONS(1914), - [anon_sym_LT_LT] = ACTIONS(1916), - [anon_sym_LT_LT_DASH] = ACTIONS(1914), - [anon_sym_LT_LT_LT] = ACTIONS(1914), - [sym__special_characters] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), - [anon_sym_BQUOTE] = ACTIONS(1914), - [anon_sym_LT_LPAREN] = ACTIONS(1914), - [anon_sym_GT_LPAREN] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3234), + [anon_sym_SEMI_SEMI] = ACTIONS(3236), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_LF] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3236), }, [977] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3347), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3232), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [978] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3240), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(3234), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3240), }, [979] = { - [sym__simple_heredoc_body] = ACTIONS(1922), - [sym__heredoc_body_beginning] = ACTIONS(1922), - [sym_file_descriptor] = ACTIONS(1922), - [sym__concat] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1922), - [anon_sym_PIPE_AMP] = ACTIONS(1922), - [anon_sym_AMP_AMP] = ACTIONS(1922), - [anon_sym_PIPE_PIPE] = ACTIONS(1922), - [anon_sym_EQ_TILDE] = ACTIONS(1924), - [anon_sym_EQ_EQ] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_GT_GT] = ACTIONS(1922), - [anon_sym_AMP_GT] = ACTIONS(1924), - [anon_sym_AMP_GT_GT] = ACTIONS(1922), - [anon_sym_LT_AMP] = ACTIONS(1922), - [anon_sym_GT_AMP] = ACTIONS(1922), - [anon_sym_LT_LT] = ACTIONS(1924), - [anon_sym_LT_LT_DASH] = ACTIONS(1922), - [anon_sym_LT_LT_LT] = ACTIONS(1922), - [sym__special_characters] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), - [anon_sym_BQUOTE] = ACTIONS(1922), - [anon_sym_LT_LPAREN] = ACTIONS(1922), - [anon_sym_GT_LPAREN] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3240), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3234), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3240), }, [980] = { + [sym_file_descriptor] = ACTIONS(1864), + [sym__concat] = ACTIONS(1864), + [sym_variable_name] = ACTIONS(1864), + [anon_sym_esac] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [anon_sym_PIPE_AMP] = ACTIONS(1866), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_GT] = ACTIONS(1866), + [anon_sym_AMP_GT] = ACTIONS(1866), + [anon_sym_AMP_GT_GT] = ACTIONS(1866), + [anon_sym_LT_AMP] = ACTIONS(1866), + [anon_sym_GT_AMP] = ACTIONS(1866), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), + [anon_sym_BQUOTE] = ACTIONS(1866), + [anon_sym_LT_LPAREN] = ACTIONS(1866), + [anon_sym_GT_LPAREN] = ACTIONS(1866), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3351), + [sym_word] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), }, [981] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [982] = { - [sym__simple_heredoc_body] = ACTIONS(2066), - [sym__heredoc_body_beginning] = ACTIONS(2066), - [sym_file_descriptor] = ACTIONS(2066), - [sym__concat] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_EQ_TILDE] = ACTIONS(2068), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2066), - [anon_sym_LT_AMP] = ACTIONS(2066), - [anon_sym_GT_AMP] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_LT_LT_DASH] = ACTIONS(2066), - [anon_sym_LT_LT_LT] = ACTIONS(2066), - [sym__special_characters] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2066), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [anon_sym_LT_LPAREN] = ACTIONS(2066), - [anon_sym_GT_LPAREN] = ACTIONS(2066), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_SEMI_SEMI] = ACTIONS(3248), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), }, [983] = { - [sym__simple_heredoc_body] = ACTIONS(2132), - [sym__heredoc_body_beginning] = ACTIONS(2132), - [sym_file_descriptor] = ACTIONS(2132), - [sym__concat] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_PIPE_AMP] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [anon_sym_EQ_TILDE] = ACTIONS(2134), - [anon_sym_EQ_EQ] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2134), - [anon_sym_GT_GT] = ACTIONS(2132), - [anon_sym_AMP_GT] = ACTIONS(2134), - [anon_sym_AMP_GT_GT] = ACTIONS(2132), - [anon_sym_LT_AMP] = ACTIONS(2132), - [anon_sym_GT_AMP] = ACTIONS(2132), - [anon_sym_LT_LT] = ACTIONS(2134), - [anon_sym_LT_LT_DASH] = ACTIONS(2132), - [anon_sym_LT_LT_LT] = ACTIONS(2132), - [sym__special_characters] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2132), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_LT_LPAREN] = ACTIONS(2132), - [anon_sym_GT_LPAREN] = ACTIONS(2132), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2134), + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_SEMI_SEMI] = ACTIONS(3248), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), }, [984] = { - [sym_compound_statement] = STATE(1494), - [anon_sym_LBRACE] = ACTIONS(1960), + [sym_do_group] = STATE(1428), + [sym_compound_statement] = STATE(1428), + [anon_sym_do] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(3252), [sym_comment] = ACTIONS(53), }, [985] = { - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2138), - [anon_sym_PIPE_AMP] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2138), - [anon_sym_PIPE_PIPE] = ACTIONS(2138), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_comment] = ACTIONS(53), - }, - [986] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2138), - [anon_sym_PIPE_AMP] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2138), - [anon_sym_PIPE_PIPE] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [987] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2142), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [sym_comment] = ACTIONS(53), - }, - [988] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(2142), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [989] = { - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2146), - [anon_sym_PIPE_AMP] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_PIPE_PIPE] = ACTIONS(2146), - [anon_sym_BQUOTE] = ACTIONS(2146), - [sym_comment] = ACTIONS(53), - }, - [990] = { - [sym_simple_expansion] = STATE(1043), - [sym_expansion] = STATE(1043), - [aux_sym_heredoc_body_repeat1] = STATE(1043), - [sym__heredoc_body_middle] = ACTIONS(2164), - [sym__heredoc_body_end] = ACTIONS(3353), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1009), - [sym_comment] = ACTIONS(53), - }, - [991] = { - [sym_concatenation] = STATE(1498), - [sym_string] = STATE(1497), - [sym_simple_expansion] = STATE(1497), - [sym_string_expansion] = STATE(1497), - [sym_expansion] = STATE(1497), - [sym_command_substitution] = STATE(1497), - [sym_process_substitution] = STATE(1497), - [sym__special_characters] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3357), - }, - [992] = { - [aux_sym_concatenation_repeat1] = STATE(490), - [sym__simple_heredoc_body] = ACTIONS(2172), - [sym__heredoc_body_beginning] = ACTIONS(2172), - [sym_file_descriptor] = ACTIONS(2172), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_PIPE_AMP] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(2172), - [anon_sym_PIPE_PIPE] = ACTIONS(2172), - [anon_sym_EQ_TILDE] = ACTIONS(2174), - [anon_sym_EQ_EQ] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_GT] = ACTIONS(2174), - [anon_sym_GT_GT] = ACTIONS(2172), - [anon_sym_AMP_GT] = ACTIONS(2174), - [anon_sym_AMP_GT_GT] = ACTIONS(2172), - [anon_sym_LT_AMP] = ACTIONS(2172), - [anon_sym_GT_AMP] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(2174), - [anon_sym_LT_LT_DASH] = ACTIONS(2172), - [anon_sym_LT_LT_LT] = ACTIONS(2172), - [sym__special_characters] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2174), - [sym_raw_string] = ACTIONS(2172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2172), - [anon_sym_BQUOTE] = ACTIONS(2172), - [anon_sym_LT_LPAREN] = ACTIONS(2172), - [anon_sym_GT_LPAREN] = ACTIONS(2172), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2174), - }, - [993] = { - [aux_sym_concatenation_repeat1] = STATE(490), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2176), - [anon_sym_PIPE_AMP] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2176), - [anon_sym_PIPE_PIPE] = ACTIONS(2176), - [anon_sym_EQ_TILDE] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2176), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2176), - [anon_sym_LT_AMP] = ACTIONS(2176), - [anon_sym_GT_AMP] = ACTIONS(2176), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2176), - [anon_sym_LT_LT_LT] = ACTIONS(2176), - [sym__special_characters] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), - [anon_sym_BQUOTE] = ACTIONS(2176), - [anon_sym_LT_LPAREN] = ACTIONS(2176), - [anon_sym_GT_LPAREN] = ACTIONS(2176), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2178), - }, - [994] = { - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2176), - [anon_sym_PIPE_AMP] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2176), - [anon_sym_PIPE_PIPE] = ACTIONS(2176), - [anon_sym_EQ_TILDE] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2176), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2176), - [anon_sym_LT_AMP] = ACTIONS(2176), - [anon_sym_GT_AMP] = ACTIONS(2176), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2176), - [anon_sym_LT_LT_LT] = ACTIONS(2176), - [sym__special_characters] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), - [anon_sym_BQUOTE] = ACTIONS(2176), - [anon_sym_LT_LPAREN] = ACTIONS(2176), - [anon_sym_GT_LPAREN] = ACTIONS(2176), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2178), - }, - [995] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__simple_heredoc_body] = ACTIONS(697), - [sym__heredoc_body_beginning] = ACTIONS(697), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(697), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(697), - [anon_sym_LT_AMP] = ACTIONS(697), - [anon_sym_GT_AMP] = ACTIONS(697), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - }, - [996] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__simple_heredoc_body] = ACTIONS(715), - [sym__heredoc_body_beginning] = ACTIONS(715), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(715), - [anon_sym_LT_LT_LT] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - }, - [997] = { - [sym__simple_heredoc_body] = ACTIONS(715), - [sym__heredoc_body_beginning] = ACTIONS(715), - [sym_file_descriptor] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(715), - [anon_sym_LT_LT_LT] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - }, - [998] = { - [sym__simple_heredoc_body] = ACTIONS(2180), - [sym__heredoc_body_beginning] = ACTIONS(2180), - [sym_file_descriptor] = ACTIONS(2180), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_RPAREN] = ACTIONS(2180), - [anon_sym_PIPE_AMP] = ACTIONS(2180), - [anon_sym_AMP_AMP] = ACTIONS(2180), - [anon_sym_PIPE_PIPE] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2182), - [anon_sym_GT_GT] = ACTIONS(2180), - [anon_sym_AMP_GT] = ACTIONS(2182), - [anon_sym_AMP_GT_GT] = ACTIONS(2180), - [anon_sym_LT_AMP] = ACTIONS(2180), - [anon_sym_GT_AMP] = ACTIONS(2180), - [anon_sym_LT_LT] = ACTIONS(2182), - [anon_sym_LT_LT_DASH] = ACTIONS(2180), - [anon_sym_LT_LT_LT] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), - [sym_comment] = ACTIONS(53), - }, - [999] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__simple_heredoc_body] = ACTIONS(2184), - [sym__heredoc_body_beginning] = ACTIONS(2184), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2184), - [anon_sym_PIPE_AMP] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2184), - [anon_sym_LT_AMP] = ACTIONS(2184), - [anon_sym_GT_AMP] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2184), - [anon_sym_LT_LT_LT] = ACTIONS(2184), - [sym_comment] = ACTIONS(53), - }, - [1000] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__simple_heredoc_body] = ACTIONS(2188), - [sym__heredoc_body_beginning] = ACTIONS(2188), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2188), - [anon_sym_PIPE_AMP] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2188), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2188), - [anon_sym_LT_AMP] = ACTIONS(2188), - [anon_sym_GT_AMP] = ACTIONS(2188), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2188), - [anon_sym_LT_LT_LT] = ACTIONS(2188), - [sym_comment] = ACTIONS(53), - }, - [1001] = { - [sym__simple_heredoc_body] = ACTIONS(2188), - [sym__heredoc_body_beginning] = ACTIONS(2188), - [sym_file_descriptor] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2188), - [anon_sym_PIPE_AMP] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2188), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2188), - [anon_sym_LT_AMP] = ACTIONS(2188), - [anon_sym_GT_AMP] = ACTIONS(2188), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2188), - [anon_sym_LT_LT_LT] = ACTIONS(2188), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_comment] = ACTIONS(53), - }, - [1002] = { - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_PIPE_AMP] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_comment] = ACTIONS(53), - }, - [1003] = { - [sym_file_redirect] = STATE(1003), - [sym_heredoc_redirect] = STATE(1003), - [sym_herestring_redirect] = STATE(1003), - [aux_sym_while_statement_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(2196), - [sym__heredoc_body_beginning] = ACTIONS(2196), - [sym_file_descriptor] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_GT] = ACTIONS(3362), - [anon_sym_GT_GT] = ACTIONS(3365), - [anon_sym_AMP_GT] = ACTIONS(3362), - [anon_sym_AMP_GT_GT] = ACTIONS(3365), - [anon_sym_LT_AMP] = ACTIONS(3365), - [anon_sym_GT_AMP] = ACTIONS(3365), - [anon_sym_LT_LT] = ACTIONS(3368), - [anon_sym_LT_LT_DASH] = ACTIONS(3371), - [anon_sym_LT_LT_LT] = ACTIONS(3374), - [sym_comment] = ACTIONS(53), - }, - [1004] = { - [sym_file_redirect] = STATE(1003), - [sym_heredoc_redirect] = STATE(1003), - [sym_heredoc_body] = STATE(1500), - [sym_herestring_redirect] = STATE(1003), - [aux_sym_while_statement_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_PIPE_AMP] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(937), - [sym_comment] = ACTIONS(53), - }, - [1005] = { - [sym_concatenation] = STATE(522), - [sym_string] = STATE(520), - [sym_simple_expansion] = STATE(520), - [sym_string_expansion] = STATE(520), - [sym_expansion] = STATE(520), - [sym_command_substitution] = STATE(520), - [sym_process_substitution] = STATE(520), - [aux_sym_command_repeat2] = STATE(1005), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2176), - [anon_sym_PIPE_AMP] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2176), - [anon_sym_PIPE_PIPE] = ACTIONS(2176), - [anon_sym_EQ_TILDE] = ACTIONS(3377), - [anon_sym_EQ_EQ] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2176), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2176), - [anon_sym_LT_AMP] = ACTIONS(2176), - [anon_sym_GT_AMP] = ACTIONS(2176), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2176), - [anon_sym_LT_LT_LT] = ACTIONS(2176), - [sym__special_characters] = ACTIONS(3380), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_DOLLAR] = ACTIONS(3386), - [sym_raw_string] = ACTIONS(3389), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3395), - [anon_sym_BQUOTE] = ACTIONS(3398), - [anon_sym_LT_LPAREN] = ACTIONS(3401), - [anon_sym_GT_LPAREN] = ACTIONS(3401), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3404), - }, - [1006] = { - [sym_file_redirect] = STATE(1501), - [sym_heredoc_redirect] = STATE(1501), - [sym_heredoc_body] = STATE(1500), - [sym_herestring_redirect] = STATE(1501), - [sym_concatenation] = STATE(522), - [sym_string] = STATE(520), - [sym_simple_expansion] = STATE(520), - [sym_string_expansion] = STATE(520), - [sym_expansion] = STATE(520), - [sym_command_substitution] = STATE(520), - [sym_process_substitution] = STATE(520), - [aux_sym_while_statement_repeat1] = STATE(1501), - [aux_sym_command_repeat2] = STATE(1005), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_PIPE_AMP] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(937), - [sym__special_characters] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(943), - }, - [1007] = { - [aux_sym_concatenation_repeat1] = STATE(1502), - [sym_file_descriptor] = ACTIONS(1173), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_PIPE_AMP] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1173), - [anon_sym_PIPE_PIPE] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_AMP_GT] = ACTIONS(1177), - [anon_sym_AMP_GT_GT] = ACTIONS(1173), - [anon_sym_LT_AMP] = ACTIONS(1173), - [anon_sym_GT_AMP] = ACTIONS(1173), - [sym__special_characters] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), - [anon_sym_BQUOTE] = ACTIONS(1173), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1173), - }, - [1008] = { - [aux_sym_concatenation_repeat1] = STATE(1502), - [sym_file_descriptor] = ACTIONS(1151), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1151), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1153), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), - [anon_sym_BQUOTE] = ACTIONS(1151), - [anon_sym_LT_LPAREN] = ACTIONS(1151), - [anon_sym_GT_LPAREN] = ACTIONS(1151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1151), - }, - [1009] = { - [sym_file_redirect] = STATE(1503), - [sym_heredoc_redirect] = STATE(1503), - [sym_heredoc_body] = STATE(1408), - [sym_herestring_redirect] = STATE(1503), - [aux_sym_while_statement_repeat1] = STATE(1503), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_PIPE_AMP] = ACTIONS(1265), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_PIPE_PIPE] = ACTIONS(1265), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(977), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [anon_sym_BQUOTE] = ACTIONS(1265), - [sym_comment] = ACTIONS(53), - }, - [1010] = { - [anon_sym_RPAREN] = ACTIONS(3407), - [sym_comment] = ACTIONS(53), - }, - [1011] = { - [sym_file_redirect] = STATE(1423), - [sym_file_descriptor] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1339), - [anon_sym_AMP_AMP] = ACTIONS(1339), - [anon_sym_PIPE_PIPE] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_AMP_GT] = ACTIONS(3411), - [anon_sym_AMP_GT_GT] = ACTIONS(3413), - [anon_sym_LT_AMP] = ACTIONS(3413), - [anon_sym_GT_AMP] = ACTIONS(3413), - [anon_sym_BQUOTE] = ACTIONS(1339), - [sym_comment] = ACTIONS(53), - }, - [1012] = { - [sym_file_redirect] = STATE(1510), - [sym_heredoc_redirect] = STATE(1510), - [sym_herestring_redirect] = STATE(1510), - [aux_sym_while_statement_repeat1] = STATE(1510), - [sym_file_descriptor] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_PIPE_AMP] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_GT_GT] = ACTIONS(3419), - [anon_sym_AMP_GT] = ACTIONS(3417), - [anon_sym_AMP_GT_GT] = ACTIONS(3419), - [anon_sym_LT_AMP] = ACTIONS(3419), - [anon_sym_GT_AMP] = ACTIONS(3419), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_LT_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT_LT] = ACTIONS(3421), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_comment] = ACTIONS(53), - }, - [1013] = { - [sym_concatenation] = STATE(1431), - [sym_string] = STATE(1512), - [sym_array] = STATE(1431), - [sym_simple_expansion] = STATE(1512), - [sym_string_expansion] = STATE(1512), - [sym_expansion] = STATE(1512), - [sym_command_substitution] = STATE(1512), - [sym_process_substitution] = STATE(1512), - [sym__empty_value] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3151), - [sym__special_characters] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(3425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(857), - [anon_sym_BQUOTE] = ACTIONS(859), - [anon_sym_LT_LPAREN] = ACTIONS(861), - [anon_sym_GT_LPAREN] = ACTIONS(861), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3425), - }, - [1014] = { - [aux_sym_concatenation_repeat1] = STATE(1513), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - }, - [1015] = { - [sym_variable_assignment] = STATE(476), - [sym_subscript] = STATE(534), - [sym_concatenation] = STATE(476), - [sym_string] = STATE(533), - [sym_simple_expansion] = STATE(533), - [sym_string_expansion] = STATE(533), - [sym_expansion] = STATE(533), - [sym_command_substitution] = STATE(533), - [sym_process_substitution] = STATE(533), - [aux_sym_declaration_command_repeat1] = STATE(1015), - [sym_variable_name] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_PIPE_AMP] = ACTIONS(1625), - [anon_sym_AMP_AMP] = ACTIONS(1625), - [anon_sym_PIPE_PIPE] = ACTIONS(1625), - [sym__special_characters] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3207), - [anon_sym_DOLLAR] = ACTIONS(3210), - [sym_raw_string] = ACTIONS(3433), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3219), - [anon_sym_BQUOTE] = ACTIONS(3222), - [anon_sym_LT_LPAREN] = ACTIONS(3225), - [anon_sym_GT_LPAREN] = ACTIONS(3225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3228), - [sym_word] = ACTIONS(3436), - }, - [1016] = { - [aux_sym_concatenation_repeat1] = STATE(1514), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - }, - [1017] = { - [sym_concatenation] = STATE(1017), - [sym_string] = STATE(537), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), - [sym_process_substitution] = STATE(537), - [aux_sym_unset_command_repeat1] = STATE(1017), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__special_characters] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_DOLLAR] = ACTIONS(3284), - [sym_raw_string] = ACTIONS(3442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3296), - [anon_sym_LT_LPAREN] = ACTIONS(3299), - [anon_sym_GT_LPAREN] = ACTIONS(3299), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3302), - [sym_word] = ACTIONS(3445), - }, - [1018] = { - [aux_sym_concatenation_repeat1] = STATE(1018), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(3308), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1754), - [anon_sym_LT_LT_LT] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1756), - }, - [1019] = { - [sym_compound_statement] = STATE(1515), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(53), - }, - [1020] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_PIPE_AMP] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2138), - [anon_sym_PIPE_PIPE] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(2138), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1021] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_BQUOTE] = ACTIONS(2142), - [sym_comment] = ACTIONS(53), - }, - [1022] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1023] = { - [sym_concatenation] = STATE(1498), - [sym_string] = STATE(1517), - [sym_simple_expansion] = STATE(1517), - [sym_string_expansion] = STATE(1517), - [sym_expansion] = STATE(1517), - [sym_command_substitution] = STATE(1517), - [sym_process_substitution] = STATE(1517), - [sym__special_characters] = ACTIONS(3448), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(3450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3450), - }, - [1024] = { - [aux_sym_concatenation_repeat1] = STATE(539), - [sym__simple_heredoc_body] = ACTIONS(2172), - [sym__heredoc_body_beginning] = ACTIONS(2172), - [sym_file_descriptor] = ACTIONS(2172), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_PIPE_AMP] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(2172), - [anon_sym_PIPE_PIPE] = ACTIONS(2172), - [anon_sym_EQ_TILDE] = ACTIONS(2174), - [anon_sym_EQ_EQ] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_GT] = ACTIONS(2174), - [anon_sym_GT_GT] = ACTIONS(2172), - [anon_sym_AMP_GT] = ACTIONS(2174), - [anon_sym_AMP_GT_GT] = ACTIONS(2172), - [anon_sym_LT_AMP] = ACTIONS(2172), - [anon_sym_GT_AMP] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(2174), - [anon_sym_LT_LT_DASH] = ACTIONS(2172), - [anon_sym_LT_LT_LT] = ACTIONS(2172), - [sym__special_characters] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2174), - [sym_raw_string] = ACTIONS(2172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2172), - [anon_sym_BQUOTE] = ACTIONS(2172), - [anon_sym_LT_LPAREN] = ACTIONS(2172), - [anon_sym_GT_LPAREN] = ACTIONS(2172), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2174), - }, - [1025] = { - [aux_sym_concatenation_repeat1] = STATE(539), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2176), - [anon_sym_PIPE_PIPE] = ACTIONS(2176), - [anon_sym_EQ_TILDE] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2176), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2176), - [anon_sym_LT_AMP] = ACTIONS(2176), - [anon_sym_GT_AMP] = ACTIONS(2176), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2176), - [anon_sym_LT_LT_LT] = ACTIONS(2176), - [sym__special_characters] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), - [anon_sym_BQUOTE] = ACTIONS(2176), - [anon_sym_LT_LPAREN] = ACTIONS(2176), - [anon_sym_GT_LPAREN] = ACTIONS(2176), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2178), - }, - [1026] = { - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__simple_heredoc_body] = ACTIONS(697), - [sym__heredoc_body_beginning] = ACTIONS(697), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(697), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(697), - [anon_sym_LT_AMP] = ACTIONS(697), - [anon_sym_GT_AMP] = ACTIONS(697), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - }, - [1027] = { - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__simple_heredoc_body] = ACTIONS(715), - [sym__heredoc_body_beginning] = ACTIONS(715), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(715), - [anon_sym_LT_LT_LT] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - }, - [1028] = { - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__simple_heredoc_body] = ACTIONS(2184), - [sym__heredoc_body_beginning] = ACTIONS(2184), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2184), - [anon_sym_LT_AMP] = ACTIONS(2184), - [anon_sym_GT_AMP] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2184), - [anon_sym_LT_LT_LT] = ACTIONS(2184), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_comment] = ACTIONS(53), - }, - [1029] = { - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__simple_heredoc_body] = ACTIONS(2188), - [sym__heredoc_body_beginning] = ACTIONS(2188), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2188), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2188), - [anon_sym_LT_AMP] = ACTIONS(2188), - [anon_sym_GT_AMP] = ACTIONS(2188), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2188), - [anon_sym_LT_LT_LT] = ACTIONS(2188), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_comment] = ACTIONS(53), - }, - [1030] = { - [sym_file_redirect] = STATE(1030), - [sym_heredoc_redirect] = STATE(1030), - [sym_herestring_redirect] = STATE(1030), - [aux_sym_while_statement_repeat1] = STATE(1030), - [sym__simple_heredoc_body] = ACTIONS(2196), - [sym__heredoc_body_beginning] = ACTIONS(2196), - [sym_file_descriptor] = ACTIONS(3452), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_GT] = ACTIONS(3455), - [anon_sym_GT_GT] = ACTIONS(3458), - [anon_sym_AMP_GT] = ACTIONS(3455), - [anon_sym_AMP_GT_GT] = ACTIONS(3458), - [anon_sym_LT_AMP] = ACTIONS(3458), - [anon_sym_GT_AMP] = ACTIONS(3458), - [anon_sym_LT_LT] = ACTIONS(3368), - [anon_sym_LT_LT_DASH] = ACTIONS(3371), - [anon_sym_LT_LT_LT] = ACTIONS(3461), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_comment] = ACTIONS(53), - }, - [1031] = { - [sym_file_redirect] = STATE(1030), - [sym_heredoc_redirect] = STATE(1030), - [sym_heredoc_body] = STATE(1500), - [sym_herestring_redirect] = STATE(1030), - [aux_sym_while_statement_repeat1] = STATE(1030), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(977), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_comment] = ACTIONS(53), - }, - [1032] = { - [sym_concatenation] = STATE(522), - [sym_string] = STATE(548), - [sym_simple_expansion] = STATE(548), - [sym_string_expansion] = STATE(548), - [sym_expansion] = STATE(548), - [sym_command_substitution] = STATE(548), - [sym_process_substitution] = STATE(548), - [aux_sym_command_repeat2] = STATE(1032), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2176), - [anon_sym_PIPE_PIPE] = ACTIONS(2176), - [anon_sym_EQ_TILDE] = ACTIONS(3464), - [anon_sym_EQ_EQ] = ACTIONS(3464), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2176), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2176), - [anon_sym_LT_AMP] = ACTIONS(2176), - [anon_sym_GT_AMP] = ACTIONS(2176), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2176), - [anon_sym_LT_LT_LT] = ACTIONS(2176), - [sym__special_characters] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_DOLLAR] = ACTIONS(3386), - [sym_raw_string] = ACTIONS(3470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3395), - [anon_sym_BQUOTE] = ACTIONS(3398), - [anon_sym_LT_LPAREN] = ACTIONS(3401), - [anon_sym_GT_LPAREN] = ACTIONS(3401), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3473), - }, - [1033] = { - [sym_file_redirect] = STATE(1519), - [sym_heredoc_redirect] = STATE(1519), - [sym_heredoc_body] = STATE(1500), - [sym_herestring_redirect] = STATE(1519), - [sym_concatenation] = STATE(522), - [sym_string] = STATE(548), - [sym_simple_expansion] = STATE(548), - [sym_string_expansion] = STATE(548), - [sym_expansion] = STATE(548), - [sym_command_substitution] = STATE(548), - [sym_process_substitution] = STATE(548), - [aux_sym_while_statement_repeat1] = STATE(1519), - [aux_sym_command_repeat2] = STATE(1032), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(977), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [sym__special_characters] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(2194), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(987), - }, - [1034] = { - [sym_file_redirect] = STATE(1520), - [sym_file_descriptor] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_SEMI_SEMI] = ACTIONS(2544), - [anon_sym_PIPE_AMP] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_AMP_GT] = ACTIONS(1337), - [anon_sym_AMP_GT_GT] = ACTIONS(1337), - [anon_sym_LT_AMP] = ACTIONS(1337), - [anon_sym_GT_AMP] = ACTIONS(1337), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LF] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(2544), - }, - [1035] = { - [sym__heredoc_body_middle] = ACTIONS(767), - [sym__heredoc_body_end] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), - [sym_comment] = ACTIONS(53), - }, - [1036] = { - [sym__heredoc_body_middle] = ACTIONS(775), - [sym__heredoc_body_end] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), - [sym_comment] = ACTIONS(53), - }, - [1037] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(3476), - [sym_comment] = ACTIONS(53), - }, - [1038] = { - [sym_concatenation] = STATE(1524), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1524), - [anon_sym_RBRACE] = ACTIONS(3478), - [anon_sym_EQ] = ACTIONS(3480), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3482), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3484), - [anon_sym_COLON] = ACTIONS(3480), - [anon_sym_COLON_QMARK] = ACTIONS(3480), - [anon_sym_COLON_DASH] = ACTIONS(3480), - [anon_sym_PERCENT] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1039] = { - [sym_subscript] = STATE(1528), - [sym_variable_name] = ACTIONS(3486), - [anon_sym_DOLLAR] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3490), - [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_AT] = ACTIONS(3488), - [anon_sym_QMARK] = ACTIONS(3488), - [anon_sym_0] = ACTIONS(3492), - [anon_sym__] = ACTIONS(3492), - }, - [1040] = { - [sym_concatenation] = STATE(1531), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1531), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_EQ] = ACTIONS(3496), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_COLON] = ACTIONS(3496), - [anon_sym_COLON_QMARK] = ACTIONS(3496), - [anon_sym_COLON_DASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1041] = { - [sym_concatenation] = STATE(1534), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1534), - [anon_sym_RBRACE] = ACTIONS(3502), - [anon_sym_EQ] = ACTIONS(3504), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_COLON] = ACTIONS(3504), - [anon_sym_COLON_QMARK] = ACTIONS(3504), - [anon_sym_COLON_DASH] = ACTIONS(3504), - [anon_sym_PERCENT] = ACTIONS(3504), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1042] = { - [anon_sym_esac] = ACTIONS(3510), - [anon_sym_PIPE] = ACTIONS(3510), - [anon_sym_RPAREN] = ACTIONS(3510), - [anon_sym_SEMI_SEMI] = ACTIONS(3510), - [anon_sym_PIPE_AMP] = ACTIONS(3510), - [anon_sym_AMP_AMP] = ACTIONS(3510), - [anon_sym_PIPE_PIPE] = ACTIONS(3510), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_LF] = ACTIONS(3512), - [anon_sym_AMP] = ACTIONS(3510), - }, - [1043] = { - [sym_simple_expansion] = STATE(1043), - [sym_expansion] = STATE(1043), - [aux_sym_heredoc_body_repeat1] = STATE(1043), - [sym__heredoc_body_middle] = ACTIONS(3514), - [sym__heredoc_body_end] = ACTIONS(3517), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3522), - [sym_comment] = ACTIONS(53), - }, - [1044] = { - [aux_sym_concatenation_repeat1] = STATE(1047), - [sym__simple_heredoc_body] = ACTIONS(1133), - [sym__heredoc_body_beginning] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1135), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1135), - [anon_sym_LT_AMP] = ACTIONS(1135), - [anon_sym_GT_AMP] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1135), - [anon_sym_LT_LT_LT] = ACTIONS(1135), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LF] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), - }, - [1045] = { - [aux_sym_concatenation_repeat1] = STATE(1047), - [sym__simple_heredoc_body] = ACTIONS(1137), - [sym__heredoc_body_beginning] = ACTIONS(1137), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1139), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1139), - [anon_sym_LT_AMP] = ACTIONS(1139), - [anon_sym_GT_AMP] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [1046] = { - [sym__simple_heredoc_body] = ACTIONS(1137), - [sym__heredoc_body_beginning] = ACTIONS(1137), - [sym_file_descriptor] = ACTIONS(1137), - [anon_sym_esac] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1139), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1139), - [anon_sym_LT_AMP] = ACTIONS(1139), - [anon_sym_GT_AMP] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [1047] = { - [aux_sym_concatenation_repeat1] = STATE(1535), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [1048] = { - [anon_sym_esac] = ACTIONS(3525), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_RPAREN] = ACTIONS(3525), - [anon_sym_SEMI_SEMI] = ACTIONS(3525), - [anon_sym_PIPE_AMP] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_LF] = ACTIONS(3527), - [anon_sym_AMP] = ACTIONS(3525), - }, - [1049] = { - [sym_file_redirect] = STATE(574), - [sym_heredoc_redirect] = STATE(574), - [sym_heredoc_body] = STATE(1536), - [sym_herestring_redirect] = STATE(574), - [aux_sym_while_statement_repeat1] = STATE(574), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_SEMI_SEMI] = ACTIONS(3525), - [anon_sym_PIPE_AMP] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(349), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_LF] = ACTIONS(3527), - [anon_sym_AMP] = ACTIONS(3525), - }, - [1050] = { - [sym__concat] = ACTIONS(3529), - [anon_sym_EQ] = ACTIONS(3531), - [anon_sym_PLUS_EQ] = ACTIONS(3531), - [sym_comment] = ACTIONS(53), - }, - [1051] = { - [anon_sym_EQ] = ACTIONS(3531), - [anon_sym_PLUS_EQ] = ACTIONS(3531), - [sym_comment] = ACTIONS(53), - }, - [1052] = { - [aux_sym_concatenation_repeat1] = STATE(1052), - [sym__concat] = ACTIONS(2615), - [anon_sym_RBRACK] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [1053] = { - [sym__concat] = ACTIONS(3533), - [anon_sym_EQ] = ACTIONS(3535), - [anon_sym_PLUS_EQ] = ACTIONS(3535), - [sym_comment] = ACTIONS(53), - }, - [1054] = { - [anon_sym_EQ] = ACTIONS(3535), - [anon_sym_PLUS_EQ] = ACTIONS(3535), - [sym_comment] = ACTIONS(53), - }, - [1055] = { - [sym_string] = STATE(1539), - [sym_simple_expansion] = STATE(1539), - [sym_string_expansion] = STATE(1539), - [sym_expansion] = STATE(1539), - [sym_command_substitution] = STATE(1539), - [sym_process_substitution] = STATE(1539), - [sym__special_characters] = ACTIONS(3537), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(3537), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3537), - }, - [1056] = { - [aux_sym_concatenation_repeat1] = STATE(1540), - [sym__concat] = ACTIONS(2257), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(731), - }, - [1057] = { - [sym__concat] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(735), - [sym__special_characters] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(735), - }, - [1058] = { - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1059] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_DOLLAR] = ACTIONS(3541), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [1060] = { - [sym__concat] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(767), - [sym__special_characters] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(767), - [anon_sym_BQUOTE] = ACTIONS(767), - [anon_sym_LT_LPAREN] = ACTIONS(767), - [anon_sym_GT_LPAREN] = ACTIONS(767), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - }, - [1061] = { - [sym__concat] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [sym__special_characters] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(771), - [anon_sym_LT_LPAREN] = ACTIONS(771), - [anon_sym_GT_LPAREN] = ACTIONS(771), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(771), - }, - [1062] = { - [sym__concat] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [sym__special_characters] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LT_LPAREN] = ACTIONS(775), - [anon_sym_GT_LPAREN] = ACTIONS(775), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(775), - }, - [1063] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(3543), - [sym_comment] = ACTIONS(53), - }, - [1064] = { - [sym_concatenation] = STATE(1546), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1546), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3551), - [anon_sym_COLON] = ACTIONS(3547), - [anon_sym_COLON_QMARK] = ACTIONS(3547), - [anon_sym_COLON_DASH] = ACTIONS(3547), - [anon_sym_PERCENT] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1065] = { - [sym_subscript] = STATE(1550), - [sym_variable_name] = ACTIONS(3553), - [anon_sym_DOLLAR] = ACTIONS(3555), - [anon_sym_DASH] = ACTIONS(3555), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3557), - [anon_sym_STAR] = ACTIONS(3555), - [anon_sym_AT] = ACTIONS(3555), - [anon_sym_QMARK] = ACTIONS(3555), - [anon_sym_0] = ACTIONS(3559), - [anon_sym__] = ACTIONS(3559), - }, - [1066] = { - [sym_concatenation] = STATE(1553), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1553), - [anon_sym_RBRACE] = ACTIONS(3561), - [anon_sym_EQ] = ACTIONS(3563), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3563), - [anon_sym_COLON_QMARK] = ACTIONS(3563), - [anon_sym_COLON_DASH] = ACTIONS(3563), - [anon_sym_PERCENT] = ACTIONS(3563), - [anon_sym_DASH] = ACTIONS(3563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1067] = { - [sym_concatenation] = STATE(1556), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1556), - [anon_sym_RBRACE] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3571), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3571), - [anon_sym_COLON_QMARK] = ACTIONS(3571), - [anon_sym_COLON_DASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3571), - [anon_sym_DASH] = ACTIONS(3571), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1068] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3577), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [1069] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3577), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1070] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(3577), - [sym_comment] = ACTIONS(53), - }, - [1071] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(3577), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1072] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3579), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [1073] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(3579), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1074] = { - [sym_file_descriptor] = ACTIONS(3581), - [sym_variable_name] = ACTIONS(3581), - [anon_sym_esac] = ACTIONS(3583), - [anon_sym_PIPE] = ACTIONS(3583), - [anon_sym_RPAREN] = ACTIONS(3583), - [anon_sym_SEMI_SEMI] = ACTIONS(3583), - [anon_sym_PIPE_AMP] = ACTIONS(3583), - [anon_sym_AMP_AMP] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [anon_sym_LT] = ACTIONS(3583), - [anon_sym_GT] = ACTIONS(3583), - [anon_sym_GT_GT] = ACTIONS(3583), - [anon_sym_AMP_GT] = ACTIONS(3583), - [anon_sym_AMP_GT_GT] = ACTIONS(3583), - [anon_sym_LT_AMP] = ACTIONS(3583), - [anon_sym_GT_AMP] = ACTIONS(3583), - [sym__special_characters] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_DOLLAR] = ACTIONS(3583), - [sym_raw_string] = ACTIONS(3583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3583), - [anon_sym_BQUOTE] = ACTIONS(3583), - [anon_sym_LT_LPAREN] = ACTIONS(3583), - [anon_sym_GT_LPAREN] = ACTIONS(3583), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3583), - [anon_sym_LF] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - }, - [1075] = { - [sym_concatenation] = STATE(1075), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(1075), - [anon_sym_RPAREN] = ACTIONS(3585), - [sym__special_characters] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_DOLLAR] = ACTIONS(3593), - [sym_raw_string] = ACTIONS(3596), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3602), - [anon_sym_BQUOTE] = ACTIONS(3605), - [anon_sym_LT_LPAREN] = ACTIONS(3608), - [anon_sym_GT_LPAREN] = ACTIONS(3608), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3596), - }, - [1076] = { - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1754), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [1077] = { - [aux_sym_concatenation_repeat1] = STATE(1077), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(3611), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [1078] = { - [sym_file_descriptor] = ACTIONS(1761), - [sym__concat] = ACTIONS(1761), - [sym_variable_name] = ACTIONS(1761), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1763), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), - }, - [1079] = { - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1080] = { - [sym_concatenation] = STATE(1563), - [sym_string] = STATE(1562), - [sym_simple_expansion] = STATE(1562), - [sym_string_expansion] = STATE(1562), - [sym_expansion] = STATE(1562), - [sym_command_substitution] = STATE(1562), - [sym_process_substitution] = STATE(1562), - [anon_sym_RBRACE] = ACTIONS(3616), - [sym__special_characters] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(3620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3620), - }, - [1081] = { - [sym_file_descriptor] = ACTIONS(1846), - [sym__concat] = ACTIONS(1846), - [sym_variable_name] = ACTIONS(1846), - [anon_sym_esac] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_SEMI_SEMI] = ACTIONS(1848), - [anon_sym_PIPE_AMP] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_GT_GT] = ACTIONS(1848), - [anon_sym_AMP_GT] = ACTIONS(1848), - [anon_sym_AMP_GT_GT] = ACTIONS(1848), - [anon_sym_LT_AMP] = ACTIONS(1848), - [anon_sym_GT_AMP] = ACTIONS(1848), - [sym__special_characters] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), - [anon_sym_BQUOTE] = ACTIONS(1848), - [anon_sym_LT_LPAREN] = ACTIONS(1848), - [anon_sym_GT_LPAREN] = ACTIONS(1848), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), - }, - [1082] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3622), - }, - [1083] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1084] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(3626), - [sym_comment] = ACTIONS(53), - }, - [1085] = { - [sym_concatenation] = STATE(1569), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1569), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_EQ] = ACTIONS(3630), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3632), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3634), - [anon_sym_COLON] = ACTIONS(3630), - [anon_sym_COLON_QMARK] = ACTIONS(3630), - [anon_sym_COLON_DASH] = ACTIONS(3630), - [anon_sym_PERCENT] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1086] = { - [sym_concatenation] = STATE(1572), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1572), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3638), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3640), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3642), - [anon_sym_COLON] = ACTIONS(3638), - [anon_sym_COLON_QMARK] = ACTIONS(3638), - [anon_sym_COLON_DASH] = ACTIONS(3638), - [anon_sym_PERCENT] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1087] = { - [sym_concatenation] = STATE(1574), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1574), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_EQ] = ACTIONS(3644), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3646), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3648), - [anon_sym_COLON] = ACTIONS(3644), - [anon_sym_COLON_QMARK] = ACTIONS(3644), - [anon_sym_COLON_DASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1088] = { - [sym_file_descriptor] = ACTIONS(1914), - [sym__concat] = ACTIONS(1914), - [sym_variable_name] = ACTIONS(1914), - [anon_sym_esac] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1916), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), - }, - [1089] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3650), - }, - [1090] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1091] = { - [sym_file_descriptor] = ACTIONS(1922), - [sym__concat] = ACTIONS(1922), - [sym_variable_name] = ACTIONS(1922), - [anon_sym_esac] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_GT_GT] = ACTIONS(1924), - [anon_sym_AMP_GT] = ACTIONS(1924), - [anon_sym_AMP_GT_GT] = ACTIONS(1924), - [anon_sym_LT_AMP] = ACTIONS(1924), - [anon_sym_GT_AMP] = ACTIONS(1924), - [sym__special_characters] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1924), - }, - [1092] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3654), - }, - [1093] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1094] = { - [sym_file_descriptor] = ACTIONS(2066), - [sym__concat] = ACTIONS(2066), - [sym_variable_name] = ACTIONS(2066), - [anon_sym_esac] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2068), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2068), - [anon_sym_LT_AMP] = ACTIONS(2068), - [anon_sym_GT_AMP] = ACTIONS(2068), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [anon_sym_LT_LPAREN] = ACTIONS(2068), - [anon_sym_GT_LPAREN] = ACTIONS(2068), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), - }, - [1095] = { - [sym_file_descriptor] = ACTIONS(2132), - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(2132), - [anon_sym_esac] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2134), - [anon_sym_GT_GT] = ACTIONS(2134), - [anon_sym_AMP_GT] = ACTIONS(2134), - [anon_sym_AMP_GT_GT] = ACTIONS(2134), - [anon_sym_LT_AMP] = ACTIONS(2134), - [anon_sym_GT_AMP] = ACTIONS(2134), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), - [anon_sym_BQUOTE] = ACTIONS(2134), - [anon_sym_LT_LPAREN] = ACTIONS(2134), - [anon_sym_GT_LPAREN] = ACTIONS(2134), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), - }, - [1096] = { - [sym_do_group] = STATE(1579), - [sym_compound_statement] = STATE(1579), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(3656), - [sym_comment] = ACTIONS(53), - }, - [1097] = { - [sym__expression] = STATE(1580), - [sym_binary_expression] = STATE(1580), - [sym_unary_expression] = STATE(1580), - [sym_parenthesized_expression] = STATE(1580), - [sym_concatenation] = STATE(1580), - [sym_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_string_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), + [sym__expression] = STATE(1429), + [sym_binary_expression] = STATE(1429), + [sym_unary_expression] = STATE(1429), + [sym_parenthesized_expression] = STATE(1429), + [sym_concatenation] = STATE(1429), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(531), - [sym__special_characters] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(535), + [sym_raw_string] = ACTIONS(487), [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_LT_LPAREN] = ACTIONS(153), [anon_sym_GT_LPAREN] = ACTIONS(153), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(537), - [sym_test_operator] = ACTIONS(539), + [sym_word] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), }, - [1098] = { - [sym__expression] = STATE(1581), - [sym_binary_expression] = STATE(1581), - [sym_unary_expression] = STATE(1581), - [sym_parenthesized_expression] = STATE(1581), - [sym_concatenation] = STATE(1581), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_string_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [sym__special_characters] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(2347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2355), - [anon_sym_GT_LPAREN] = ACTIONS(2355), + [986] = { + [sym__expression] = STATE(1430), + [sym_binary_expression] = STATE(1430), + [sym_unary_expression] = STATE(1430), + [sym_parenthesized_expression] = STATE(1430), + [sym_concatenation] = STATE(1430), + [sym_string] = STATE(990), + [sym_simple_expansion] = STATE(990), + [sym_string_expansion] = STATE(990), + [sym_expansion] = STATE(990), + [sym_command_substitution] = STATE(990), + [sym_process_substitution] = STATE(990), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2091), + [sym__special_characters] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2103), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2357), - [sym_test_operator] = ACTIONS(2359), + [sym_word] = ACTIONS(2109), + [sym_test_operator] = ACTIONS(2111), }, - [1099] = { - [aux_sym_concatenation_repeat1] = STATE(1583), - [sym__concat] = ACTIONS(3658), - [anon_sym_RPAREN_RPAREN] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(543), - [anon_sym_PIPE_PIPE] = ACTIONS(543), - [anon_sym_EQ_TILDE] = ACTIONS(543), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), + [987] = { + [aux_sym_concatenation_repeat1] = STATE(1432), + [sym__concat] = ACTIONS(3254), + [anon_sym_RPAREN_RPAREN] = ACTIONS(495), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_LT] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(495), + [anon_sym_BANG_EQ] = ACTIONS(495), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(543), + [sym_test_operator] = ACTIONS(495), }, - [1100] = { + [988] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(1586), - [anon_sym_DQUOTE] = ACTIONS(3660), - [anon_sym_DOLLAR] = ACTIONS(3662), + [aux_sym_string_repeat1] = STATE(1435), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_DOLLAR] = ACTIONS(3258), [sym__string_content] = ACTIONS(233), [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), }, - [1101] = { - [sym_string] = STATE(1588), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(3664), - [sym_raw_string] = ACTIONS(3666), - [anon_sym_POUND] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3664), + [989] = { + [sym_string] = STATE(1437), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(3260), + [sym_raw_string] = ACTIONS(3262), + [anon_sym_POUND] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AT] = ACTIONS(3664), - [anon_sym_QMARK] = ACTIONS(3664), - [anon_sym_0] = ACTIONS(3670), - [anon_sym__] = ACTIONS(3670), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3260), + [anon_sym_0] = ACTIONS(3266), + [anon_sym__] = ACTIONS(3266), + }, + [990] = { + [aux_sym_concatenation_repeat1] = STATE(1432), + [sym__concat] = ACTIONS(3254), + [anon_sym_RPAREN_RPAREN] = ACTIONS(511), + [anon_sym_AMP_AMP] = ACTIONS(511), + [anon_sym_PIPE_PIPE] = ACTIONS(511), + [anon_sym_EQ_TILDE] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(511), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(511), + [anon_sym_GT] = ACTIONS(511), + [anon_sym_BANG_EQ] = ACTIONS(511), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(511), + }, + [991] = { + [sym_subscript] = STATE(1443), + [sym_variable_name] = ACTIONS(3268), + [anon_sym_DOLLAR] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_0] = ACTIONS(3276), + [anon_sym__] = ACTIONS(3276), + }, + [992] = { + [sym__terminated_statement] = STATE(1446), + [sym_for_statement] = STATE(1444), + [sym_c_style_for_statement] = STATE(1444), + [sym_while_statement] = STATE(1444), + [sym_if_statement] = STATE(1444), + [sym_case_statement] = STATE(1444), + [sym_function_definition] = STATE(1444), + [sym_subshell] = STATE(1444), + [sym_pipeline] = STATE(1444), + [sym_list] = STATE(1444), + [sym_negated_command] = STATE(1444), + [sym_test_command] = STATE(1444), + [sym_declaration_command] = STATE(1444), + [sym_unset_command] = STATE(1444), + [sym_command] = STATE(1444), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1445), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(1446), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [993] = { + [sym__terminated_statement] = STATE(1449), + [sym_for_statement] = STATE(1447), + [sym_c_style_for_statement] = STATE(1447), + [sym_while_statement] = STATE(1447), + [sym_if_statement] = STATE(1447), + [sym_case_statement] = STATE(1447), + [sym_function_definition] = STATE(1447), + [sym_subshell] = STATE(1447), + [sym_pipeline] = STATE(1447), + [sym_list] = STATE(1447), + [sym_negated_command] = STATE(1447), + [sym_test_command] = STATE(1447), + [sym_declaration_command] = STATE(1447), + [sym_unset_command] = STATE(1447), + [sym_command] = STATE(1447), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1448), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1449), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [994] = { + [sym__terminated_statement] = STATE(1452), + [sym_for_statement] = STATE(1450), + [sym_c_style_for_statement] = STATE(1450), + [sym_while_statement] = STATE(1450), + [sym_if_statement] = STATE(1450), + [sym_case_statement] = STATE(1450), + [sym_function_definition] = STATE(1450), + [sym_subshell] = STATE(1450), + [sym_pipeline] = STATE(1450), + [sym_list] = STATE(1450), + [sym_negated_command] = STATE(1450), + [sym_test_command] = STATE(1450), + [sym_declaration_command] = STATE(1450), + [sym_unset_command] = STATE(1450), + [sym_command] = STATE(1450), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1451), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(1452), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [995] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(3278), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_EQ_TILDE] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_BANG_EQ] = ACTIONS(3280), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3280), + }, + [996] = { + [sym__expression] = STATE(1456), + [sym_binary_expression] = STATE(1456), + [sym_unary_expression] = STATE(1456), + [sym_parenthesized_expression] = STATE(1456), + [sym_concatenation] = STATE(1456), + [sym_string] = STATE(990), + [sym_simple_expansion] = STATE(990), + [sym_string_expansion] = STATE(990), + [sym_expansion] = STATE(990), + [sym_command_substitution] = STATE(990), + [sym_process_substitution] = STATE(990), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2091), + [sym__special_characters] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2103), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2109), + [sym_test_operator] = ACTIONS(2111), + }, + [997] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_PIPE_PIPE] = ACTIONS(2397), + [anon_sym_EQ_TILDE] = ACTIONS(2397), + [anon_sym_EQ_EQ] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_GT] = ACTIONS(2397), + [anon_sym_BANG_EQ] = ACTIONS(2397), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_LF] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2397), + }, + [998] = { + [sym__concat] = ACTIONS(1648), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_EQ_TILDE] = ACTIONS(1650), + [anon_sym_EQ_EQ] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_BANG_EQ] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [999] = { + [aux_sym_concatenation_repeat1] = STATE(999), + [sym__concat] = ACTIONS(3286), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_EQ_TILDE] = ACTIONS(1650), + [anon_sym_EQ_EQ] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_BANG_EQ] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1000] = { + [sym__concat] = ACTIONS(1655), + [anon_sym_esac] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [anon_sym_PIPE_AMP] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_EQ_TILDE] = ACTIONS(1657), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + }, + [1001] = { + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [1002] = { + [sym_concatenation] = STATE(1461), + [sym_string] = STATE(1460), + [sym_simple_expansion] = STATE(1460), + [sym_string_expansion] = STATE(1460), + [sym_expansion] = STATE(1460), + [sym_command_substitution] = STATE(1460), + [sym_process_substitution] = STATE(1460), + [anon_sym_RBRACE] = ACTIONS(3291), + [sym__special_characters] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3295), + }, + [1003] = { + [sym__concat] = ACTIONS(1748), + [anon_sym_esac] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_SEMI_SEMI] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_EQ_TILDE] = ACTIONS(1750), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LF] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1750), + }, + [1004] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3297), + }, + [1005] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1006] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(3301), + [sym_comment] = ACTIONS(53), + }, + [1007] = { + [sym_concatenation] = STATE(1467), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1467), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_EQ] = ACTIONS(3305), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_COLON] = ACTIONS(3305), + [anon_sym_COLON_QMARK] = ACTIONS(3305), + [anon_sym_COLON_DASH] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1008] = { + [sym_concatenation] = STATE(1470), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1470), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_EQ] = ACTIONS(3313), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_COLON] = ACTIONS(3313), + [anon_sym_COLON_QMARK] = ACTIONS(3313), + [anon_sym_COLON_DASH] = ACTIONS(3313), + [anon_sym_PERCENT] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1009] = { + [sym_concatenation] = STATE(1472), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1472), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_EQ] = ACTIONS(3319), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_COLON] = ACTIONS(3319), + [anon_sym_COLON_QMARK] = ACTIONS(3319), + [anon_sym_COLON_DASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1010] = { + [sym__concat] = ACTIONS(1816), + [anon_sym_esac] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [anon_sym_EQ_TILDE] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_GT] = ACTIONS(1818), + [anon_sym_BANG_EQ] = ACTIONS(1818), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), + }, + [1011] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3325), + }, + [1012] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1013] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_esac] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_EQ_TILDE] = ACTIONS(1826), + [anon_sym_EQ_EQ] = ACTIONS(1826), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_BANG_EQ] = ACTIONS(1826), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), + }, + [1014] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3329), + }, + [1015] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1016] = { + [sym__concat] = ACTIONS(1830), + [anon_sym_esac] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_EQ_TILDE] = ACTIONS(1832), + [anon_sym_EQ_EQ] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_BANG_EQ] = ACTIONS(1832), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1832), + }, + [1017] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3331), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1018] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3333), + [anon_sym_SEMI_SEMI] = ACTIONS(3335), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3335), + }, + [1019] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3333), + [anon_sym_SEMI_SEMI] = ACTIONS(3335), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3335), + }, + [1020] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3331), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1021] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3339), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_LF] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3339), + }, + [1022] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3339), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3333), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_LF] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3339), + }, + [1023] = { + [sym__concat] = ACTIONS(1864), + [anon_sym_esac] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [anon_sym_PIPE_AMP] = ACTIONS(1866), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_EQ_TILDE] = ACTIONS(1866), + [anon_sym_EQ_EQ] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_BANG_EQ] = ACTIONS(1866), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), + }, + [1024] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1025] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3345), + [anon_sym_SEMI_SEMI] = ACTIONS(3347), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3347), + }, + [1026] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3345), + [anon_sym_SEMI_SEMI] = ACTIONS(3347), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3347), + }, + [1027] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_EQ_TILDE] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1073), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_LF] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + }, + [1028] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2468), + [anon_sym_AMP_AMP] = ACTIONS(2468), + [anon_sym_PIPE_PIPE] = ACTIONS(2468), + [anon_sym_EQ_TILDE] = ACTIONS(2468), + [anon_sym_EQ_EQ] = ACTIONS(2468), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_GT] = ACTIONS(2468), + [anon_sym_BANG_EQ] = ACTIONS(2468), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_LF] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2468), + }, + [1029] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2468), + [anon_sym_AMP_AMP] = ACTIONS(2468), + [anon_sym_PIPE_PIPE] = ACTIONS(2468), + [anon_sym_EQ_TILDE] = ACTIONS(2468), + [anon_sym_EQ_EQ] = ACTIONS(2468), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_GT] = ACTIONS(2468), + [anon_sym_BANG_EQ] = ACTIONS(2468), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_LF] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2468), + }, + [1030] = { + [aux_sym_concatenation_repeat1] = STATE(1482), + [sym__concat] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [1031] = { + [sym_do_group] = STATE(1483), + [anon_sym_do] = ACTIONS(1081), + [sym_comment] = ACTIONS(53), + }, + [1032] = { + [sym_concatenation] = STATE(1032), + [sym_string] = STATE(563), + [sym_simple_expansion] = STATE(563), + [sym_string_expansion] = STATE(563), + [sym_expansion] = STATE(563), + [sym_command_substitution] = STATE(563), + [sym_process_substitution] = STATE(563), + [aux_sym_for_statement_repeat1] = STATE(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [sym__special_characters] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_DOLLAR] = ACTIONS(3363), + [sym_raw_string] = ACTIONS(3366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3372), + [anon_sym_BQUOTE] = ACTIONS(3375), + [anon_sym_LT_LPAREN] = ACTIONS(3378), + [anon_sym_GT_LPAREN] = ACTIONS(3378), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3355), + }, + [1033] = { + [anon_sym_esac] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_SEMI_SEMI] = ACTIONS(2205), + [anon_sym_PIPE_AMP] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2205), + [anon_sym_PIPE_PIPE] = ACTIONS(2205), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2205), + }, + [1034] = { + [sym__terminated_statement] = STATE(1036), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1036), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_done] = ACTIONS(3381), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [1035] = { + [sym__simple_heredoc_body] = ACTIONS(3383), + [sym__heredoc_body_beginning] = ACTIONS(3383), + [sym_file_descriptor] = ACTIONS(3383), + [anon_sym_esac] = ACTIONS(3385), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_RPAREN] = ACTIONS(3385), + [anon_sym_SEMI_SEMI] = ACTIONS(3385), + [anon_sym_PIPE_AMP] = ACTIONS(3385), + [anon_sym_AMP_AMP] = ACTIONS(3385), + [anon_sym_PIPE_PIPE] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_GT] = ACTIONS(3385), + [anon_sym_GT_GT] = ACTIONS(3385), + [anon_sym_AMP_GT] = ACTIONS(3385), + [anon_sym_AMP_GT_GT] = ACTIONS(3385), + [anon_sym_LT_AMP] = ACTIONS(3385), + [anon_sym_GT_AMP] = ACTIONS(3385), + [anon_sym_LT_LT] = ACTIONS(3385), + [anon_sym_LT_LT_DASH] = ACTIONS(3385), + [anon_sym_LT_LT_LT] = ACTIONS(3385), + [anon_sym_BQUOTE] = ACTIONS(3385), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_LF] = ACTIONS(3383), + [anon_sym_AMP] = ACTIONS(3385), + }, + [1036] = { + [sym__terminated_statement] = STATE(1036), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1036), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(865), + [sym_variable_name] = ACTIONS(868), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(876), + [anon_sym_done] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(879), + [anon_sym_case] = ACTIONS(882), + [anon_sym_function] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_typeset] = ACTIONS(900), + [anon_sym_export] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_local] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_AMP_GT] = ACTIONS(906), + [anon_sym_AMP_GT_GT] = ACTIONS(909), + [anon_sym_LT_AMP] = ACTIONS(909), + [anon_sym_GT_AMP] = ACTIONS(909), + [sym__special_characters] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(918), + [sym_raw_string] = ACTIONS(921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(930), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(936), + }, + [1037] = { + [anon_sym_esac] = ACTIONS(3389), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_RPAREN] = ACTIONS(3389), + [anon_sym_SEMI_SEMI] = ACTIONS(3389), + [anon_sym_PIPE_AMP] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_PIPE_PIPE] = ACTIONS(3389), + [anon_sym_BQUOTE] = ACTIONS(3389), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_LF] = ACTIONS(3391), + [anon_sym_AMP] = ACTIONS(3389), + }, + [1038] = { + [anon_sym_then] = ACTIONS(3393), + [sym_comment] = ACTIONS(53), + }, + [1039] = { + [sym__terminated_statement] = STATE(1486), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1486), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [1040] = { + [anon_sym_esac] = ACTIONS(3397), + [anon_sym_PIPE] = ACTIONS(3397), + [anon_sym_RPAREN] = ACTIONS(3397), + [anon_sym_SEMI_SEMI] = ACTIONS(3397), + [anon_sym_PIPE_AMP] = ACTIONS(3397), + [anon_sym_AMP_AMP] = ACTIONS(3397), + [anon_sym_PIPE_PIPE] = ACTIONS(3397), + [anon_sym_BQUOTE] = ACTIONS(3397), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_LF] = ACTIONS(3399), + [anon_sym_AMP] = ACTIONS(3397), + }, + [1041] = { + [anon_sym_fi] = ACTIONS(3401), + [sym_comment] = ACTIONS(53), + }, + [1042] = { + [sym__terminated_statement] = STATE(1042), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1042), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(865), + [sym_variable_name] = ACTIONS(868), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(876), + [anon_sym_if] = ACTIONS(879), + [anon_sym_fi] = ACTIONS(3387), + [anon_sym_elif] = ACTIONS(3387), + [anon_sym_else] = ACTIONS(3387), + [anon_sym_case] = ACTIONS(882), + [anon_sym_function] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_typeset] = ACTIONS(900), + [anon_sym_export] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_local] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_AMP_GT] = ACTIONS(906), + [anon_sym_AMP_GT_GT] = ACTIONS(909), + [anon_sym_LT_AMP] = ACTIONS(909), + [anon_sym_GT_AMP] = ACTIONS(909), + [sym__special_characters] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(918), + [sym_raw_string] = ACTIONS(921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(930), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(936), + }, + [1043] = { + [sym_elif_clause] = STATE(574), + [sym_else_clause] = STATE(1488), + [aux_sym_if_statement_repeat1] = STATE(1044), + [anon_sym_fi] = ACTIONS(3401), + [anon_sym_elif] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2227), + [sym_comment] = ACTIONS(53), + }, + [1044] = { + [sym_elif_clause] = STATE(574), + [aux_sym_if_statement_repeat1] = STATE(1044), + [anon_sym_fi] = ACTIONS(3403), + [anon_sym_elif] = ACTIONS(3405), + [anon_sym_else] = ACTIONS(3403), + [sym_comment] = ACTIONS(53), + }, + [1045] = { + [anon_sym_esac] = ACTIONS(3408), + [anon_sym_PIPE] = ACTIONS(3408), + [anon_sym_RPAREN] = ACTIONS(3408), + [anon_sym_SEMI_SEMI] = ACTIONS(3408), + [anon_sym_PIPE_AMP] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_PIPE_PIPE] = ACTIONS(3408), + [anon_sym_BQUOTE] = ACTIONS(3408), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_LF] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3408), + }, + [1046] = { + [aux_sym_case_item_repeat1] = STATE(1491), + [aux_sym_concatenation_repeat1] = STATE(1492), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3414), + [sym_comment] = ACTIONS(53), + }, + [1047] = { + [aux_sym_case_item_repeat1] = STATE(1494), + [aux_sym_concatenation_repeat1] = STATE(1492), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3416), + [sym_comment] = ACTIONS(53), + }, + [1048] = { + [anon_sym_esac] = ACTIONS(3418), + [sym_comment] = ACTIONS(53), + }, + [1049] = { + [aux_sym_case_item_repeat1] = STATE(1494), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3416), + [sym_comment] = ACTIONS(53), + }, + [1050] = { + [sym_case_item] = STATE(1497), + [sym_last_case_item] = STATE(1496), + [sym_concatenation] = STATE(1049), + [sym_string] = STATE(1047), + [sym_simple_expansion] = STATE(1047), + [sym_string_expansion] = STATE(1047), + [sym_expansion] = STATE(1047), + [sym_command_substitution] = STATE(1047), + [sym_process_substitution] = STATE(1047), + [aux_sym_case_statement_repeat1] = STATE(1497), + [sym__special_characters] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2233), + }, + [1051] = { + [sym_case_item] = STATE(1499), + [sym_last_case_item] = STATE(1496), + [sym_concatenation] = STATE(1049), + [sym_string] = STATE(1047), + [sym_simple_expansion] = STATE(1047), + [sym_string_expansion] = STATE(1047), + [sym_expansion] = STATE(1047), + [sym_command_substitution] = STATE(1047), + [sym_process_substitution] = STATE(1047), + [aux_sym_case_statement_repeat1] = STATE(1499), + [anon_sym_esac] = ACTIONS(3420), + [sym__special_characters] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2235), + }, + [1052] = { + [sym__concat] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2820), + [anon_sym_SEMI_SEMI] = ACTIONS(2820), + [sym__special_characters] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), + [anon_sym_BQUOTE] = ACTIONS(2820), + [anon_sym_LT_LPAREN] = ACTIONS(2820), + [anon_sym_GT_LPAREN] = ACTIONS(2820), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + }, + [1053] = { + [anon_sym_esac] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_SEMI_SEMI] = ACTIONS(3422), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3422), + }, + [1054] = { + [anon_sym_esac] = ACTIONS(3426), + [sym_comment] = ACTIONS(53), + }, + [1055] = { + [sym_case_item] = STATE(1497), + [sym_last_case_item] = STATE(1501), + [sym_concatenation] = STATE(1049), + [sym_string] = STATE(1047), + [sym_simple_expansion] = STATE(1047), + [sym_string_expansion] = STATE(1047), + [sym_expansion] = STATE(1047), + [sym_command_substitution] = STATE(1047), + [sym_process_substitution] = STATE(1047), + [aux_sym_case_statement_repeat1] = STATE(1497), + [sym__special_characters] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2233), + }, + [1056] = { + [sym_case_item] = STATE(1503), + [sym_last_case_item] = STATE(1501), + [sym_concatenation] = STATE(1049), + [sym_string] = STATE(1047), + [sym_simple_expansion] = STATE(1047), + [sym_string_expansion] = STATE(1047), + [sym_expansion] = STATE(1047), + [sym_command_substitution] = STATE(1047), + [sym_process_substitution] = STATE(1047), + [aux_sym_case_statement_repeat1] = STATE(1503), + [anon_sym_esac] = ACTIONS(3428), + [sym__special_characters] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2235), + }, + [1057] = { + [sym__concat] = ACTIONS(2832), + [anon_sym_in] = ACTIONS(2834), + [anon_sym_SEMI_SEMI] = ACTIONS(2834), + [sym__special_characters] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2834), + [anon_sym_LT_LPAREN] = ACTIONS(2834), + [anon_sym_GT_LPAREN] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), + }, + [1058] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3430), + [sym_comment] = ACTIONS(53), + }, + [1059] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3432), + [sym_comment] = ACTIONS(53), + }, + [1060] = { + [anon_sym_RBRACE] = ACTIONS(3432), + [sym_comment] = ACTIONS(53), + }, + [1061] = { + [sym_concatenation] = STATE(1507), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1507), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_EQ] = ACTIONS(3436), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3436), + [anon_sym_COLON_QMARK] = ACTIONS(3436), + [anon_sym_COLON_DASH] = ACTIONS(3436), + [anon_sym_PERCENT] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1062] = { + [sym__concat] = ACTIONS(2926), + [anon_sym_in] = ACTIONS(2928), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [sym__special_characters] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_LT_LPAREN] = ACTIONS(2928), + [anon_sym_GT_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2928), + }, + [1063] = { + [sym_concatenation] = STATE(1510), + [sym_string] = STATE(1509), + [sym_simple_expansion] = STATE(1509), + [sym_string_expansion] = STATE(1509), + [sym_expansion] = STATE(1509), + [sym_command_substitution] = STATE(1509), + [sym_process_substitution] = STATE(1509), + [anon_sym_RBRACE] = ACTIONS(3432), + [sym__special_characters] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3442), + }, + [1064] = { + [sym__concat] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(2971), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [sym__special_characters] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_LT_LPAREN] = ACTIONS(2971), + [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + }, + [1065] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3444), + }, + [1066] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1067] = { + [sym__concat] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2979), + [anon_sym_LT_LPAREN] = ACTIONS(2979), + [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + }, + [1068] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3448), + }, + [1069] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1070] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3452), + }, + [1071] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1072] = { + [sym_concatenation] = STATE(1517), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1517), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_EQ] = ACTIONS(3456), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3456), + [anon_sym_COLON_QMARK] = ACTIONS(3456), + [anon_sym_COLON_DASH] = ACTIONS(3456), + [anon_sym_PERCENT] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1073] = { + [sym__concat] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), + [sym__special_characters] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2995), + [anon_sym_BQUOTE] = ACTIONS(2995), + [anon_sym_LT_LPAREN] = ACTIONS(2995), + [anon_sym_GT_LPAREN] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), + }, + [1074] = { + [sym_concatenation] = STATE(1519), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1519), + [anon_sym_RBRACE] = ACTIONS(3460), + [anon_sym_EQ] = ACTIONS(3462), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3462), + [anon_sym_COLON_QMARK] = ACTIONS(3462), + [anon_sym_COLON_DASH] = ACTIONS(3462), + [anon_sym_PERCENT] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1075] = { + [sym__concat] = ACTIONS(3003), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_SEMI_SEMI] = ACTIONS(3005), + [sym__special_characters] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3005), + [anon_sym_LT_LPAREN] = ACTIONS(3005), + [anon_sym_GT_LPAREN] = ACTIONS(3005), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + }, + [1076] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1077] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3466), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1078] = { + [sym__concat] = ACTIONS(3034), + [anon_sym_in] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), + }, + [1079] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3468), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1080] = { + [sym_file_redirect] = STATE(1522), + [sym_file_descriptor] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(3470), + [anon_sym_SEMI_SEMI] = ACTIONS(3470), + [anon_sym_PIPE_AMP] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_PIPE_PIPE] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1171), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_LF] = ACTIONS(3472), + [anon_sym_AMP] = ACTIONS(3470), + }, + [1081] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1082] = { + [sym_file_descriptor] = ACTIONS(3474), + [anon_sym_esac] = ACTIONS(3476), + [anon_sym_PIPE] = ACTIONS(3476), + [anon_sym_RPAREN] = ACTIONS(3476), + [anon_sym_SEMI_SEMI] = ACTIONS(3476), + [anon_sym_PIPE_AMP] = ACTIONS(3476), + [anon_sym_AMP_AMP] = ACTIONS(3476), + [anon_sym_PIPE_PIPE] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_GT] = ACTIONS(3476), + [anon_sym_GT_GT] = ACTIONS(3476), + [anon_sym_AMP_GT] = ACTIONS(3476), + [anon_sym_AMP_GT_GT] = ACTIONS(3476), + [anon_sym_LT_AMP] = ACTIONS(3476), + [anon_sym_GT_AMP] = ACTIONS(3476), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_LF] = ACTIONS(3474), + [anon_sym_AMP] = ACTIONS(3476), + }, + [1083] = { + [sym__terminated_statement] = STATE(1083), + [sym_for_statement] = STATE(613), + [sym_c_style_for_statement] = STATE(613), + [sym_while_statement] = STATE(613), + [sym_if_statement] = STATE(613), + [sym_case_statement] = STATE(613), + [sym_function_definition] = STATE(613), + [sym_subshell] = STATE(613), + [sym_pipeline] = STATE(613), + [sym_list] = STATE(613), + [sym_negated_command] = STATE(613), + [sym_test_command] = STATE(613), + [sym_declaration_command] = STATE(613), + [sym_unset_command] = STATE(613), + [sym_command] = STATE(613), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(614), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1083), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(865), + [sym_variable_name] = ACTIONS(868), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(876), + [anon_sym_if] = ACTIONS(879), + [anon_sym_case] = ACTIONS(882), + [anon_sym_function] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_typeset] = ACTIONS(900), + [anon_sym_export] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_local] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_AMP_GT] = ACTIONS(906), + [anon_sym_AMP_GT_GT] = ACTIONS(909), + [anon_sym_LT_AMP] = ACTIONS(909), + [anon_sym_GT_AMP] = ACTIONS(909), + [sym__special_characters] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(918), + [sym_raw_string] = ACTIONS(921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(930), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(936), + }, + [1084] = { + [sym_concatenation] = STATE(1525), + [sym_string] = STATE(1524), + [sym_simple_expansion] = STATE(1524), + [sym_string_expansion] = STATE(1524), + [sym_expansion] = STATE(1524), + [sym_command_substitution] = STATE(1524), + [sym_process_substitution] = STATE(1524), + [sym__special_characters] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(3480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(1503), + [anon_sym_LT_LPAREN] = ACTIONS(1505), + [anon_sym_GT_LPAREN] = ACTIONS(1505), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3480), + }, + [1085] = { + [aux_sym_concatenation_repeat1] = STATE(1526), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), + }, + [1086] = { + [aux_sym_concatenation_repeat1] = STATE(1526), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), + }, + [1087] = { + [anon_sym_esac] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), + }, + [1088] = { + [aux_sym_concatenation_repeat1] = STATE(1527), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(997), + [sym_variable_name] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [1089] = { + [sym_file_redirect] = STATE(642), + [sym_heredoc_redirect] = STATE(642), + [sym_heredoc_body] = STATE(1037), + [sym_herestring_redirect] = STATE(642), + [aux_sym_while_statement_repeat1] = STATE(642), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_RPAREN] = ACTIONS(2209), + [anon_sym_SEMI_SEMI] = ACTIONS(2209), + [anon_sym_PIPE_AMP] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(469), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2209), + }, + [1090] = { + [sym_compound_statement] = STATE(1528), + [anon_sym_LBRACE] = ACTIONS(435), + [sym_comment] = ACTIONS(53), + }, + [1091] = { + [anon_sym_LT] = ACTIONS(3482), + [anon_sym_GT] = ACTIONS(3482), + [anon_sym_GT_GT] = ACTIONS(3484), + [anon_sym_AMP_GT] = ACTIONS(3482), + [anon_sym_AMP_GT_GT] = ACTIONS(3484), + [anon_sym_LT_AMP] = ACTIONS(3484), + [anon_sym_GT_AMP] = ACTIONS(3484), + [sym_comment] = ACTIONS(53), + }, + [1092] = { + [sym_concatenation] = STATE(1087), + [sym_string] = STATE(1531), + [sym_simple_expansion] = STATE(1531), + [sym_string_expansion] = STATE(1531), + [sym_expansion] = STATE(1531), + [sym_command_substitution] = STATE(1531), + [sym_process_substitution] = STATE(1531), + [sym__special_characters] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(3488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(1503), + [anon_sym_LT_LPAREN] = ACTIONS(1505), + [anon_sym_GT_LPAREN] = ACTIONS(1505), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3488), + }, + [1093] = { + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_GT] = ACTIONS(3490), + [anon_sym_GT_GT] = ACTIONS(3492), + [anon_sym_AMP_GT] = ACTIONS(3490), + [anon_sym_AMP_GT_GT] = ACTIONS(3492), + [anon_sym_LT_AMP] = ACTIONS(3492), + [anon_sym_GT_AMP] = ACTIONS(3492), + [sym_comment] = ACTIONS(53), + }, + [1094] = { + [sym_concatenation] = STATE(1143), + [sym_string] = STATE(1534), + [sym_simple_expansion] = STATE(1534), + [sym_string_expansion] = STATE(1534), + [sym_expansion] = STATE(1534), + [sym_command_substitution] = STATE(1534), + [sym_process_substitution] = STATE(1534), + [sym__special_characters] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(3496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3496), + }, + [1095] = { + [sym_concatenation] = STATE(1147), + [sym_string] = STATE(1536), + [sym_simple_expansion] = STATE(1536), + [sym_string_expansion] = STATE(1536), + [sym_expansion] = STATE(1536), + [sym_command_substitution] = STATE(1536), + [sym_process_substitution] = STATE(1536), + [sym__special_characters] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(3500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3500), + }, + [1096] = { + [sym_file_redirect] = STATE(1537), + [sym_heredoc_redirect] = STATE(1537), + [sym_herestring_redirect] = STATE(1537), + [aux_sym_while_statement_repeat1] = STATE(1537), + [sym_file_descriptor] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_RPAREN] = ACTIONS(2496), + [anon_sym_SEMI_SEMI] = ACTIONS(2496), + [anon_sym_PIPE_AMP] = ACTIONS(2496), + [anon_sym_AMP_AMP] = ACTIONS(2496), + [anon_sym_PIPE_PIPE] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_AMP_GT] = ACTIONS(2342), + [anon_sym_AMP_GT_GT] = ACTIONS(2342), + [anon_sym_LT_AMP] = ACTIONS(2342), + [anon_sym_GT_AMP] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_LT_LT_DASH] = ACTIONS(1295), + [anon_sym_LT_LT_LT] = ACTIONS(2344), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_LF] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + }, + [1097] = { + [aux_sym_concatenation_repeat1] = STATE(626), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_SEMI_SEMI] = ACTIONS(999), + [anon_sym_PIPE_AMP] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [sym__special_characters] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [sym_raw_string] = ACTIONS(999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(999), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(999), + [anon_sym_BQUOTE] = ACTIONS(999), + [anon_sym_LT_LPAREN] = ACTIONS(999), + [anon_sym_GT_LPAREN] = ACTIONS(999), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(999), + [sym_word] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LF] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(999), + }, + [1098] = { + [aux_sym_concatenation_repeat1] = STATE(626), + [sym__concat] = ACTIONS(565), + [sym_variable_name] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + }, + [1099] = { + [aux_sym_concatenation_repeat1] = STATE(1099), + [sym__concat] = ACTIONS(2567), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1100] = { + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym__concat] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1101] = { + [sym_file_redirect] = STATE(1355), + [sym_file_descriptor] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_SEMI_SEMI] = ACTIONS(2330), + [anon_sym_PIPE_AMP] = ACTIONS(2330), + [anon_sym_AMP_AMP] = ACTIONS(2330), + [anon_sym_PIPE_PIPE] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_GT] = ACTIONS(2338), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_AMP_GT] = ACTIONS(2338), + [anon_sym_AMP_GT_GT] = ACTIONS(2338), + [anon_sym_LT_AMP] = ACTIONS(2338), + [anon_sym_GT_AMP] = ACTIONS(2338), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_LF] = ACTIONS(2332), + [anon_sym_AMP] = ACTIONS(2330), }, [1102] = { - [aux_sym_concatenation_repeat1] = STATE(1583), - [sym__concat] = ACTIONS(3658), - [anon_sym_RPAREN_RPAREN] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_EQ_TILDE] = ACTIONS(559), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(559), + [aux_sym_concatenation_repeat1] = STATE(1104), + [sym__simple_heredoc_body] = ACTIONS(955), + [sym__heredoc_body_beginning] = ACTIONS(955), + [sym_file_descriptor] = ACTIONS(955), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), }, [1103] = { - [sym_subscript] = STATE(1594), - [sym_variable_name] = ACTIONS(3672), - [anon_sym_DOLLAR] = ACTIONS(3674), - [anon_sym_POUND] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3674), + [aux_sym_concatenation_repeat1] = STATE(1104), + [sym__simple_heredoc_body] = ACTIONS(959), + [sym__heredoc_body_beginning] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3678), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_AT] = ACTIONS(3674), - [anon_sym_QMARK] = ACTIONS(3674), - [anon_sym_0] = ACTIONS(3680), - [anon_sym__] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), }, [1104] = { - [sym_for_statement] = STATE(1595), - [sym_c_style_for_statement] = STATE(1595), - [sym_while_statement] = STATE(1595), - [sym_if_statement] = STATE(1595), - [sym_case_statement] = STATE(1595), - [sym_function_definition] = STATE(1595), - [sym_subshell] = STATE(1595), - [sym_pipeline] = STATE(1595), - [sym_list] = STATE(1595), - [sym_negated_command] = STATE(1595), - [sym_test_command] = STATE(1595), - [sym_declaration_command] = STATE(1595), - [sym_unset_command] = STATE(1595), - [sym_command] = STATE(1595), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1596), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [aux_sym_concatenation_repeat1] = STATE(1538), + [sym__simple_heredoc_body] = ACTIONS(683), + [sym__heredoc_body_beginning] = ACTIONS(683), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), }, [1105] = { - [sym_for_statement] = STATE(1597), - [sym_c_style_for_statement] = STATE(1597), - [sym_while_statement] = STATE(1597), - [sym_if_statement] = STATE(1597), - [sym_case_statement] = STATE(1597), - [sym_function_definition] = STATE(1597), - [sym_subshell] = STATE(1597), - [sym_pipeline] = STATE(1597), - [sym_list] = STATE(1597), - [sym_negated_command] = STATE(1597), - [sym_test_command] = STATE(1597), - [sym_declaration_command] = STATE(1597), - [sym_unset_command] = STATE(1597), - [sym_command] = STATE(1597), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(1598), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), + [anon_sym_esac] = ACTIONS(3502), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_RPAREN] = ACTIONS(3502), + [anon_sym_SEMI_SEMI] = ACTIONS(3502), + [anon_sym_PIPE_AMP] = ACTIONS(3502), + [anon_sym_AMP_AMP] = ACTIONS(3502), + [anon_sym_PIPE_PIPE] = ACTIONS(3502), + [anon_sym_BQUOTE] = ACTIONS(3502), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_LF] = ACTIONS(3504), + [anon_sym_AMP] = ACTIONS(3502), }, [1106] = { - [sym_for_statement] = STATE(1599), - [sym_c_style_for_statement] = STATE(1599), - [sym_while_statement] = STATE(1599), - [sym_if_statement] = STATE(1599), - [sym_case_statement] = STATE(1599), - [sym_function_definition] = STATE(1599), - [sym_subshell] = STATE(1599), - [sym_pipeline] = STATE(1599), - [sym_list] = STATE(1599), - [sym_negated_command] = STATE(1599), - [sym_test_command] = STATE(1599), - [sym_declaration_command] = STATE(1599), - [sym_unset_command] = STATE(1599), - [sym_command] = STATE(1599), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1600), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_file_redirect] = STATE(642), + [sym_heredoc_redirect] = STATE(642), + [sym_heredoc_body] = STATE(1371), + [sym_herestring_redirect] = STATE(642), + [aux_sym_while_statement_repeat1] = STATE(642), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(467), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(469), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), }, [1107] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_EQ_TILDE] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_BANG_EQ] = ACTIONS(3684), + [sym_file_descriptor] = ACTIONS(1993), + [sym_variable_name] = ACTIONS(1993), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_GT_GT] = ACTIONS(1993), + [anon_sym_AMP_GT] = ACTIONS(1995), + [anon_sym_AMP_GT_GT] = ACTIONS(1993), + [anon_sym_LT_AMP] = ACTIONS(1993), + [anon_sym_GT_AMP] = ACTIONS(1993), + [sym__special_characters] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1995), + [sym_raw_string] = ACTIONS(1993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1993), + [anon_sym_BQUOTE] = ACTIONS(1993), + [anon_sym_LT_LPAREN] = ACTIONS(1993), + [anon_sym_GT_LPAREN] = ACTIONS(1993), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3684), + [sym_word] = ACTIONS(1993), }, [1108] = { - [sym__expression] = STATE(1604), - [sym_binary_expression] = STATE(1604), - [sym_unary_expression] = STATE(1604), - [sym_parenthesized_expression] = STATE(1604), - [sym_concatenation] = STATE(1604), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_string_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [sym__special_characters] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(2347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2355), - [anon_sym_GT_LPAREN] = ACTIONS(2355), + [sym_concatenation] = STATE(954), + [sym_string] = STATE(505), + [sym_simple_expansion] = STATE(505), + [sym_string_expansion] = STATE(505), + [sym_expansion] = STATE(505), + [sym_command_substitution] = STATE(505), + [sym_process_substitution] = STATE(505), + [aux_sym_for_statement_repeat1] = STATE(954), + [anon_sym_RPAREN] = ACTIONS(3506), + [sym__special_characters] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LT_LPAREN] = ACTIONS(993), + [anon_sym_GT_LPAREN] = ACTIONS(993), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2357), - [sym_test_operator] = ACTIONS(2359), + [sym_word] = ACTIONS(985), }, [1109] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_PIPE_PIPE] = ACTIONS(2611), - [anon_sym_EQ_TILDE] = ACTIONS(2611), - [anon_sym_EQ_EQ] = ACTIONS(2611), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_GT] = ACTIONS(2611), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_LF] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2611), + [aux_sym_concatenation_repeat1] = STATE(1109), + [sym__concat] = ACTIONS(2500), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_AMP_AMP] = ACTIONS(1648), + [anon_sym_PIPE_PIPE] = ACTIONS(1648), + [anon_sym_EQ_TILDE] = ACTIONS(1648), + [anon_sym_EQ_EQ] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_BANG_EQ] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1648), }, [1110] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_EQ_TILDE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [sym__concat] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_RBRACK] = ACTIONS(2818), + [anon_sym_EQ_TILDE] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2818), }, [1111] = { - [aux_sym_concatenation_repeat1] = STATE(1111), - [sym__concat] = ACTIONS(3690), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_EQ_TILDE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [sym__concat] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_PIPE_PIPE] = ACTIONS(2832), + [anon_sym_RBRACK] = ACTIONS(2832), + [anon_sym_EQ_TILDE] = ACTIONS(2832), + [anon_sym_EQ_EQ] = ACTIONS(2832), + [anon_sym_EQ] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_GT] = ACTIONS(2832), + [anon_sym_BANG_EQ] = ACTIONS(2832), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2832), }, [1112] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3508), + [sym_comment] = ACTIONS(53), }, [1113] = { - [anon_sym_DQUOTE] = ACTIONS(3693), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3510), + [sym_comment] = ACTIONS(53), }, [1114] = { - [sym_concatenation] = STATE(1609), - [sym_string] = STATE(1608), - [sym_simple_expansion] = STATE(1608), - [sym_string_expansion] = STATE(1608), - [sym_expansion] = STATE(1608), - [sym_command_substitution] = STATE(1608), - [sym_process_substitution] = STATE(1608), - [anon_sym_RBRACE] = ACTIONS(3695), - [sym__special_characters] = ACTIONS(3697), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(3699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(3510), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3699), }, [1115] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_esac] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_SEMI_SEMI] = ACTIONS(1848), - [anon_sym_PIPE_AMP] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [anon_sym_EQ_TILDE] = ACTIONS(1848), - [anon_sym_EQ_EQ] = ACTIONS(1848), - [anon_sym_EQ] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_BANG_EQ] = ACTIONS(1848), + [sym_concatenation] = STATE(1543), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1543), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_EQ] = ACTIONS(3514), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_COLON_QMARK] = ACTIONS(3514), + [anon_sym_COLON_DASH] = ACTIONS(3514), + [anon_sym_PERCENT] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), + [sym_word] = ACTIONS(759), }, [1116] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3701), + [sym__concat] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_PIPE_PIPE] = ACTIONS(2926), + [anon_sym_RBRACK] = ACTIONS(2926), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2926), + [anon_sym_EQ] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_BANG_EQ] = ACTIONS(2926), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2926), }, [1117] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3703), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_concatenation] = STATE(1546), + [sym_string] = STATE(1545), + [sym_simple_expansion] = STATE(1545), + [sym_string_expansion] = STATE(1545), + [sym_expansion] = STATE(1545), + [sym_command_substitution] = STATE(1545), + [sym_process_substitution] = STATE(1545), + [anon_sym_RBRACE] = ACTIONS(3510), + [sym__special_characters] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3520), }, [1118] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(3705), + [sym__concat] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_PIPE_PIPE] = ACTIONS(2969), + [anon_sym_RBRACK] = ACTIONS(2969), + [anon_sym_EQ_TILDE] = ACTIONS(2969), + [anon_sym_EQ_EQ] = ACTIONS(2969), + [anon_sym_EQ] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_BANG_EQ] = ACTIONS(2969), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2969), }, [1119] = { - [sym_concatenation] = STATE(1615), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1615), - [anon_sym_RBRACE] = ACTIONS(3707), - [anon_sym_EQ] = ACTIONS(3709), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3713), - [anon_sym_COLON] = ACTIONS(3709), - [anon_sym_COLON_QMARK] = ACTIONS(3709), - [anon_sym_COLON_DASH] = ACTIONS(3709), - [anon_sym_PERCENT] = ACTIONS(3709), - [anon_sym_DASH] = ACTIONS(3709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(3522), }, [1120] = { - [sym_concatenation] = STATE(1618), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1618), - [anon_sym_RBRACE] = ACTIONS(3715), - [anon_sym_EQ] = ACTIONS(3717), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3719), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3717), - [anon_sym_COLON_QMARK] = ACTIONS(3717), - [anon_sym_COLON_DASH] = ACTIONS(3717), - [anon_sym_PERCENT] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [1121] = { - [sym_concatenation] = STATE(1620), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1620), - [anon_sym_RBRACE] = ACTIONS(3695), - [anon_sym_EQ] = ACTIONS(3723), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(3727), - [anon_sym_COLON] = ACTIONS(3723), - [anon_sym_COLON_QMARK] = ACTIONS(3723), - [anon_sym_COLON_DASH] = ACTIONS(3723), - [anon_sym_PERCENT] = ACTIONS(3723), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_PIPE_PIPE] = ACTIONS(2977), + [anon_sym_RBRACK] = ACTIONS(2977), + [anon_sym_EQ_TILDE] = ACTIONS(2977), + [anon_sym_EQ_EQ] = ACTIONS(2977), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_BANG_EQ] = ACTIONS(2977), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2977), }, [1122] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_esac] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(1916), - [anon_sym_EQ_EQ] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_BANG_EQ] = ACTIONS(1916), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), + [sym_regex_without_right_brace] = ACTIONS(3526), }, [1123] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3729), + [sym_word] = ACTIONS(759), }, [1124] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(3530), }, [1125] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_esac] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_EQ_TILDE] = ACTIONS(1924), - [anon_sym_EQ_EQ] = ACTIONS(1924), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_BANG_EQ] = ACTIONS(1924), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1924), + [sym_word] = ACTIONS(759), }, [1126] = { + [sym_concatenation] = STATE(1553), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1553), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_EQ] = ACTIONS(3534), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3534), + [anon_sym_COLON_QMARK] = ACTIONS(3534), + [anon_sym_COLON_DASH] = ACTIONS(3534), + [anon_sym_PERCENT] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3733), + [sym_word] = ACTIONS(759), }, [1127] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3695), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_RBRACK] = ACTIONS(2993), + [anon_sym_EQ_TILDE] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2993), }, [1128] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_esac] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_EQ_TILDE] = ACTIONS(2068), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_BANG_EQ] = ACTIONS(2068), + [sym_concatenation] = STATE(1555), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1555), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_EQ] = ACTIONS(3540), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3540), + [anon_sym_COLON_QMARK] = ACTIONS(3540), + [anon_sym_COLON_DASH] = ACTIONS(3540), + [anon_sym_PERCENT] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), + [sym_word] = ACTIONS(759), }, [1129] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_esac] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [anon_sym_EQ_TILDE] = ACTIONS(2134), - [anon_sym_EQ_EQ] = ACTIONS(2134), - [anon_sym_EQ] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2134), - [anon_sym_BANG_EQ] = ACTIONS(2134), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), + [sym__concat] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(3003), + [anon_sym_RBRACK] = ACTIONS(3003), + [anon_sym_EQ_TILDE] = ACTIONS(3003), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3003), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3003), }, [1130] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3735), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(3735), - [anon_sym_LF] = ACTIONS(3737), - [anon_sym_AMP] = ACTIONS(3735), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [1131] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2662), - [anon_sym_AMP_AMP] = ACTIONS(2662), - [anon_sym_PIPE_PIPE] = ACTIONS(2662), - [anon_sym_EQ_TILDE] = ACTIONS(2662), - [anon_sym_EQ_EQ] = ACTIONS(2662), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_GT] = ACTIONS(2662), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2662), - [anon_sym_LF] = ACTIONS(2660), - [anon_sym_AMP] = ACTIONS(2662), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3544), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [1132] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2662), - [anon_sym_AMP_AMP] = ACTIONS(2662), - [anon_sym_PIPE_PIPE] = ACTIONS(2662), - [anon_sym_EQ_TILDE] = ACTIONS(2662), - [anon_sym_EQ_EQ] = ACTIONS(2662), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_GT] = ACTIONS(2662), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2662), - [anon_sym_LF] = ACTIONS(2660), - [anon_sym_AMP] = ACTIONS(2662), + [sym__concat] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_PIPE_PIPE] = ACTIONS(3034), + [anon_sym_RBRACK] = ACTIONS(3034), + [anon_sym_EQ_TILDE] = ACTIONS(3034), + [anon_sym_EQ_EQ] = ACTIONS(3034), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_BANG_EQ] = ACTIONS(3034), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3034), }, [1133] = { - [aux_sym_concatenation_repeat1] = STATE(1625), - [sym__concat] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [1134] = { - [sym_do_group] = STATE(1626), - [anon_sym_do] = ACTIONS(1259), + [sym_concatenation] = STATE(1560), + [sym_string] = STATE(1559), + [sym_simple_expansion] = STATE(1559), + [sym_string_expansion] = STATE(1559), + [sym_expansion] = STATE(1559), + [sym_command_substitution] = STATE(1559), + [sym_process_substitution] = STATE(1559), + [sym__special_characters] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(3550), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3550), }, [1135] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(640), - [sym_simple_expansion] = STATE(640), - [sym_string_expansion] = STATE(640), - [sym_expansion] = STATE(640), - [sym_command_substitution] = STATE(640), - [sym_process_substitution] = STATE(640), - [aux_sym_for_statement_repeat1] = STATE(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(3739), - [sym__special_characters] = ACTIONS(3741), - [anon_sym_DQUOTE] = ACTIONS(3744), - [anon_sym_DOLLAR] = ACTIONS(3747), - [sym_raw_string] = ACTIONS(3750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3756), - [anon_sym_BQUOTE] = ACTIONS(3759), - [anon_sym_LT_LPAREN] = ACTIONS(3762), - [anon_sym_GT_LPAREN] = ACTIONS(3762), + [aux_sym_concatenation_repeat1] = STATE(1562), + [sym_file_descriptor] = ACTIONS(649), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_AMP_GT] = ACTIONS(653), + [anon_sym_AMP_GT_GT] = ACTIONS(653), + [anon_sym_LT_AMP] = ACTIONS(653), + [anon_sym_GT_AMP] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_LT] = ACTIONS(653), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3750), - [anon_sym_SEMI] = ACTIONS(3739), - [anon_sym_LF] = ACTIONS(3585), - [anon_sym_AMP] = ACTIONS(3739), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), }, [1136] = { - [anon_sym_esac] = ACTIONS(2441), - [anon_sym_PIPE] = ACTIONS(2441), - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_SEMI_SEMI] = ACTIONS(2441), - [anon_sym_PIPE_AMP] = ACTIONS(2441), - [anon_sym_AMP_AMP] = ACTIONS(2441), - [anon_sym_PIPE_PIPE] = ACTIONS(2441), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(1565), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_DOLLAR] = ACTIONS(3556), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2441), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2441), }, [1137] = { - [sym__terminated_statement] = STATE(1139), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1139), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(3765), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_string] = STATE(1567), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(3558), + [sym_raw_string] = ACTIONS(3560), + [anon_sym_POUND] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_QMARK] = ACTIONS(3558), + [anon_sym_0] = ACTIONS(3564), + [anon_sym__] = ACTIONS(3564), }, [1138] = { - [sym__simple_heredoc_body] = ACTIONS(3767), - [sym__heredoc_body_beginning] = ACTIONS(3767), - [sym_file_descriptor] = ACTIONS(3767), - [anon_sym_esac] = ACTIONS(3769), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_SEMI_SEMI] = ACTIONS(3769), - [anon_sym_PIPE_AMP] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [anon_sym_LT] = ACTIONS(3769), - [anon_sym_GT] = ACTIONS(3769), - [anon_sym_GT_GT] = ACTIONS(3769), - [anon_sym_AMP_GT] = ACTIONS(3769), - [anon_sym_AMP_GT_GT] = ACTIONS(3769), - [anon_sym_LT_AMP] = ACTIONS(3769), - [anon_sym_GT_AMP] = ACTIONS(3769), - [anon_sym_LT_LT] = ACTIONS(3769), - [anon_sym_LT_LT_DASH] = ACTIONS(3769), - [anon_sym_LT_LT_LT] = ACTIONS(3769), + [aux_sym_concatenation_repeat1] = STATE(1562), + [sym_file_descriptor] = ACTIONS(667), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_LF] = ACTIONS(3767), - [anon_sym_AMP] = ACTIONS(3769), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), }, [1139] = { - [sym__terminated_statement] = STATE(1139), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1139), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(1043), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_done] = ACTIONS(3771), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), - [anon_sym_declare] = ACTIONS(1078), - [anon_sym_typeset] = ACTIONS(1078), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_readonly] = ACTIONS(1078), - [anon_sym_local] = ACTIONS(1078), - [anon_sym_unset] = ACTIONS(1081), - [anon_sym_unsetenv] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1087), - [anon_sym_LT_AMP] = ACTIONS(1087), - [anon_sym_GT_AMP] = ACTIONS(1087), - [sym__special_characters] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1096), - [sym_raw_string] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1108), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1114), + [sym_subscript] = STATE(1573), + [sym_variable_name] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_POUND] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3568), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3568), + [anon_sym_AT] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_0] = ACTIONS(3574), + [anon_sym__] = ACTIONS(3574), }, [1140] = { - [anon_sym_esac] = ACTIONS(3773), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_RPAREN] = ACTIONS(3773), - [anon_sym_SEMI_SEMI] = ACTIONS(3773), - [anon_sym_PIPE_AMP] = ACTIONS(3773), - [anon_sym_AMP_AMP] = ACTIONS(3773), - [anon_sym_PIPE_PIPE] = ACTIONS(3773), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3773), - [anon_sym_LF] = ACTIONS(3775), - [anon_sym_AMP] = ACTIONS(3773), + [sym__terminated_statement] = STATE(1576), + [sym_for_statement] = STATE(1574), + [sym_c_style_for_statement] = STATE(1574), + [sym_while_statement] = STATE(1574), + [sym_if_statement] = STATE(1574), + [sym_case_statement] = STATE(1574), + [sym_function_definition] = STATE(1574), + [sym_subshell] = STATE(1574), + [sym_pipeline] = STATE(1574), + [sym_list] = STATE(1574), + [sym_negated_command] = STATE(1574), + [sym_test_command] = STATE(1574), + [sym_declaration_command] = STATE(1574), + [sym_unset_command] = STATE(1574), + [sym_command] = STATE(1574), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1575), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(1576), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), }, [1141] = { - [anon_sym_then] = ACTIONS(3777), - [sym_comment] = ACTIONS(53), - }, - [1142] = { - [sym__terminated_statement] = STATE(1629), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), + [sym__terminated_statement] = STATE(1579), + [sym_for_statement] = STATE(1577), + [sym_c_style_for_statement] = STATE(1577), + [sym_while_statement] = STATE(1577), + [sym_if_statement] = STATE(1577), + [sym_case_statement] = STATE(1577), + [sym_function_definition] = STATE(1577), + [sym_subshell] = STATE(1577), + [sym_pipeline] = STATE(1577), + [sym_list] = STATE(1577), + [sym_negated_command] = STATE(1577), + [sym_test_command] = STATE(1577), + [sym_declaration_command] = STATE(1577), + [sym_unset_command] = STATE(1577), + [sym_command] = STATE(1577), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1578), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1629), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(1579), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [1142] = { + [sym__terminated_statement] = STATE(1582), + [sym_for_statement] = STATE(1580), + [sym_c_style_for_statement] = STATE(1580), + [sym_while_statement] = STATE(1580), + [sym_if_statement] = STATE(1580), + [sym_case_statement] = STATE(1580), + [sym_function_definition] = STATE(1580), + [sym_subshell] = STATE(1580), + [sym_pipeline] = STATE(1580), + [sym_list] = STATE(1580), + [sym_negated_command] = STATE(1580), + [sym_test_command] = STATE(1580), + [sym_declaration_command] = STATE(1580), + [sym_unset_command] = STATE(1580), + [sym_command] = STATE(1580), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1581), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(1582), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [1143] = { + [sym_file_descriptor] = ACTIONS(667), + [anon_sym_esac] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), + }, + [1144] = { + [sym_file_descriptor] = ACTIONS(1920), + [anon_sym_esac] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_SEMI_SEMI] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_GT] = ACTIONS(1922), + [anon_sym_GT_GT] = ACTIONS(1922), + [anon_sym_AMP_GT] = ACTIONS(1922), + [anon_sym_AMP_GT_GT] = ACTIONS(1922), + [anon_sym_LT_AMP] = ACTIONS(1922), + [anon_sym_GT_AMP] = ACTIONS(1922), + [anon_sym_LT_LT] = ACTIONS(1922), + [anon_sym_LT_LT_DASH] = ACTIONS(1922), + [anon_sym_LT_LT_LT] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_LF] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1922), + }, + [1145] = { + [aux_sym_concatenation_repeat1] = STATE(1562), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1926), + [anon_sym_PIPE_AMP] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_PIPE_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1926), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1926), + [anon_sym_LT_AMP] = ACTIONS(1926), + [anon_sym_GT_AMP] = ACTIONS(1926), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1926), + [anon_sym_LT_LT_LT] = ACTIONS(1926), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), + }, + [1146] = { + [aux_sym_concatenation_repeat1] = STATE(1562), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [1147] = { + [sym_file_descriptor] = ACTIONS(1928), + [anon_sym_esac] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), + [anon_sym_BQUOTE] = ACTIONS(1930), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [1148] = { + [sym_file_redirect] = STATE(1148), + [sym_heredoc_redirect] = STATE(1148), + [sym_herestring_redirect] = STATE(1148), + [aux_sym_while_statement_repeat1] = STATE(1148), + [sym_file_descriptor] = ACTIONS(3576), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_SEMI_SEMI] = ACTIONS(1941), + [anon_sym_PIPE_AMP] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_GT] = ACTIONS(3579), + [anon_sym_GT_GT] = ACTIONS(3579), + [anon_sym_AMP_GT] = ACTIONS(3579), + [anon_sym_AMP_GT_GT] = ACTIONS(3579), + [anon_sym_LT_AMP] = ACTIONS(3579), + [anon_sym_GT_AMP] = ACTIONS(3579), + [anon_sym_LT_LT] = ACTIONS(3582), + [anon_sym_LT_LT_DASH] = ACTIONS(3582), + [anon_sym_LT_LT_LT] = ACTIONS(3585), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1941), + }, + [1149] = { + [sym__concat] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2818), + [anon_sym_EQ_TILDE] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2818), + }, + [1150] = { + [sym__concat] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_PIPE_PIPE] = ACTIONS(2832), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2832), + [anon_sym_EQ_TILDE] = ACTIONS(2832), + [anon_sym_EQ_EQ] = ACTIONS(2832), + [anon_sym_EQ] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_GT] = ACTIONS(2832), + [anon_sym_BANG_EQ] = ACTIONS(2832), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2832), + }, + [1151] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3588), + [sym_comment] = ACTIONS(53), + }, + [1152] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3590), + [sym_comment] = ACTIONS(53), + }, + [1153] = { + [anon_sym_RBRACE] = ACTIONS(3590), + [sym_comment] = ACTIONS(53), + }, + [1154] = { + [sym_concatenation] = STATE(1586), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1586), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3594), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3594), + [anon_sym_COLON_QMARK] = ACTIONS(3594), + [anon_sym_COLON_DASH] = ACTIONS(3594), + [anon_sym_PERCENT] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1155] = { + [sym__concat] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_RPAREN] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_PIPE_PIPE] = ACTIONS(2926), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2926), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2926), + [anon_sym_EQ] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_BANG_EQ] = ACTIONS(2926), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2926), + }, + [1156] = { + [sym_concatenation] = STATE(1589), + [sym_string] = STATE(1588), + [sym_simple_expansion] = STATE(1588), + [sym_string_expansion] = STATE(1588), + [sym_expansion] = STATE(1588), + [sym_command_substitution] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [anon_sym_RBRACE] = ACTIONS(3590), + [sym__special_characters] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3600), + }, + [1157] = { + [sym__concat] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_RPAREN] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_PIPE_PIPE] = ACTIONS(2969), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2969), + [anon_sym_EQ_TILDE] = ACTIONS(2969), + [anon_sym_EQ_EQ] = ACTIONS(2969), + [anon_sym_EQ] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_BANG_EQ] = ACTIONS(2969), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2969), + }, + [1158] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3602), + }, + [1159] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1160] = { + [sym__concat] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_PIPE_PIPE] = ACTIONS(2977), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2977), + [anon_sym_EQ_TILDE] = ACTIONS(2977), + [anon_sym_EQ_EQ] = ACTIONS(2977), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_BANG_EQ] = ACTIONS(2977), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2977), + }, + [1161] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3606), + }, + [1162] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1163] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3610), + }, + [1164] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1165] = { + [sym_concatenation] = STATE(1596), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1596), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3614), + [anon_sym_COLON_QMARK] = ACTIONS(3614), + [anon_sym_COLON_DASH] = ACTIONS(3614), + [anon_sym_PERCENT] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1166] = { + [sym__concat] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2993), + [anon_sym_EQ_TILDE] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2993), + }, + [1167] = { + [sym_concatenation] = STATE(1598), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1598), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_EQ] = ACTIONS(3620), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_DASH] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1168] = { + [sym__concat] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(3003), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3003), + [anon_sym_EQ_TILDE] = ACTIONS(3003), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3003), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3003), + }, + [1169] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1170] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3624), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1171] = { + [sym__concat] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_RPAREN] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_PIPE_PIPE] = ACTIONS(3034), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3034), + [anon_sym_EQ_TILDE] = ACTIONS(3034), + [anon_sym_EQ_EQ] = ACTIONS(3034), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_BANG_EQ] = ACTIONS(3034), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3034), + }, + [1172] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1173] = { + [sym_variable_name] = ACTIONS(1993), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_SEMI_SEMI] = ACTIONS(1995), + [anon_sym_PIPE_AMP] = ACTIONS(1995), + [anon_sym_AMP_AMP] = ACTIONS(1995), + [anon_sym_PIPE_PIPE] = ACTIONS(1995), + [sym__special_characters] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1995), + [sym_raw_string] = ACTIONS(1995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1995), + [anon_sym_BQUOTE] = ACTIONS(1995), + [anon_sym_LT_LPAREN] = ACTIONS(1995), + [anon_sym_GT_LPAREN] = ACTIONS(1995), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1995), + [sym_word] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_LF] = ACTIONS(1993), + [anon_sym_AMP] = ACTIONS(1995), + }, + [1174] = { + [sym_concatenation] = STATE(954), + [sym_string] = STATE(505), + [sym_simple_expansion] = STATE(505), + [sym_string_expansion] = STATE(505), + [sym_expansion] = STATE(505), + [sym_command_substitution] = STATE(505), + [sym_process_substitution] = STATE(505), + [aux_sym_for_statement_repeat1] = STATE(954), + [anon_sym_RPAREN] = ACTIONS(3628), + [sym__special_characters] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LT_LPAREN] = ACTIONS(993), + [anon_sym_GT_LPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(985), + }, + [1175] = { + [sym__concat] = ACTIONS(2818), + [sym_variable_name] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_SEMI_SEMI] = ACTIONS(2820), + [anon_sym_PIPE_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [sym__special_characters] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), + [anon_sym_BQUOTE] = ACTIONS(2820), + [anon_sym_LT_LPAREN] = ACTIONS(2820), + [anon_sym_GT_LPAREN] = ACTIONS(2820), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2820), + [sym_word] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + }, + [1176] = { + [sym__concat] = ACTIONS(2832), + [sym_variable_name] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_SEMI_SEMI] = ACTIONS(2834), + [anon_sym_PIPE_AMP] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [sym__special_characters] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2834), + [anon_sym_LT_LPAREN] = ACTIONS(2834), + [anon_sym_GT_LPAREN] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2834), + [sym_word] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), + }, + [1177] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3630), + [sym_comment] = ACTIONS(53), + }, + [1178] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3632), + [sym_comment] = ACTIONS(53), + }, + [1179] = { + [anon_sym_RBRACE] = ACTIONS(3632), + [sym_comment] = ACTIONS(53), + }, + [1180] = { + [sym_concatenation] = STATE(1605), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1605), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_EQ] = ACTIONS(3636), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3638), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COLON_QMARK] = ACTIONS(3636), + [anon_sym_COLON_DASH] = ACTIONS(3636), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1181] = { + [sym__concat] = ACTIONS(2926), + [sym_variable_name] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_RPAREN] = ACTIONS(2928), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [sym__special_characters] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_LT_LPAREN] = ACTIONS(2928), + [anon_sym_GT_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), + [sym_word] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2928), + }, + [1182] = { + [sym_concatenation] = STATE(1608), + [sym_string] = STATE(1607), + [sym_simple_expansion] = STATE(1607), + [sym_string_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1607), + [sym_process_substitution] = STATE(1607), + [anon_sym_RBRACE] = ACTIONS(3632), + [sym__special_characters] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3642), + }, + [1183] = { + [sym__concat] = ACTIONS(2969), + [sym_variable_name] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_RPAREN] = ACTIONS(2971), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [sym__special_characters] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_LT_LPAREN] = ACTIONS(2971), + [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), + [sym_word] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + }, + [1184] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3644), + }, + [1185] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1186] = { + [sym__concat] = ACTIONS(2977), + [sym_variable_name] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2979), + [anon_sym_PIPE_AMP] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2979), + [anon_sym_LT_LPAREN] = ACTIONS(2979), + [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2979), + [sym_word] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + }, + [1187] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3648), + }, + [1188] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1189] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3652), + }, + [1190] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1191] = { + [sym_concatenation] = STATE(1615), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1615), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_EQ] = ACTIONS(3656), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3658), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_DASH] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1192] = { + [sym__concat] = ACTIONS(2993), + [sym_variable_name] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_RPAREN] = ACTIONS(2995), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), + [anon_sym_PIPE_AMP] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [sym__special_characters] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2995), + [anon_sym_BQUOTE] = ACTIONS(2995), + [anon_sym_LT_LPAREN] = ACTIONS(2995), + [anon_sym_GT_LPAREN] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2995), + [sym_word] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), + }, + [1193] = { + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1617), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3662), + [anon_sym_COLON_QMARK] = ACTIONS(3662), + [anon_sym_COLON_DASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1194] = { + [sym__concat] = ACTIONS(3003), + [sym_variable_name] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_SEMI_SEMI] = ACTIONS(3005), + [anon_sym_PIPE_AMP] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [sym__special_characters] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3005), + [anon_sym_LT_LPAREN] = ACTIONS(3005), + [anon_sym_GT_LPAREN] = ACTIONS(3005), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3005), + [sym_word] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + }, + [1195] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3666), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1196] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3666), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1197] = { + [sym__concat] = ACTIONS(3034), + [sym_variable_name] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3036), + [sym_word] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), + }, + [1198] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1199] = { + [sym__concat] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_SEMI_SEMI] = ACTIONS(2820), + [anon_sym_PIPE_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [sym__special_characters] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), + [anon_sym_BQUOTE] = ACTIONS(2820), + [anon_sym_LT_LPAREN] = ACTIONS(2820), + [anon_sym_GT_LPAREN] = ACTIONS(2820), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2820), + [sym_word] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + }, + [1200] = { + [sym__concat] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_SEMI_SEMI] = ACTIONS(2834), + [anon_sym_PIPE_AMP] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [sym__special_characters] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2834), + [anon_sym_LT_LPAREN] = ACTIONS(2834), + [anon_sym_GT_LPAREN] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2834), + [sym_word] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), + }, + [1201] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3670), + [sym_comment] = ACTIONS(53), + }, + [1202] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3672), + [sym_comment] = ACTIONS(53), + }, + [1203] = { + [anon_sym_RBRACE] = ACTIONS(3672), + [sym_comment] = ACTIONS(53), + }, + [1204] = { + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1623), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_EQ] = ACTIONS(3676), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3678), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COLON_QMARK] = ACTIONS(3676), + [anon_sym_COLON_DASH] = ACTIONS(3676), + [anon_sym_PERCENT] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1205] = { + [sym__concat] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_RPAREN] = ACTIONS(2928), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [sym__special_characters] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_LT_LPAREN] = ACTIONS(2928), + [anon_sym_GT_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), + [sym_word] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2928), + }, + [1206] = { + [sym_concatenation] = STATE(1626), + [sym_string] = STATE(1625), + [sym_simple_expansion] = STATE(1625), + [sym_string_expansion] = STATE(1625), + [sym_expansion] = STATE(1625), + [sym_command_substitution] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [anon_sym_RBRACE] = ACTIONS(3672), + [sym__special_characters] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3682), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3682), + }, + [1207] = { + [sym__concat] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_RPAREN] = ACTIONS(2971), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [sym__special_characters] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_LT_LPAREN] = ACTIONS(2971), + [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), + [sym_word] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + }, + [1208] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3684), + }, + [1209] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1210] = { + [sym__concat] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2979), + [anon_sym_PIPE_AMP] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2979), + [anon_sym_LT_LPAREN] = ACTIONS(2979), + [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2979), + [sym_word] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + }, + [1211] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3688), + }, + [1212] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1213] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3692), + }, + [1214] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1215] = { + [sym_concatenation] = STATE(1633), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1633), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_EQ] = ACTIONS(3696), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_COLON_QMARK] = ACTIONS(3696), + [anon_sym_COLON_DASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1216] = { + [sym__concat] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_RPAREN] = ACTIONS(2995), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), + [anon_sym_PIPE_AMP] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [sym__special_characters] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2995), + [anon_sym_BQUOTE] = ACTIONS(2995), + [anon_sym_LT_LPAREN] = ACTIONS(2995), + [anon_sym_GT_LPAREN] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2995), + [sym_word] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), + }, + [1217] = { + [sym_concatenation] = STATE(1635), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1635), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_EQ] = ACTIONS(3702), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_COLON_QMARK] = ACTIONS(3702), + [anon_sym_COLON_DASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1218] = { + [sym__concat] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_SEMI_SEMI] = ACTIONS(3005), + [anon_sym_PIPE_AMP] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [sym__special_characters] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3005), + [anon_sym_LT_LPAREN] = ACTIONS(3005), + [anon_sym_GT_LPAREN] = ACTIONS(3005), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3005), + [sym_word] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + }, + [1219] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3706), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1220] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3706), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1221] = { + [sym__concat] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3036), + [sym_word] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), + }, + [1222] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3708), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1223] = { + [sym_file_descriptor] = ACTIONS(2818), + [sym__concat] = ACTIONS(2818), + [sym_variable_name] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_GT_GT] = ACTIONS(2818), + [anon_sym_AMP_GT] = ACTIONS(2820), + [anon_sym_AMP_GT_GT] = ACTIONS(2818), + [anon_sym_LT_AMP] = ACTIONS(2818), + [anon_sym_GT_AMP] = ACTIONS(2818), + [sym__special_characters] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2818), + [anon_sym_BQUOTE] = ACTIONS(2818), + [anon_sym_LT_LPAREN] = ACTIONS(2818), + [anon_sym_GT_LPAREN] = ACTIONS(2818), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2818), + }, + [1224] = { + [sym_file_descriptor] = ACTIONS(2832), + [sym__concat] = ACTIONS(2832), + [sym_variable_name] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2834), + [anon_sym_GT_GT] = ACTIONS(2832), + [anon_sym_AMP_GT] = ACTIONS(2834), + [anon_sym_AMP_GT_GT] = ACTIONS(2832), + [anon_sym_LT_AMP] = ACTIONS(2832), + [anon_sym_GT_AMP] = ACTIONS(2832), + [sym__special_characters] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), + [anon_sym_BQUOTE] = ACTIONS(2832), + [anon_sym_LT_LPAREN] = ACTIONS(2832), + [anon_sym_GT_LPAREN] = ACTIONS(2832), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2832), + }, + [1225] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3710), + [sym_comment] = ACTIONS(53), + }, + [1226] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3712), + [sym_comment] = ACTIONS(53), + }, + [1227] = { + [anon_sym_RBRACE] = ACTIONS(3712), + [sym_comment] = ACTIONS(53), + }, + [1228] = { + [sym_concatenation] = STATE(1641), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1641), + [anon_sym_RBRACE] = ACTIONS(3714), + [anon_sym_EQ] = ACTIONS(3716), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3716), + [anon_sym_COLON_QMARK] = ACTIONS(3716), + [anon_sym_COLON_DASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1229] = { + [sym_file_descriptor] = ACTIONS(2926), + [sym__concat] = ACTIONS(2926), + [sym_variable_name] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2928), + [anon_sym_GT] = ACTIONS(2928), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_AMP_GT] = ACTIONS(2928), + [anon_sym_AMP_GT_GT] = ACTIONS(2926), + [anon_sym_LT_AMP] = ACTIONS(2926), + [anon_sym_GT_AMP] = ACTIONS(2926), + [sym__special_characters] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), + [anon_sym_BQUOTE] = ACTIONS(2926), + [anon_sym_LT_LPAREN] = ACTIONS(2926), + [anon_sym_GT_LPAREN] = ACTIONS(2926), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2926), + }, + [1230] = { + [sym_concatenation] = STATE(1644), + [sym_string] = STATE(1643), + [sym_simple_expansion] = STATE(1643), + [sym_string_expansion] = STATE(1643), + [sym_expansion] = STATE(1643), + [sym_command_substitution] = STATE(1643), + [sym_process_substitution] = STATE(1643), + [anon_sym_RBRACE] = ACTIONS(3712), + [sym__special_characters] = ACTIONS(3720), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3722), + }, + [1231] = { + [sym_file_descriptor] = ACTIONS(2969), + [sym__concat] = ACTIONS(2969), + [sym_variable_name] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2969), + [anon_sym_AMP_GT] = ACTIONS(2971), + [anon_sym_AMP_GT_GT] = ACTIONS(2969), + [anon_sym_LT_AMP] = ACTIONS(2969), + [anon_sym_GT_AMP] = ACTIONS(2969), + [sym__special_characters] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2969), + [anon_sym_LT_LPAREN] = ACTIONS(2969), + [anon_sym_GT_LPAREN] = ACTIONS(2969), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2969), + }, + [1232] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3724), + }, + [1233] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1234] = { + [sym_file_descriptor] = ACTIONS(2977), + [sym__concat] = ACTIONS(2977), + [sym_variable_name] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_AMP_GT] = ACTIONS(2979), + [anon_sym_AMP_GT_GT] = ACTIONS(2977), + [anon_sym_LT_AMP] = ACTIONS(2977), + [anon_sym_GT_AMP] = ACTIONS(2977), + [sym__special_characters] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2977), + [anon_sym_BQUOTE] = ACTIONS(2977), + [anon_sym_LT_LPAREN] = ACTIONS(2977), + [anon_sym_GT_LPAREN] = ACTIONS(2977), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2977), + }, + [1235] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3728), + }, + [1236] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1237] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3732), + }, + [1238] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1239] = { + [sym_concatenation] = STATE(1651), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1651), + [anon_sym_RBRACE] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3736), + [anon_sym_COLON_QMARK] = ACTIONS(3736), + [anon_sym_COLON_DASH] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1240] = { + [sym_file_descriptor] = ACTIONS(2993), + [sym__concat] = ACTIONS(2993), + [sym_variable_name] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_GT] = ACTIONS(2995), + [anon_sym_AMP_GT_GT] = ACTIONS(2993), + [anon_sym_LT_AMP] = ACTIONS(2993), + [anon_sym_GT_AMP] = ACTIONS(2993), + [sym__special_characters] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2993), + [anon_sym_BQUOTE] = ACTIONS(2993), + [anon_sym_LT_LPAREN] = ACTIONS(2993), + [anon_sym_GT_LPAREN] = ACTIONS(2993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2993), + }, + [1241] = { + [sym_concatenation] = STATE(1653), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1653), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_EQ] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_DASH] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1242] = { + [sym_file_descriptor] = ACTIONS(3003), + [sym__concat] = ACTIONS(3003), + [sym_variable_name] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3003), + [anon_sym_AMP_GT] = ACTIONS(3005), + [anon_sym_AMP_GT_GT] = ACTIONS(3003), + [anon_sym_LT_AMP] = ACTIONS(3003), + [anon_sym_GT_AMP] = ACTIONS(3003), + [sym__special_characters] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3003), + [anon_sym_BQUOTE] = ACTIONS(3003), + [anon_sym_LT_LPAREN] = ACTIONS(3003), + [anon_sym_GT_LPAREN] = ACTIONS(3003), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3003), + }, + [1243] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1244] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1245] = { + [sym_file_descriptor] = ACTIONS(3034), + [sym__concat] = ACTIONS(3034), + [sym_variable_name] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3034), + [anon_sym_AMP_GT] = ACTIONS(3036), + [anon_sym_AMP_GT_GT] = ACTIONS(3034), + [anon_sym_LT_AMP] = ACTIONS(3034), + [anon_sym_GT_AMP] = ACTIONS(3034), + [sym__special_characters] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3034), + [anon_sym_BQUOTE] = ACTIONS(3034), + [anon_sym_LT_LPAREN] = ACTIONS(3034), + [anon_sym_GT_LPAREN] = ACTIONS(3034), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3034), + }, + [1246] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1247] = { + [sym__concat] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym__string_content] = ACTIONS(2832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + }, + [1248] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3750), + [sym_comment] = ACTIONS(53), + }, + [1249] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3752), + [sym_comment] = ACTIONS(53), + }, + [1250] = { + [anon_sym_RBRACE] = ACTIONS(3752), + [sym_comment] = ACTIONS(53), + }, + [1251] = { + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1659), + [anon_sym_RBRACE] = ACTIONS(3754), + [anon_sym_EQ] = ACTIONS(3756), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3756), + [anon_sym_COLON_QMARK] = ACTIONS(3756), + [anon_sym_COLON_DASH] = ACTIONS(3756), + [anon_sym_PERCENT] = ACTIONS(3756), + [anon_sym_DASH] = ACTIONS(3756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1252] = { + [sym__concat] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym__string_content] = ACTIONS(2926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [sym_comment] = ACTIONS(179), + }, + [1253] = { + [sym_concatenation] = STATE(1662), + [sym_string] = STATE(1661), + [sym_simple_expansion] = STATE(1661), + [sym_string_expansion] = STATE(1661), + [sym_expansion] = STATE(1661), + [sym_command_substitution] = STATE(1661), + [sym_process_substitution] = STATE(1661), + [anon_sym_RBRACE] = ACTIONS(3752), + [sym__special_characters] = ACTIONS(3760), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3762), + }, + [1254] = { + [sym__concat] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym__string_content] = ACTIONS(2969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), + [anon_sym_BQUOTE] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + }, + [1255] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3764), + }, + [1256] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1257] = { + [sym__concat] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym__string_content] = ACTIONS(2977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2979), + [sym_comment] = ACTIONS(179), + }, + [1258] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3768), + }, + [1259] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1260] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3772), + }, + [1261] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3752), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1262] = { + [sym_concatenation] = STATE(1669), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1669), + [anon_sym_RBRACE] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3776), + [anon_sym_COLON_QMARK] = ACTIONS(3776), + [anon_sym_COLON_DASH] = ACTIONS(3776), + [anon_sym_PERCENT] = ACTIONS(3776), + [anon_sym_DASH] = ACTIONS(3776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1263] = { + [sym__concat] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym__string_content] = ACTIONS(2993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2995), + [anon_sym_BQUOTE] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + }, + [1264] = { + [sym_concatenation] = STATE(1671), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1671), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_EQ] = ACTIONS(3782), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_DASH] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1265] = { + [sym__concat] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym__string_content] = ACTIONS(3003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3005), + [sym_comment] = ACTIONS(179), + }, + [1266] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3786), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1267] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3786), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1268] = { + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [anon_sym_RBRACK] = ACTIONS(3788), + [sym__special_characters] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1233), + }, + [1269] = { + [sym__concat] = ACTIONS(3790), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_EQ] = ACTIONS(3792), + [sym__special_characters] = ACTIONS(3792), + [anon_sym_DQUOTE] = ACTIONS(1985), + [anon_sym_DOLLAR] = ACTIONS(3792), + [sym_raw_string] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(1985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1985), + [anon_sym_SLASH] = ACTIONS(1985), + [anon_sym_COLON] = ACTIONS(3792), + [anon_sym_COLON_QMARK] = ACTIONS(3792), + [anon_sym_COLON_DASH] = ACTIONS(3792), + [anon_sym_PERCENT] = ACTIONS(3792), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1985), + [anon_sym_BQUOTE] = ACTIONS(1985), + [anon_sym_LT_LPAREN] = ACTIONS(1985), + [anon_sym_GT_LPAREN] = ACTIONS(1985), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3792), + }, + [1270] = { + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [anon_sym_RBRACK] = ACTIONS(3794), + [sym__special_characters] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1233), + }, + [1271] = { + [sym__concat] = ACTIONS(3796), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(3798), + [sym__special_characters] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(3798), + [sym_raw_string] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(1991), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_DASH] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1991), + [anon_sym_BQUOTE] = ACTIONS(1991), + [anon_sym_LT_LPAREN] = ACTIONS(1991), + [anon_sym_GT_LPAREN] = ACTIONS(1991), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3798), + }, + [1272] = { + [anon_sym_RBRACK] = ACTIONS(3794), + [sym_comment] = ACTIONS(53), + }, + [1273] = { + [sym_string] = STATE(1677), + [sym_simple_expansion] = STATE(1677), + [sym_string_expansion] = STATE(1677), + [sym_expansion] = STATE(1677), + [sym_command_substitution] = STATE(1677), + [sym_process_substitution] = STATE(1677), + [sym__special_characters] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3800), + }, + [1274] = { + [sym__simple_heredoc_body] = ACTIONS(3802), + [sym__heredoc_body_beginning] = ACTIONS(3802), + [sym_file_descriptor] = ACTIONS(3802), + [sym__concat] = ACTIONS(3802), + [anon_sym_esac] = ACTIONS(3804), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_SEMI_SEMI] = ACTIONS(3804), + [anon_sym_PIPE_AMP] = ACTIONS(3804), + [anon_sym_AMP_AMP] = ACTIONS(3804), + [anon_sym_PIPE_PIPE] = ACTIONS(3804), + [anon_sym_EQ_TILDE] = ACTIONS(3804), + [anon_sym_EQ_EQ] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_GT] = ACTIONS(3804), + [anon_sym_GT_GT] = ACTIONS(3804), + [anon_sym_AMP_GT] = ACTIONS(3804), + [anon_sym_AMP_GT_GT] = ACTIONS(3804), + [anon_sym_LT_AMP] = ACTIONS(3804), + [anon_sym_GT_AMP] = ACTIONS(3804), + [anon_sym_LT_LT] = ACTIONS(3804), + [anon_sym_LT_LT_DASH] = ACTIONS(3804), + [anon_sym_LT_LT_LT] = ACTIONS(3804), + [sym__special_characters] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3804), + [anon_sym_BQUOTE] = ACTIONS(3804), + [anon_sym_LT_LPAREN] = ACTIONS(3804), + [anon_sym_GT_LPAREN] = ACTIONS(3804), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3804), + }, + [1275] = { + [aux_sym_concatenation_repeat1] = STATE(1678), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(683), + [sym_comment] = ACTIONS(53), + }, + [1276] = { + [sym__concat] = ACTIONS(687), + [anon_sym_RBRACE] = ACTIONS(687), + [sym_comment] = ACTIONS(53), + }, + [1277] = { + [anon_sym_DQUOTE] = ACTIONS(3806), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [1278] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(3806), + [anon_sym_DOLLAR] = ACTIONS(3808), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [1279] = { + [sym__concat] = ACTIONS(719), + [anon_sym_RBRACE] = ACTIONS(719), + [sym_comment] = ACTIONS(53), + }, + [1280] = { + [sym__concat] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(723), + [sym_comment] = ACTIONS(53), + }, + [1281] = { + [sym__concat] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(727), + [sym_comment] = ACTIONS(53), + }, + [1282] = { + [sym__simple_heredoc_body] = ACTIONS(3810), + [sym__heredoc_body_beginning] = ACTIONS(3810), + [sym_file_descriptor] = ACTIONS(3810), + [sym__concat] = ACTIONS(3810), + [anon_sym_esac] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3812), + [anon_sym_RPAREN] = ACTIONS(3812), + [anon_sym_SEMI_SEMI] = ACTIONS(3812), + [anon_sym_PIPE_AMP] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3812), + [anon_sym_EQ_TILDE] = ACTIONS(3812), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_LT] = ACTIONS(3812), + [anon_sym_GT] = ACTIONS(3812), + [anon_sym_GT_GT] = ACTIONS(3812), + [anon_sym_AMP_GT] = ACTIONS(3812), + [anon_sym_AMP_GT_GT] = ACTIONS(3812), + [anon_sym_LT_AMP] = ACTIONS(3812), + [anon_sym_GT_AMP] = ACTIONS(3812), + [anon_sym_LT_LT] = ACTIONS(3812), + [anon_sym_LT_LT_DASH] = ACTIONS(3812), + [anon_sym_LT_LT_LT] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3812), + [anon_sym_BQUOTE] = ACTIONS(3812), + [anon_sym_LT_LPAREN] = ACTIONS(3812), + [anon_sym_GT_LPAREN] = ACTIONS(3812), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_LF] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3812), + }, + [1283] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(3814), + [sym_comment] = ACTIONS(53), + }, + [1284] = { + [sym_concatenation] = STATE(1684), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1684), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_EQ] = ACTIONS(3818), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_DASH] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1285] = { + [sym_subscript] = STATE(1688), + [sym_variable_name] = ACTIONS(3824), + [anon_sym_DOLLAR] = ACTIONS(3826), + [anon_sym_DASH] = ACTIONS(3826), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3828), + [anon_sym_STAR] = ACTIONS(3826), + [anon_sym_AT] = ACTIONS(3826), + [anon_sym_QMARK] = ACTIONS(3826), + [anon_sym_0] = ACTIONS(3830), + [anon_sym__] = ACTIONS(3830), + }, + [1286] = { + [sym_concatenation] = STATE(1691), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1691), + [anon_sym_RBRACE] = ACTIONS(3832), + [anon_sym_EQ] = ACTIONS(3834), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3834), + [anon_sym_COLON_QMARK] = ACTIONS(3834), + [anon_sym_COLON_DASH] = ACTIONS(3834), + [anon_sym_PERCENT] = ACTIONS(3834), + [anon_sym_DASH] = ACTIONS(3834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1287] = { + [sym_concatenation] = STATE(1694), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1694), + [anon_sym_RBRACE] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_COLON] = ACTIONS(3842), + [anon_sym_COLON_QMARK] = ACTIONS(3842), + [anon_sym_COLON_DASH] = ACTIONS(3842), + [anon_sym_PERCENT] = ACTIONS(3842), + [anon_sym_DASH] = ACTIONS(3842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1288] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3848), + [anon_sym_SEMI_SEMI] = ACTIONS(3850), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_LF] = ACTIONS(3852), + [anon_sym_AMP] = ACTIONS(3850), + }, + [1289] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3848), + [anon_sym_SEMI_SEMI] = ACTIONS(3850), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_LF] = ACTIONS(3852), + [anon_sym_AMP] = ACTIONS(3850), + }, + [1290] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1697), + [sym_c_style_for_statement] = STATE(1697), + [sym_while_statement] = STATE(1697), + [sym_if_statement] = STATE(1697), + [sym_case_statement] = STATE(1697), + [sym_function_definition] = STATE(1697), + [sym_subshell] = STATE(1697), + [sym_pipeline] = STATE(1697), + [sym_list] = STATE(1697), + [sym_negated_command] = STATE(1697), + [sym_test_command] = STATE(1697), + [sym_declaration_command] = STATE(1697), + [sym_unset_command] = STATE(1697), + [sym_command] = STATE(1697), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1698), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [1291] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3854), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(3848), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3854), + [anon_sym_LF] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + }, + [1292] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3854), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3848), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3854), + [anon_sym_LF] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + }, + [1293] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1700), + [sym_c_style_for_statement] = STATE(1700), + [sym_while_statement] = STATE(1700), + [sym_if_statement] = STATE(1700), + [sym_case_statement] = STATE(1700), + [sym_function_definition] = STATE(1700), + [sym_subshell] = STATE(1700), + [sym_pipeline] = STATE(1700), + [sym_list] = STATE(1700), + [sym_negated_command] = STATE(1700), + [sym_test_command] = STATE(1700), + [sym_declaration_command] = STATE(1700), + [sym_unset_command] = STATE(1700), + [sym_command] = STATE(1700), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1701), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [1294] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3858), + [anon_sym_SEMI_SEMI] = ACTIONS(3860), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym_LF] = ACTIONS(3862), + [anon_sym_AMP] = ACTIONS(3860), + }, + [1295] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3858), + [anon_sym_SEMI_SEMI] = ACTIONS(3860), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym_LF] = ACTIONS(3862), + [anon_sym_AMP] = ACTIONS(3860), + }, + [1296] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1704), + [sym_c_style_for_statement] = STATE(1704), + [sym_while_statement] = STATE(1704), + [sym_if_statement] = STATE(1704), + [sym_case_statement] = STATE(1704), + [sym_function_definition] = STATE(1704), + [sym_subshell] = STATE(1704), + [sym_pipeline] = STATE(1704), + [sym_list] = STATE(1704), + [sym_negated_command] = STATE(1704), + [sym_test_command] = STATE(1704), + [sym_declaration_command] = STATE(1704), + [sym_unset_command] = STATE(1704), + [sym_command] = STATE(1704), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1705), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [1297] = { + [sym__concat] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1648), + [anon_sym_COLON] = ACTIONS(1650), + [anon_sym_COLON_QMARK] = ACTIONS(1650), + [anon_sym_COLON_DASH] = ACTIONS(1650), + [anon_sym_PERCENT] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_LT_LPAREN] = ACTIONS(1648), + [anon_sym_GT_LPAREN] = ACTIONS(1648), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + }, + [1298] = { + [aux_sym_concatenation_repeat1] = STATE(1298), + [sym__concat] = ACTIONS(3864), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1648), + [anon_sym_COLON] = ACTIONS(1650), + [anon_sym_COLON_QMARK] = ACTIONS(1650), + [anon_sym_COLON_DASH] = ACTIONS(1650), + [anon_sym_PERCENT] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_LT_LPAREN] = ACTIONS(1648), + [anon_sym_GT_LPAREN] = ACTIONS(1648), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + }, + [1299] = { + [sym__concat] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1657), + [sym__special_characters] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1655), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1657), + [anon_sym_COLON_QMARK] = ACTIONS(1657), + [anon_sym_COLON_DASH] = ACTIONS(1657), + [anon_sym_PERCENT] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1655), + [anon_sym_BQUOTE] = ACTIONS(1655), + [anon_sym_LT_LPAREN] = ACTIONS(1655), + [anon_sym_GT_LPAREN] = ACTIONS(1655), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1657), + }, + [1300] = { + [anon_sym_DQUOTE] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [1301] = { + [sym_concatenation] = STATE(1710), + [sym_string] = STATE(1709), + [sym_simple_expansion] = STATE(1709), + [sym_string_expansion] = STATE(1709), + [sym_expansion] = STATE(1709), + [sym_command_substitution] = STATE(1709), + [sym_process_substitution] = STATE(1709), + [anon_sym_RBRACE] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3871), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3873), + }, + [1302] = { + [sym__concat] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1750), + [sym__special_characters] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1748), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1750), + [anon_sym_COLON_QMARK] = ACTIONS(1750), + [anon_sym_COLON_DASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1748), + [anon_sym_BQUOTE] = ACTIONS(1748), + [anon_sym_LT_LPAREN] = ACTIONS(1748), + [anon_sym_GT_LPAREN] = ACTIONS(1748), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1750), + }, + [1303] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3875), + }, + [1304] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3877), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1305] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(3879), + [sym_comment] = ACTIONS(53), + }, + [1306] = { + [sym_concatenation] = STATE(1716), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1716), + [anon_sym_RBRACE] = ACTIONS(3881), + [anon_sym_EQ] = ACTIONS(3883), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_COLON] = ACTIONS(3883), + [anon_sym_COLON_QMARK] = ACTIONS(3883), + [anon_sym_COLON_DASH] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1307] = { + [sym_concatenation] = STATE(1719), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1719), + [anon_sym_RBRACE] = ACTIONS(3889), + [anon_sym_EQ] = ACTIONS(3891), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_COLON] = ACTIONS(3891), + [anon_sym_COLON_QMARK] = ACTIONS(3891), + [anon_sym_COLON_DASH] = ACTIONS(3891), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_DASH] = ACTIONS(3891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1308] = { + [sym_concatenation] = STATE(1721), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1721), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_EQ] = ACTIONS(3897), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3897), + [anon_sym_COLON_QMARK] = ACTIONS(3897), + [anon_sym_COLON_DASH] = ACTIONS(3897), + [anon_sym_PERCENT] = ACTIONS(3897), + [anon_sym_DASH] = ACTIONS(3897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1309] = { + [sym__concat] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_EQ] = ACTIONS(1818), + [sym__special_characters] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1816), + [anon_sym_POUND] = ACTIONS(1816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1816), + [anon_sym_COLON] = ACTIONS(1818), + [anon_sym_COLON_QMARK] = ACTIONS(1818), + [anon_sym_COLON_DASH] = ACTIONS(1818), + [anon_sym_PERCENT] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), + [anon_sym_BQUOTE] = ACTIONS(1816), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1818), + }, + [1310] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3903), + }, + [1311] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1312] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_COLON] = ACTIONS(1826), + [anon_sym_COLON_QMARK] = ACTIONS(1826), + [anon_sym_COLON_DASH] = ACTIONS(1826), + [anon_sym_PERCENT] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [anon_sym_LT_LPAREN] = ACTIONS(1824), + [anon_sym_GT_LPAREN] = ACTIONS(1824), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1826), + }, + [1313] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3907), + }, + [1314] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1315] = { + [sym__simple_heredoc_body] = ACTIONS(3909), + [sym__heredoc_body_beginning] = ACTIONS(3909), + [sym_file_descriptor] = ACTIONS(3909), + [sym__concat] = ACTIONS(3909), + [anon_sym_esac] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_RPAREN] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [anon_sym_PIPE_AMP] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_EQ_TILDE] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3911), + [anon_sym_AMP_GT_GT] = ACTIONS(3911), + [anon_sym_LT_AMP] = ACTIONS(3911), + [anon_sym_GT_AMP] = ACTIONS(3911), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LT_LT_DASH] = ACTIONS(3911), + [anon_sym_LT_LT_LT] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), + [anon_sym_LT_LPAREN] = ACTIONS(3911), + [anon_sym_GT_LPAREN] = ACTIONS(3911), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + }, + [1316] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1317] = { + [sym__concat] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_EQ] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), + [anon_sym_COLON] = ACTIONS(1832), + [anon_sym_COLON_QMARK] = ACTIONS(1832), + [anon_sym_COLON_DASH] = ACTIONS(1832), + [anon_sym_PERCENT] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), + [anon_sym_BQUOTE] = ACTIONS(1830), + [anon_sym_LT_LPAREN] = ACTIONS(1830), + [anon_sym_GT_LPAREN] = ACTIONS(1830), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1832), + }, + [1318] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1319] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3917), + [anon_sym_SEMI_SEMI] = ACTIONS(3919), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3919), + }, + [1320] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3917), + [anon_sym_SEMI_SEMI] = ACTIONS(3919), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3919), + }, + [1321] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1322] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3923), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(3917), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3923), + }, + [1323] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(3923), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3917), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3923), + }, + [1324] = { + [sym__concat] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1866), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1864), + [anon_sym_COLON] = ACTIONS(1866), + [anon_sym_COLON_QMARK] = ACTIONS(1866), + [anon_sym_COLON_DASH] = ACTIONS(1866), + [anon_sym_PERCENT] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1864), + [anon_sym_BQUOTE] = ACTIONS(1864), + [anon_sym_LT_LPAREN] = ACTIONS(1864), + [anon_sym_GT_LPAREN] = ACTIONS(1864), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1866), + }, + [1325] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1326] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_SEMI_SEMI] = ACTIONS(3931), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3931), + }, + [1327] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_SEMI_SEMI] = ACTIONS(3931), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3931), + }, + [1328] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3935), + [sym_comment] = ACTIONS(53), + }, + [1329] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3937), + [sym_comment] = ACTIONS(53), + }, + [1330] = { + [anon_sym_RBRACE] = ACTIONS(3937), + [sym_comment] = ACTIONS(53), + }, + [1331] = { + [sym_concatenation] = STATE(1734), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1734), + [anon_sym_RBRACE] = ACTIONS(3939), + [anon_sym_EQ] = ACTIONS(3941), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_DASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1332] = { + [sym__simple_heredoc_body] = ACTIONS(3945), + [sym__heredoc_body_beginning] = ACTIONS(3945), + [sym_file_descriptor] = ACTIONS(3945), + [sym__concat] = ACTIONS(3945), + [anon_sym_esac] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3947), + [anon_sym_PIPE_AMP] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_EQ_TILDE] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_AMP_GT] = ACTIONS(3947), + [anon_sym_AMP_GT_GT] = ACTIONS(3947), + [anon_sym_LT_AMP] = ACTIONS(3947), + [anon_sym_GT_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_LT_LT_DASH] = ACTIONS(3947), + [anon_sym_LT_LT_LT] = ACTIONS(3947), + [sym__special_characters] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), + [anon_sym_BQUOTE] = ACTIONS(3947), + [anon_sym_LT_LPAREN] = ACTIONS(3947), + [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3947), + }, + [1333] = { + [sym_concatenation] = STATE(1736), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1736), + [anon_sym_RBRACE] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3951), + [anon_sym_COLON_QMARK] = ACTIONS(3951), + [anon_sym_COLON_DASH] = ACTIONS(3951), + [anon_sym_PERCENT] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1334] = { + [sym__simple_heredoc_body] = ACTIONS(3955), + [sym__heredoc_body_beginning] = ACTIONS(3955), + [sym_file_descriptor] = ACTIONS(3955), + [sym__concat] = ACTIONS(3955), + [anon_sym_esac] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_SEMI_SEMI] = ACTIONS(3957), + [anon_sym_PIPE_AMP] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_EQ_TILDE] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3957), + [anon_sym_GT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3957), + [anon_sym_AMP_GT] = ACTIONS(3957), + [anon_sym_AMP_GT_GT] = ACTIONS(3957), + [anon_sym_LT_AMP] = ACTIONS(3957), + [anon_sym_GT_AMP] = ACTIONS(3957), + [anon_sym_LT_LT] = ACTIONS(3957), + [anon_sym_LT_LT_DASH] = ACTIONS(3957), + [anon_sym_LT_LT_LT] = ACTIONS(3957), + [sym__special_characters] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), + [anon_sym_BQUOTE] = ACTIONS(3957), + [anon_sym_LT_LPAREN] = ACTIONS(3957), + [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), + }, + [1335] = { + [sym_concatenation] = STATE(1738), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1738), + [anon_sym_RBRACE] = ACTIONS(3959), + [anon_sym_EQ] = ACTIONS(3961), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(3963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_DASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1336] = { + [sym__simple_heredoc_body] = ACTIONS(3965), + [sym__heredoc_body_beginning] = ACTIONS(3965), + [sym_file_descriptor] = ACTIONS(3965), + [sym__concat] = ACTIONS(3965), + [anon_sym_esac] = ACTIONS(3967), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_RPAREN] = ACTIONS(3967), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3967), + [anon_sym_EQ_TILDE] = ACTIONS(3967), + [anon_sym_EQ_EQ] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_GT] = ACTIONS(3967), + [anon_sym_GT_GT] = ACTIONS(3967), + [anon_sym_AMP_GT] = ACTIONS(3967), + [anon_sym_AMP_GT_GT] = ACTIONS(3967), + [anon_sym_LT_AMP] = ACTIONS(3967), + [anon_sym_GT_AMP] = ACTIONS(3967), + [anon_sym_LT_LT] = ACTIONS(3967), + [anon_sym_LT_LT_DASH] = ACTIONS(3967), + [anon_sym_LT_LT_LT] = ACTIONS(3967), + [sym__special_characters] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3967), + [anon_sym_BQUOTE] = ACTIONS(3967), + [anon_sym_LT_LPAREN] = ACTIONS(3967), + [anon_sym_GT_LPAREN] = ACTIONS(3967), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), + }, + [1337] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1338] = { + [sym__simple_heredoc_body] = ACTIONS(3971), + [sym__heredoc_body_beginning] = ACTIONS(3971), + [sym_file_descriptor] = ACTIONS(3971), + [sym__concat] = ACTIONS(3971), + [anon_sym_esac] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3973), + [anon_sym_RPAREN] = ACTIONS(3973), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_EQ_TILDE] = ACTIONS(3973), + [anon_sym_EQ_EQ] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3973), + [anon_sym_GT] = ACTIONS(3973), + [anon_sym_GT_GT] = ACTIONS(3973), + [anon_sym_AMP_GT] = ACTIONS(3973), + [anon_sym_AMP_GT_GT] = ACTIONS(3973), + [anon_sym_LT_AMP] = ACTIONS(3973), + [anon_sym_GT_AMP] = ACTIONS(3973), + [anon_sym_LT_LT] = ACTIONS(3973), + [anon_sym_LT_LT_DASH] = ACTIONS(3973), + [anon_sym_LT_LT_LT] = ACTIONS(3973), + [sym__special_characters] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3973), + [anon_sym_BQUOTE] = ACTIONS(3973), + [anon_sym_LT_LPAREN] = ACTIONS(3973), + [anon_sym_GT_LPAREN] = ACTIONS(3973), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_LF] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3973), + }, + [1339] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(3975), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1340] = { + [sym__simple_heredoc_body] = ACTIONS(3977), + [sym__heredoc_body_beginning] = ACTIONS(3977), + [sym_file_descriptor] = ACTIONS(3977), + [sym__concat] = ACTIONS(3977), + [anon_sym_esac] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_RPAREN] = ACTIONS(3979), + [anon_sym_SEMI_SEMI] = ACTIONS(3979), + [anon_sym_PIPE_AMP] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_EQ_TILDE] = ACTIONS(3979), + [anon_sym_EQ_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_AMP_GT] = ACTIONS(3979), + [anon_sym_AMP_GT_GT] = ACTIONS(3979), + [anon_sym_LT_AMP] = ACTIONS(3979), + [anon_sym_GT_AMP] = ACTIONS(3979), + [anon_sym_LT_LT] = ACTIONS(3979), + [anon_sym_LT_LT_DASH] = ACTIONS(3979), + [anon_sym_LT_LT_LT] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [anon_sym_LT_LPAREN] = ACTIONS(3979), + [anon_sym_GT_LPAREN] = ACTIONS(3979), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_LF] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3979), + }, + [1341] = { + [sym_file_redirect] = STATE(904), + [sym_heredoc_redirect] = STATE(904), + [sym_heredoc_body] = STATE(1037), + [sym_herestring_redirect] = STATE(904), + [aux_sym_while_statement_repeat1] = STATE(904), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_SEMI_SEMI] = ACTIONS(2209), + [anon_sym_PIPE_AMP] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(2209), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2209), + }, + [1342] = { + [sym_compound_statement] = STATE(1741), + [anon_sym_LBRACE] = ACTIONS(435), + [sym_comment] = ACTIONS(53), + }, + [1343] = { + [anon_sym_LT] = ACTIONS(3981), + [anon_sym_GT] = ACTIONS(3981), + [anon_sym_GT_GT] = ACTIONS(3983), + [anon_sym_AMP_GT] = ACTIONS(3981), + [anon_sym_AMP_GT_GT] = ACTIONS(3983), + [anon_sym_LT_AMP] = ACTIONS(3983), + [anon_sym_GT_AMP] = ACTIONS(3983), + [sym_comment] = ACTIONS(53), + }, + [1344] = { + [sym_concatenation] = STATE(1087), + [sym_string] = STATE(1744), + [sym_simple_expansion] = STATE(1744), + [sym_string_expansion] = STATE(1744), + [sym_expansion] = STATE(1744), + [sym_command_substitution] = STATE(1744), + [sym_process_substitution] = STATE(1744), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(3987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(1503), + [anon_sym_LT_LPAREN] = ACTIONS(1505), + [anon_sym_GT_LPAREN] = ACTIONS(1505), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3987), + }, + [1345] = { + [anon_sym_LT] = ACTIONS(3989), + [anon_sym_GT] = ACTIONS(3989), + [anon_sym_GT_GT] = ACTIONS(3991), + [anon_sym_AMP_GT] = ACTIONS(3989), + [anon_sym_AMP_GT_GT] = ACTIONS(3991), + [anon_sym_LT_AMP] = ACTIONS(3991), + [anon_sym_GT_AMP] = ACTIONS(3991), + [sym_comment] = ACTIONS(53), + }, + [1346] = { + [sym_concatenation] = STATE(1143), + [sym_string] = STATE(1747), + [sym_simple_expansion] = STATE(1747), + [sym_string_expansion] = STATE(1747), + [sym_expansion] = STATE(1747), + [sym_command_substitution] = STATE(1747), + [sym_process_substitution] = STATE(1747), + [sym__special_characters] = ACTIONS(3993), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(3995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3995), + }, + [1347] = { + [sym_concatenation] = STATE(1147), + [sym_string] = STATE(1749), + [sym_simple_expansion] = STATE(1749), + [sym_string_expansion] = STATE(1749), + [sym_expansion] = STATE(1749), + [sym_command_substitution] = STATE(1749), + [sym_process_substitution] = STATE(1749), + [sym__special_characters] = ACTIONS(3997), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(3999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3999), + }, + [1348] = { + [sym_file_redirect] = STATE(1750), + [sym_heredoc_redirect] = STATE(1750), + [sym_herestring_redirect] = STATE(1750), + [aux_sym_while_statement_repeat1] = STATE(1750), + [sym_file_descriptor] = ACTIONS(3015), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_SEMI_SEMI] = ACTIONS(2496), + [anon_sym_PIPE_AMP] = ACTIONS(2496), + [anon_sym_AMP_AMP] = ACTIONS(2496), + [anon_sym_PIPE_PIPE] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_GT_GT] = ACTIONS(3017), + [anon_sym_AMP_GT] = ACTIONS(3017), + [anon_sym_AMP_GT_GT] = ACTIONS(3017), + [anon_sym_LT_AMP] = ACTIONS(3017), + [anon_sym_GT_AMP] = ACTIONS(3017), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_LT_LT_DASH] = ACTIONS(1295), + [anon_sym_LT_LT_LT] = ACTIONS(3019), + [anon_sym_BQUOTE] = ACTIONS(2496), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_LF] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + }, + [1349] = { + [sym_file_redirect] = STATE(1355), + [sym_file_descriptor] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_SEMI_SEMI] = ACTIONS(2330), + [anon_sym_PIPE_AMP] = ACTIONS(2330), + [anon_sym_AMP_AMP] = ACTIONS(2330), + [anon_sym_PIPE_PIPE] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(3013), + [anon_sym_LT_AMP] = ACTIONS(3013), + [anon_sym_GT_AMP] = ACTIONS(3013), + [anon_sym_BQUOTE] = ACTIONS(2330), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_LF] = ACTIONS(2332), + [anon_sym_AMP] = ACTIONS(2330), + }, + [1350] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__simple_heredoc_body] = ACTIONS(955), + [sym__heredoc_body_beginning] = ACTIONS(955), + [sym_file_descriptor] = ACTIONS(955), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [1351] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__simple_heredoc_body] = ACTIONS(959), + [sym__heredoc_body_beginning] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [1352] = { + [aux_sym_concatenation_repeat1] = STATE(1751), + [sym__simple_heredoc_body] = ACTIONS(683), + [sym__heredoc_body_beginning] = ACTIONS(683), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [1353] = { + [sym_file_redirect] = STATE(904), + [sym_heredoc_redirect] = STATE(904), + [sym_heredoc_body] = STATE(1371), + [sym_herestring_redirect] = STATE(904), + [aux_sym_while_statement_repeat1] = STATE(904), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(3089), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + }, + [1354] = { + [sym__simple_heredoc_body] = ACTIONS(4001), + [sym__heredoc_body_beginning] = ACTIONS(4001), + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4003), + [anon_sym_PIPE_AMP] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_PIPE_PIPE] = ACTIONS(4003), + [anon_sym_EQ_TILDE] = ACTIONS(4003), + [anon_sym_EQ_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4003), + [anon_sym_LT_AMP] = ACTIONS(4003), + [anon_sym_GT_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4003), + [anon_sym_LT_LT_LT] = ACTIONS(4003), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4003), + [anon_sym_BQUOTE] = ACTIONS(4003), + [anon_sym_LT_LPAREN] = ACTIONS(4003), + [anon_sym_GT_LPAREN] = ACTIONS(4003), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4003), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1355] = { + [anon_sym_esac] = ACTIONS(3470), + [anon_sym_PIPE] = ACTIONS(3470), + [anon_sym_RPAREN] = ACTIONS(3470), + [anon_sym_SEMI_SEMI] = ACTIONS(3470), + [anon_sym_PIPE_AMP] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_PIPE_PIPE] = ACTIONS(3470), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_LF] = ACTIONS(3472), + [anon_sym_AMP] = ACTIONS(3470), + }, + [1356] = { + [sym_concatenation] = STATE(1755), + [sym_string] = STATE(1754), + [sym_simple_expansion] = STATE(1754), + [sym_string_expansion] = STATE(1754), + [sym_expansion] = STATE(1754), + [sym_command_substitution] = STATE(1754), + [sym_process_substitution] = STATE(1754), + [anon_sym_RBRACE] = ACTIONS(4005), + [sym__special_characters] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(4009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4009), + }, + [1357] = { + [sym__heredoc_body_middle] = ACTIONS(1748), + [sym__heredoc_body_end] = ACTIONS(1748), + [anon_sym_DOLLAR] = ACTIONS(1750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1748), + [sym_comment] = ACTIONS(53), + }, + [1358] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4011), + }, + [1359] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4013), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1360] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(4015), + [sym_comment] = ACTIONS(53), + }, + [1361] = { + [sym_concatenation] = STATE(1761), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1761), + [anon_sym_RBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4019), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4023), + [anon_sym_COLON] = ACTIONS(4019), + [anon_sym_COLON_QMARK] = ACTIONS(4019), + [anon_sym_COLON_DASH] = ACTIONS(4019), + [anon_sym_PERCENT] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1362] = { + [sym_concatenation] = STATE(1764), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1764), + [anon_sym_RBRACE] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4027), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4031), + [anon_sym_COLON] = ACTIONS(4027), + [anon_sym_COLON_QMARK] = ACTIONS(4027), + [anon_sym_COLON_DASH] = ACTIONS(4027), + [anon_sym_PERCENT] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1363] = { + [sym_concatenation] = STATE(1766), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1766), + [anon_sym_RBRACE] = ACTIONS(4005), + [anon_sym_EQ] = ACTIONS(4033), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4037), + [anon_sym_COLON] = ACTIONS(4033), + [anon_sym_COLON_QMARK] = ACTIONS(4033), + [anon_sym_COLON_DASH] = ACTIONS(4033), + [anon_sym_PERCENT] = ACTIONS(4033), + [anon_sym_DASH] = ACTIONS(4033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1364] = { + [sym__heredoc_body_middle] = ACTIONS(1816), + [sym__heredoc_body_end] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1816), + [sym_comment] = ACTIONS(53), + }, + [1365] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4039), + }, + [1366] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4041), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1367] = { + [sym__heredoc_body_middle] = ACTIONS(1824), + [sym__heredoc_body_end] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [sym_comment] = ACTIONS(53), + }, + [1368] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4043), + }, + [1369] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4005), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1370] = { + [aux_sym_concatenation_repeat1] = STATE(1370), + [sym__simple_heredoc_body] = ACTIONS(1648), + [sym__heredoc_body_beginning] = ACTIONS(1648), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1371] = { + [anon_sym_esac] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_RPAREN] = ACTIONS(4045), + [anon_sym_SEMI_SEMI] = ACTIONS(4045), + [anon_sym_PIPE_AMP] = ACTIONS(4045), + [anon_sym_AMP_AMP] = ACTIONS(4045), + [anon_sym_PIPE_PIPE] = ACTIONS(4045), + [anon_sym_BQUOTE] = ACTIONS(4045), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4047), + [anon_sym_AMP] = ACTIONS(4045), + }, + [1372] = { + [anon_sym_EQ] = ACTIONS(4049), + [anon_sym_PLUS_EQ] = ACTIONS(4049), + [sym_comment] = ACTIONS(53), + }, + [1373] = { + [anon_sym_EQ] = ACTIONS(4051), + [anon_sym_PLUS_EQ] = ACTIONS(4051), + [sym_comment] = ACTIONS(53), + }, + [1374] = { + [sym__concat] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [sym__special_characters] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_LT_LPAREN] = ACTIONS(1648), + [anon_sym_GT_LPAREN] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1648), + }, + [1375] = { + [aux_sym_concatenation_repeat1] = STATE(1375), + [sym__concat] = ACTIONS(4053), + [anon_sym_RPAREN] = ACTIONS(1648), + [sym__special_characters] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_LT_LPAREN] = ACTIONS(1648), + [anon_sym_GT_LPAREN] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1648), + }, + [1376] = { + [sym__concat] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [sym__special_characters] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1655), + [anon_sym_BQUOTE] = ACTIONS(1655), + [anon_sym_LT_LPAREN] = ACTIONS(1655), + [anon_sym_GT_LPAREN] = ACTIONS(1655), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1655), + }, + [1377] = { + [anon_sym_DQUOTE] = ACTIONS(4056), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [1378] = { + [sym_concatenation] = STATE(1774), + [sym_string] = STATE(1773), + [sym_simple_expansion] = STATE(1773), + [sym_string_expansion] = STATE(1773), + [sym_expansion] = STATE(1773), + [sym_command_substitution] = STATE(1773), + [sym_process_substitution] = STATE(1773), + [anon_sym_RBRACE] = ACTIONS(4058), + [sym__special_characters] = ACTIONS(4060), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4062), + }, + [1379] = { + [sym__concat] = ACTIONS(1748), + [anon_sym_RPAREN] = ACTIONS(1748), + [sym__special_characters] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1748), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1748), + [anon_sym_BQUOTE] = ACTIONS(1748), + [anon_sym_LT_LPAREN] = ACTIONS(1748), + [anon_sym_GT_LPAREN] = ACTIONS(1748), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1748), + }, + [1380] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4064), + }, + [1381] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4066), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1382] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + }, + [1383] = { + [sym_concatenation] = STATE(1780), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1780), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4072), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4076), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_COLON_QMARK] = ACTIONS(4072), + [anon_sym_COLON_DASH] = ACTIONS(4072), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1384] = { + [sym_concatenation] = STATE(1783), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1783), + [anon_sym_RBRACE] = ACTIONS(4078), + [anon_sym_EQ] = ACTIONS(4080), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(4080), + [anon_sym_COLON_QMARK] = ACTIONS(4080), + [anon_sym_COLON_DASH] = ACTIONS(4080), + [anon_sym_PERCENT] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1385] = { + [sym_concatenation] = STATE(1785), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1785), + [anon_sym_RBRACE] = ACTIONS(4058), + [anon_sym_EQ] = ACTIONS(4086), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4086), + [anon_sym_COLON_QMARK] = ACTIONS(4086), + [anon_sym_COLON_DASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1386] = { + [sym__concat] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [sym__special_characters] = ACTIONS(1816), + [anon_sym_DQUOTE] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1816), + [anon_sym_BQUOTE] = ACTIONS(1816), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1816), + }, + [1387] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4092), + }, + [1388] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1389] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [sym__special_characters] = ACTIONS(1824), + [anon_sym_DQUOTE] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_BQUOTE] = ACTIONS(1824), + [anon_sym_LT_LPAREN] = ACTIONS(1824), + [anon_sym_GT_LPAREN] = ACTIONS(1824), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1824), + }, + [1390] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4096), + }, + [1391] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4058), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1392] = { + [sym__concat] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1830), + [sym__special_characters] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), + [anon_sym_BQUOTE] = ACTIONS(1830), + [anon_sym_LT_LPAREN] = ACTIONS(1830), + [anon_sym_GT_LPAREN] = ACTIONS(1830), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1830), + }, + [1393] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1394] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4100), + [anon_sym_SEMI_SEMI] = ACTIONS(4102), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_LF] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + }, + [1395] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4100), + [anon_sym_SEMI_SEMI] = ACTIONS(4102), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_LF] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + }, + [1396] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1397] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4106), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(4100), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_LF] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4106), + }, + [1398] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4106), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(4100), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_LF] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4106), + }, + [1399] = { + [sym__concat] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [sym__special_characters] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1864), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1864), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1864), + [anon_sym_BQUOTE] = ACTIONS(1864), + [anon_sym_LT_LPAREN] = ACTIONS(1864), + [anon_sym_GT_LPAREN] = ACTIONS(1864), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1864), + }, + [1400] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1401] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4112), + [anon_sym_SEMI_SEMI] = ACTIONS(4114), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym_LF] = ACTIONS(4116), + [anon_sym_AMP] = ACTIONS(4114), + }, + [1402] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4112), + [anon_sym_SEMI_SEMI] = ACTIONS(4114), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym_LF] = ACTIONS(4116), + [anon_sym_AMP] = ACTIONS(4114), + }, + [1403] = { + [sym_file_descriptor] = ACTIONS(2818), + [sym__concat] = ACTIONS(2818), + [sym_variable_name] = ACTIONS(2818), + [anon_sym_esac] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_SEMI_SEMI] = ACTIONS(2820), + [anon_sym_PIPE_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_AMP_GT] = ACTIONS(2820), + [anon_sym_AMP_GT_GT] = ACTIONS(2820), + [anon_sym_LT_AMP] = ACTIONS(2820), + [anon_sym_GT_AMP] = ACTIONS(2820), + [sym__special_characters] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), + [anon_sym_BQUOTE] = ACTIONS(2820), + [anon_sym_LT_LPAREN] = ACTIONS(2820), + [anon_sym_GT_LPAREN] = ACTIONS(2820), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + }, + [1404] = { + [sym_file_descriptor] = ACTIONS(2832), + [sym__concat] = ACTIONS(2832), + [sym_variable_name] = ACTIONS(2832), + [anon_sym_esac] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_SEMI_SEMI] = ACTIONS(2834), + [anon_sym_PIPE_AMP] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2834), + [anon_sym_GT_GT] = ACTIONS(2834), + [anon_sym_AMP_GT] = ACTIONS(2834), + [anon_sym_AMP_GT_GT] = ACTIONS(2834), + [anon_sym_LT_AMP] = ACTIONS(2834), + [anon_sym_GT_AMP] = ACTIONS(2834), + [sym__special_characters] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2834), + [anon_sym_LT_LPAREN] = ACTIONS(2834), + [anon_sym_GT_LPAREN] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), + }, + [1405] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4118), + [sym_comment] = ACTIONS(53), + }, + [1406] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4120), + [sym_comment] = ACTIONS(53), + }, + [1407] = { + [anon_sym_RBRACE] = ACTIONS(4120), + [sym_comment] = ACTIONS(53), + }, + [1408] = { + [sym_concatenation] = STATE(1797), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1797), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4124), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4124), + [anon_sym_COLON_QMARK] = ACTIONS(4124), + [anon_sym_COLON_DASH] = ACTIONS(4124), + [anon_sym_PERCENT] = ACTIONS(4124), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1409] = { + [sym_file_descriptor] = ACTIONS(2926), + [sym__concat] = ACTIONS(2926), + [sym_variable_name] = ACTIONS(2926), + [anon_sym_esac] = ACTIONS(2928), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_RPAREN] = ACTIONS(2928), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2928), + [anon_sym_GT] = ACTIONS(2928), + [anon_sym_GT_GT] = ACTIONS(2928), + [anon_sym_AMP_GT] = ACTIONS(2928), + [anon_sym_AMP_GT_GT] = ACTIONS(2928), + [anon_sym_LT_AMP] = ACTIONS(2928), + [anon_sym_GT_AMP] = ACTIONS(2928), + [sym__special_characters] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_LT_LPAREN] = ACTIONS(2928), + [anon_sym_GT_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2928), + }, + [1410] = { + [sym_concatenation] = STATE(1800), + [sym_string] = STATE(1799), + [sym_simple_expansion] = STATE(1799), + [sym_string_expansion] = STATE(1799), + [sym_expansion] = STATE(1799), + [sym_command_substitution] = STATE(1799), + [sym_process_substitution] = STATE(1799), + [anon_sym_RBRACE] = ACTIONS(4120), + [sym__special_characters] = ACTIONS(4128), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(4130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4130), + }, + [1411] = { + [sym_file_descriptor] = ACTIONS(2969), + [sym__concat] = ACTIONS(2969), + [sym_variable_name] = ACTIONS(2969), + [anon_sym_esac] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_RPAREN] = ACTIONS(2971), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2971), + [anon_sym_AMP_GT] = ACTIONS(2971), + [anon_sym_AMP_GT_GT] = ACTIONS(2971), + [anon_sym_LT_AMP] = ACTIONS(2971), + [anon_sym_GT_AMP] = ACTIONS(2971), + [sym__special_characters] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_LT_LPAREN] = ACTIONS(2971), + [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + }, + [1412] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4132), + }, + [1413] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1414] = { + [sym_file_descriptor] = ACTIONS(2977), + [sym__concat] = ACTIONS(2977), + [sym_variable_name] = ACTIONS(2977), + [anon_sym_esac] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2979), + [anon_sym_PIPE_AMP] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2979), + [anon_sym_AMP_GT] = ACTIONS(2979), + [anon_sym_AMP_GT_GT] = ACTIONS(2979), + [anon_sym_LT_AMP] = ACTIONS(2979), + [anon_sym_GT_AMP] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2979), + [anon_sym_LT_LPAREN] = ACTIONS(2979), + [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + }, + [1415] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4136), + }, + [1416] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1417] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4140), + }, + [1418] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1419] = { + [sym_concatenation] = STATE(1807), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1807), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4144), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4146), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4144), + [anon_sym_COLON_QMARK] = ACTIONS(4144), + [anon_sym_COLON_DASH] = ACTIONS(4144), + [anon_sym_PERCENT] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1420] = { + [sym_file_descriptor] = ACTIONS(2993), + [sym__concat] = ACTIONS(2993), + [sym_variable_name] = ACTIONS(2993), + [anon_sym_esac] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_RPAREN] = ACTIONS(2995), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), + [anon_sym_PIPE_AMP] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2995), + [anon_sym_AMP_GT] = ACTIONS(2995), + [anon_sym_AMP_GT_GT] = ACTIONS(2995), + [anon_sym_LT_AMP] = ACTIONS(2995), + [anon_sym_GT_AMP] = ACTIONS(2995), + [sym__special_characters] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2995), + [anon_sym_BQUOTE] = ACTIONS(2995), + [anon_sym_LT_LPAREN] = ACTIONS(2995), + [anon_sym_GT_LPAREN] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), + }, + [1421] = { + [sym_concatenation] = STATE(1809), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1809), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4150), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4150), + [anon_sym_COLON_QMARK] = ACTIONS(4150), + [anon_sym_COLON_DASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1422] = { + [sym_file_descriptor] = ACTIONS(3003), + [sym__concat] = ACTIONS(3003), + [sym_variable_name] = ACTIONS(3003), + [anon_sym_esac] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_SEMI_SEMI] = ACTIONS(3005), + [anon_sym_PIPE_AMP] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_GT] = ACTIONS(3005), + [anon_sym_AMP_GT_GT] = ACTIONS(3005), + [anon_sym_LT_AMP] = ACTIONS(3005), + [anon_sym_GT_AMP] = ACTIONS(3005), + [sym__special_characters] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3005), + [anon_sym_LT_LPAREN] = ACTIONS(3005), + [anon_sym_GT_LPAREN] = ACTIONS(3005), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + }, + [1423] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1424] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(4154), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1425] = { + [sym_file_descriptor] = ACTIONS(3034), + [sym__concat] = ACTIONS(3034), + [sym_variable_name] = ACTIONS(3034), + [anon_sym_esac] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3036), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), + }, + [1426] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4156), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1427] = { + [sym__terminated_statement] = STATE(1813), + [sym_for_statement] = STATE(613), + [sym_c_style_for_statement] = STATE(613), + [sym_while_statement] = STATE(613), + [sym_if_statement] = STATE(613), + [sym_case_statement] = STATE(613), + [sym_function_definition] = STATE(613), + [sym_subshell] = STATE(613), + [sym_pipeline] = STATE(613), + [sym_list] = STATE(613), + [sym_negated_command] = STATE(613), + [sym_test_command] = STATE(613), + [sym_declaration_command] = STATE(613), + [sym_unset_command] = STATE(613), + [sym_command] = STATE(613), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(614), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1813), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(3779), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [1428] = { + [anon_sym_esac] = ACTIONS(4160), + [anon_sym_PIPE] = ACTIONS(4160), + [anon_sym_RPAREN] = ACTIONS(4160), + [anon_sym_SEMI_SEMI] = ACTIONS(4160), + [anon_sym_PIPE_AMP] = ACTIONS(4160), + [anon_sym_AMP_AMP] = ACTIONS(4160), + [anon_sym_PIPE_PIPE] = ACTIONS(4160), + [anon_sym_BQUOTE] = ACTIONS(4160), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym_LF] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + }, + [1429] = { + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE_PIPE] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1225), + }, + [1430] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_EQ_TILDE] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_BANG_EQ] = ACTIONS(3280), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3280), + }, + [1431] = { + [sym_string] = STATE(1815), + [sym_simple_expansion] = STATE(1815), + [sym_string_expansion] = STATE(1815), + [sym_expansion] = STATE(1815), + [sym_command_substitution] = STATE(1815), + [sym_process_substitution] = STATE(1815), + [sym__special_characters] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [sym_raw_string] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2103), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4166), + }, + [1432] = { + [aux_sym_concatenation_repeat1] = STATE(1816), + [sym__concat] = ACTIONS(3254), + [anon_sym_RPAREN_RPAREN] = ACTIONS(683), + [anon_sym_AMP_AMP] = ACTIONS(683), + [anon_sym_PIPE_PIPE] = ACTIONS(683), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_BANG_EQ] = ACTIONS(683), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(683), + }, + [1433] = { + [sym__concat] = ACTIONS(687), + [anon_sym_RPAREN_RPAREN] = ACTIONS(687), + [anon_sym_AMP_AMP] = ACTIONS(687), + [anon_sym_PIPE_PIPE] = ACTIONS(687), + [anon_sym_EQ_TILDE] = ACTIONS(687), + [anon_sym_EQ_EQ] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [anon_sym_BANG_EQ] = ACTIONS(687), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(687), + }, + [1434] = { + [anon_sym_DQUOTE] = ACTIONS(4168), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [1435] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(4168), + [anon_sym_DOLLAR] = ACTIONS(4170), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [1436] = { + [sym__concat] = ACTIONS(719), + [anon_sym_RPAREN_RPAREN] = ACTIONS(719), + [anon_sym_AMP_AMP] = ACTIONS(719), + [anon_sym_PIPE_PIPE] = ACTIONS(719), + [anon_sym_EQ_TILDE] = ACTIONS(719), + [anon_sym_EQ_EQ] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(719), + [anon_sym_GT] = ACTIONS(719), + [anon_sym_BANG_EQ] = ACTIONS(719), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(719), + }, + [1437] = { + [sym__concat] = ACTIONS(723), + [anon_sym_RPAREN_RPAREN] = ACTIONS(723), + [anon_sym_AMP_AMP] = ACTIONS(723), + [anon_sym_PIPE_PIPE] = ACTIONS(723), + [anon_sym_EQ_TILDE] = ACTIONS(723), + [anon_sym_EQ_EQ] = ACTIONS(723), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_BANG_EQ] = ACTIONS(723), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(723), + }, + [1438] = { + [sym__concat] = ACTIONS(727), + [anon_sym_RPAREN_RPAREN] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_EQ_TILDE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(727), + }, + [1439] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(4172), + [sym_comment] = ACTIONS(53), + }, + [1440] = { + [sym_concatenation] = STATE(1822), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1822), + [anon_sym_RBRACE] = ACTIONS(4174), + [anon_sym_EQ] = ACTIONS(4176), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(4176), + [anon_sym_COLON_QMARK] = ACTIONS(4176), + [anon_sym_COLON_DASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1441] = { + [sym_subscript] = STATE(1826), + [sym_variable_name] = ACTIONS(4182), + [anon_sym_DOLLAR] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4186), + [anon_sym_STAR] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4184), + [anon_sym_0] = ACTIONS(4188), + [anon_sym__] = ACTIONS(4188), + }, + [1442] = { + [sym_concatenation] = STATE(1829), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1829), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4192), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(4192), + [anon_sym_COLON_QMARK] = ACTIONS(4192), + [anon_sym_COLON_DASH] = ACTIONS(4192), + [anon_sym_PERCENT] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1443] = { + [sym_concatenation] = STATE(1832), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1832), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_EQ] = ACTIONS(4200), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(4200), + [anon_sym_COLON_QMARK] = ACTIONS(4200), + [anon_sym_COLON_DASH] = ACTIONS(4200), + [anon_sym_PERCENT] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1444] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4206), + [anon_sym_SEMI_SEMI] = ACTIONS(4208), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4208), + [anon_sym_LF] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4208), + }, + [1445] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4206), + [anon_sym_SEMI_SEMI] = ACTIONS(4208), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4208), + [anon_sym_LF] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4208), + }, + [1446] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1835), + [sym_c_style_for_statement] = STATE(1835), + [sym_while_statement] = STATE(1835), + [sym_if_statement] = STATE(1835), + [sym_case_statement] = STATE(1835), + [sym_function_definition] = STATE(1835), + [sym_subshell] = STATE(1835), + [sym_pipeline] = STATE(1835), + [sym_list] = STATE(1835), + [sym_negated_command] = STATE(1835), + [sym_test_command] = STATE(1835), + [sym_declaration_command] = STATE(1835), + [sym_unset_command] = STATE(1835), + [sym_command] = STATE(1835), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1836), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [1447] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4212), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(4206), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_LF] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4212), + }, + [1448] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4212), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(4206), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_LF] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4212), + }, + [1449] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1838), + [sym_c_style_for_statement] = STATE(1838), + [sym_while_statement] = STATE(1838), + [sym_if_statement] = STATE(1838), + [sym_case_statement] = STATE(1838), + [sym_function_definition] = STATE(1838), + [sym_subshell] = STATE(1838), + [sym_pipeline] = STATE(1838), + [sym_list] = STATE(1838), + [sym_negated_command] = STATE(1838), + [sym_test_command] = STATE(1838), + [sym_declaration_command] = STATE(1838), + [sym_unset_command] = STATE(1838), + [sym_command] = STATE(1838), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1839), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [1450] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4216), + [anon_sym_SEMI_SEMI] = ACTIONS(4218), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_LF] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4218), + }, + [1451] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4216), + [anon_sym_SEMI_SEMI] = ACTIONS(4218), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_LF] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4218), + }, + [1452] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1842), + [sym_c_style_for_statement] = STATE(1842), + [sym_while_statement] = STATE(1842), + [sym_if_statement] = STATE(1842), + [sym_case_statement] = STATE(1842), + [sym_function_definition] = STATE(1842), + [sym_subshell] = STATE(1842), + [sym_pipeline] = STATE(1842), + [sym_list] = STATE(1842), + [sym_negated_command] = STATE(1842), + [sym_test_command] = STATE(1842), + [sym_declaration_command] = STATE(1842), + [sym_unset_command] = STATE(1842), + [sym_command] = STATE(1842), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1843), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [1453] = { + [sym_do_group] = STATE(1844), + [sym_compound_statement] = STATE(1844), + [anon_sym_do] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(3252), + [sym_comment] = ACTIONS(53), + }, + [1454] = { + [sym__expression] = STATE(1845), + [sym_binary_expression] = STATE(1845), + [sym_unary_expression] = STATE(1845), + [sym_parenthesized_expression] = STATE(1845), + [sym_concatenation] = STATE(1845), + [sym_string] = STATE(990), + [sym_simple_expansion] = STATE(990), + [sym_string_expansion] = STATE(990), + [sym_expansion] = STATE(990), + [sym_command_substitution] = STATE(990), + [sym_process_substitution] = STATE(990), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2091), + [sym__special_characters] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2103), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2109), + [sym_test_operator] = ACTIONS(2111), + }, + [1455] = { + [sym__expression] = STATE(1845), + [sym_binary_expression] = STATE(1845), + [sym_unary_expression] = STATE(1845), + [sym_parenthesized_expression] = STATE(1845), + [sym_concatenation] = STATE(1845), + [sym_string] = STATE(990), + [sym_simple_expansion] = STATE(990), + [sym_string_expansion] = STATE(990), + [sym_expansion] = STATE(990), + [sym_command_substitution] = STATE(990), + [sym_process_substitution] = STATE(990), + [anon_sym_LPAREN] = ACTIONS(4222), + [anon_sym_BANG] = ACTIONS(2091), + [sym__special_characters] = ACTIONS(4224), + [anon_sym_DQUOTE] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(2097), + [sym_raw_string] = ACTIONS(2109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4230), + [anon_sym_BQUOTE] = ACTIONS(4232), + [anon_sym_LT_LPAREN] = ACTIONS(4234), + [anon_sym_GT_LPAREN] = ACTIONS(4234), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2109), + [sym_test_operator] = ACTIONS(2091), + [sym_regex] = ACTIONS(4236), + }, + [1456] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(4238), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_EQ_TILDE] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_BANG_EQ] = ACTIONS(3280), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3280), + }, + [1457] = { + [sym__concat] = ACTIONS(2818), + [anon_sym_esac] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_SEMI_SEMI] = ACTIONS(2820), + [anon_sym_PIPE_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [anon_sym_EQ_TILDE] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2820), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_BANG_EQ] = ACTIONS(2820), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + }, + [1458] = { + [sym__concat] = ACTIONS(2832), + [anon_sym_esac] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_SEMI_SEMI] = ACTIONS(2834), + [anon_sym_PIPE_AMP] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [anon_sym_EQ_TILDE] = ACTIONS(2834), + [anon_sym_EQ_EQ] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2834), + [anon_sym_BANG_EQ] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), + }, + [1459] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4240), + [sym_comment] = ACTIONS(53), + }, + [1460] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4242), + [sym_comment] = ACTIONS(53), + }, + [1461] = { + [anon_sym_RBRACE] = ACTIONS(4242), + [sym_comment] = ACTIONS(53), + }, + [1462] = { + [sym_concatenation] = STATE(1851), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1851), + [anon_sym_RBRACE] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4246), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4246), + [anon_sym_COLON_QMARK] = ACTIONS(4246), + [anon_sym_COLON_DASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1463] = { + [sym__concat] = ACTIONS(2926), + [anon_sym_esac] = ACTIONS(2928), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [anon_sym_EQ_TILDE] = ACTIONS(2928), + [anon_sym_EQ_EQ] = ACTIONS(2928), + [anon_sym_EQ] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2928), + [anon_sym_GT] = ACTIONS(2928), + [anon_sym_BANG_EQ] = ACTIONS(2928), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2928), + }, + [1464] = { + [sym_concatenation] = STATE(1854), + [sym_string] = STATE(1853), + [sym_simple_expansion] = STATE(1853), + [sym_string_expansion] = STATE(1853), + [sym_expansion] = STATE(1853), + [sym_command_substitution] = STATE(1853), + [sym_process_substitution] = STATE(1853), + [anon_sym_RBRACE] = ACTIONS(4242), + [sym__special_characters] = ACTIONS(4250), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(4252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4252), + }, + [1465] = { + [sym__concat] = ACTIONS(2969), + [anon_sym_esac] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_EQ_TILDE] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + }, + [1466] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4254), + }, + [1467] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1468] = { + [sym__concat] = ACTIONS(2977), + [anon_sym_esac] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2979), + [anon_sym_PIPE_AMP] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_EQ_TILDE] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + }, + [1469] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4258), + }, + [1470] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1471] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4262), + }, + [1472] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1473] = { + [sym_concatenation] = STATE(1861), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1861), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_EQ] = ACTIONS(4266), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4266), + [anon_sym_COLON_QMARK] = ACTIONS(4266), + [anon_sym_COLON_DASH] = ACTIONS(4266), + [anon_sym_PERCENT] = ACTIONS(4266), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1474] = { + [sym__concat] = ACTIONS(2993), + [anon_sym_esac] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), + [anon_sym_PIPE_AMP] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_EQ_TILDE] = ACTIONS(2995), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), + }, + [1475] = { + [sym_concatenation] = STATE(1863), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1863), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_EQ] = ACTIONS(4272), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4272), + [anon_sym_COLON_QMARK] = ACTIONS(4272), + [anon_sym_COLON_DASH] = ACTIONS(4272), + [anon_sym_PERCENT] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1476] = { + [sym__concat] = ACTIONS(3003), + [anon_sym_esac] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_SEMI_SEMI] = ACTIONS(3005), + [anon_sym_PIPE_AMP] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_EQ_TILDE] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3005), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + }, + [1477] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1478] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(4276), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1479] = { + [sym__concat] = ACTIONS(3034), + [anon_sym_esac] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), + }, + [1480] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4278), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1481] = { + [sym__expression] = STATE(1866), + [sym_binary_expression] = STATE(1866), + [sym_unary_expression] = STATE(1866), + [sym_parenthesized_expression] = STATE(1866), + [sym_concatenation] = STATE(1866), + [sym_string] = STATE(990), + [sym_simple_expansion] = STATE(990), + [sym_string_expansion] = STATE(990), + [sym_expansion] = STATE(990), + [sym_command_substitution] = STATE(990), + [sym_process_substitution] = STATE(990), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4238), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2091), + [sym__special_characters] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2097), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2103), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2109), + [sym_test_operator] = ACTIONS(2111), + }, + [1482] = { + [aux_sym_concatenation_repeat1] = STATE(1482), + [sym__concat] = ACTIONS(2241), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1483] = { + [anon_sym_esac] = ACTIONS(4280), + [anon_sym_PIPE] = ACTIONS(4280), + [anon_sym_RPAREN] = ACTIONS(4280), + [anon_sym_SEMI_SEMI] = ACTIONS(4280), + [anon_sym_PIPE_AMP] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_PIPE_PIPE] = ACTIONS(4280), + [anon_sym_BQUOTE] = ACTIONS(4280), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym_LF] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4280), + }, + [1484] = { + [anon_sym_esac] = ACTIONS(3385), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_RPAREN] = ACTIONS(3385), + [anon_sym_SEMI_SEMI] = ACTIONS(3385), + [anon_sym_PIPE_AMP] = ACTIONS(3385), + [anon_sym_AMP_AMP] = ACTIONS(3385), + [anon_sym_PIPE_PIPE] = ACTIONS(3385), + [anon_sym_BQUOTE] = ACTIONS(3385), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_LF] = ACTIONS(3383), + [anon_sym_AMP] = ACTIONS(3385), + }, + [1485] = { + [sym__terminated_statement] = STATE(1867), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(1867), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_fi] = ACTIONS(4284), + [anon_sym_elif] = ACTIONS(4284), + [anon_sym_else] = ACTIONS(4284), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -36130,25 +44601,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [1143] = { - [anon_sym_esac] = ACTIONS(3781), - [anon_sym_PIPE] = ACTIONS(3781), - [anon_sym_RPAREN] = ACTIONS(3781), - [anon_sym_SEMI_SEMI] = ACTIONS(3781), - [anon_sym_PIPE_AMP] = ACTIONS(3781), - [anon_sym_AMP_AMP] = ACTIONS(3781), - [anon_sym_PIPE_PIPE] = ACTIONS(3781), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3781), - [anon_sym_LF] = ACTIONS(3783), - [anon_sym_AMP] = ACTIONS(3781), - }, - [1144] = { - [anon_sym_fi] = ACTIONS(3785), - [sym_comment] = ACTIONS(53), - }, - [1145] = { - [sym__terminated_statement] = STATE(1145), + [1486] = { + [sym__terminated_statement] = STATE(1486), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -36166,103 +44620,3292 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1145), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(1043), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_fi] = ACTIONS(3771), - [anon_sym_elif] = ACTIONS(3771), - [anon_sym_else] = ACTIONS(3771), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), - [anon_sym_declare] = ACTIONS(1078), - [anon_sym_typeset] = ACTIONS(1078), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_readonly] = ACTIONS(1078), - [anon_sym_local] = ACTIONS(1078), - [anon_sym_unset] = ACTIONS(1081), - [anon_sym_unsetenv] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1087), - [anon_sym_LT_AMP] = ACTIONS(1087), - [anon_sym_GT_AMP] = ACTIONS(1087), - [sym__special_characters] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1096), - [sym_raw_string] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1108), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), + [aux_sym_program_repeat1] = STATE(1486), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(865), + [sym_variable_name] = ACTIONS(868), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(876), + [anon_sym_if] = ACTIONS(879), + [anon_sym_fi] = ACTIONS(3387), + [anon_sym_case] = ACTIONS(882), + [anon_sym_function] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_typeset] = ACTIONS(900), + [anon_sym_export] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_local] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_AMP_GT] = ACTIONS(906), + [anon_sym_AMP_GT_GT] = ACTIONS(909), + [anon_sym_LT_AMP] = ACTIONS(909), + [anon_sym_GT_AMP] = ACTIONS(909), + [sym__special_characters] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(918), + [sym_raw_string] = ACTIONS(921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(930), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1114), + [sym_word] = ACTIONS(936), }, - [1146] = { - [sym_elif_clause] = STATE(1147), - [sym_else_clause] = STATE(1631), - [aux_sym_if_statement_repeat1] = STATE(1147), - [anon_sym_fi] = ACTIONS(3785), - [anon_sym_elif] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2461), - [sym_comment] = ACTIONS(53), - }, - [1147] = { - [sym_elif_clause] = STATE(1147), - [aux_sym_if_statement_repeat1] = STATE(1147), - [anon_sym_fi] = ACTIONS(3787), - [anon_sym_elif] = ACTIONS(3789), - [anon_sym_else] = ACTIONS(3787), - [sym_comment] = ACTIONS(53), - }, - [1148] = { - [anon_sym_esac] = ACTIONS(3792), - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_RPAREN] = ACTIONS(3792), - [anon_sym_SEMI_SEMI] = ACTIONS(3792), - [anon_sym_PIPE_AMP] = ACTIONS(3792), - [anon_sym_AMP_AMP] = ACTIONS(3792), - [anon_sym_PIPE_PIPE] = ACTIONS(3792), + [1487] = { + [anon_sym_esac] = ACTIONS(4286), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_RPAREN] = ACTIONS(4286), + [anon_sym_SEMI_SEMI] = ACTIONS(4286), + [anon_sym_PIPE_AMP] = ACTIONS(4286), + [anon_sym_AMP_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4286), + [anon_sym_BQUOTE] = ACTIONS(4286), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3792), - [anon_sym_LF] = ACTIONS(3794), - [anon_sym_AMP] = ACTIONS(3792), + [anon_sym_SEMI] = ACTIONS(4286), + [anon_sym_LF] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4286), }, - [1149] = { - [aux_sym_case_item_repeat1] = STATE(1634), - [aux_sym_concatenation_repeat1] = STATE(1635), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(3798), + [1488] = { + [anon_sym_fi] = ACTIONS(4290), [sym_comment] = ACTIONS(53), }, - [1150] = { - [aux_sym_case_item_repeat1] = STATE(1637), - [aux_sym_concatenation_repeat1] = STATE(1635), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(3800), + [1489] = { + [sym_concatenation] = STATE(1871), + [sym_string] = STATE(1870), + [sym_simple_expansion] = STATE(1870), + [sym_string_expansion] = STATE(1870), + [sym_expansion] = STATE(1870), + [sym_command_substitution] = STATE(1870), + [sym_process_substitution] = STATE(1870), + [sym__special_characters] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(4294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4294), + }, + [1490] = { + [sym__terminated_statement] = STATE(1888), + [sym_for_statement] = STATE(1884), + [sym_c_style_for_statement] = STATE(1884), + [sym_while_statement] = STATE(1884), + [sym_if_statement] = STATE(1884), + [sym_case_statement] = STATE(1884), + [sym_function_definition] = STATE(1884), + [sym_subshell] = STATE(1884), + [sym_pipeline] = STATE(1884), + [sym_list] = STATE(1884), + [sym_negated_command] = STATE(1884), + [sym_test_command] = STATE(1884), + [sym_declaration_command] = STATE(1884), + [sym_unset_command] = STATE(1884), + [sym_command] = STATE(1884), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(1886), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_program_repeat1] = STATE(1888), + [aux_sym_command_repeat1] = STATE(1889), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(4300), + [anon_sym_SEMI_SEMI] = ACTIONS(4302), + [anon_sym_function] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4320), + }, + [1491] = { + [aux_sym_case_item_repeat1] = STATE(1891), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(4322), [sym_comment] = ACTIONS(53), }, - [1151] = { + [1492] = { + [aux_sym_concatenation_repeat1] = STATE(1892), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(683), + [sym_comment] = ACTIONS(53), + }, + [1493] = { + [sym__terminated_statement] = STATE(1896), + [sym_for_statement] = STATE(1894), + [sym_c_style_for_statement] = STATE(1894), + [sym_while_statement] = STATE(1894), + [sym_if_statement] = STATE(1894), + [sym_case_statement] = STATE(1894), + [sym_function_definition] = STATE(1894), + [sym_subshell] = STATE(1894), + [sym_pipeline] = STATE(1894), + [sym_list] = STATE(1894), + [sym_negated_command] = STATE(1894), + [sym_test_command] = STATE(1894), + [sym_declaration_command] = STATE(1894), + [sym_unset_command] = STATE(1894), + [sym_command] = STATE(1894), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(1895), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_program_repeat1] = STATE(1896), + [aux_sym_command_repeat1] = STATE(1889), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(4324), + [anon_sym_SEMI_SEMI] = ACTIONS(4326), + [anon_sym_function] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4320), + }, + [1494] = { + [aux_sym_case_item_repeat1] = STATE(1891), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(4328), + [sym_comment] = ACTIONS(53), + }, + [1495] = { + [anon_sym_esac] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4330), + [anon_sym_RPAREN] = ACTIONS(4330), + [anon_sym_SEMI_SEMI] = ACTIONS(4330), + [anon_sym_PIPE_AMP] = ACTIONS(4330), + [anon_sym_AMP_AMP] = ACTIONS(4330), + [anon_sym_PIPE_PIPE] = ACTIONS(4330), + [anon_sym_BQUOTE] = ACTIONS(4330), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4330), + [anon_sym_LF] = ACTIONS(4332), + [anon_sym_AMP] = ACTIONS(4330), + }, + [1496] = { + [anon_sym_esac] = ACTIONS(4334), + [sym_comment] = ACTIONS(53), + }, + [1497] = { + [sym_case_item] = STATE(1497), + [sym_concatenation] = STATE(1901), + [sym_string] = STATE(1900), + [sym_simple_expansion] = STATE(1900), + [sym_string_expansion] = STATE(1900), + [sym_expansion] = STATE(1900), + [sym_command_substitution] = STATE(1900), + [sym_process_substitution] = STATE(1900), + [aux_sym_case_statement_repeat1] = STATE(1497), + [sym__special_characters] = ACTIONS(4336), + [anon_sym_DQUOTE] = ACTIONS(4339), + [anon_sym_DOLLAR] = ACTIONS(4342), + [sym_raw_string] = ACTIONS(4345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4351), + [anon_sym_BQUOTE] = ACTIONS(4354), + [anon_sym_LT_LPAREN] = ACTIONS(4357), + [anon_sym_GT_LPAREN] = ACTIONS(4357), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4345), + }, + [1498] = { + [anon_sym_esac] = ACTIONS(4360), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_RPAREN] = ACTIONS(4360), + [anon_sym_SEMI_SEMI] = ACTIONS(4360), + [anon_sym_PIPE_AMP] = ACTIONS(4360), + [anon_sym_AMP_AMP] = ACTIONS(4360), + [anon_sym_PIPE_PIPE] = ACTIONS(4360), + [anon_sym_BQUOTE] = ACTIONS(4360), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4360), + [anon_sym_LF] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4360), + }, + [1499] = { + [sym_case_item] = STATE(1497), + [sym_last_case_item] = STATE(1902), + [sym_concatenation] = STATE(1049), + [sym_string] = STATE(1047), + [sym_simple_expansion] = STATE(1047), + [sym_string_expansion] = STATE(1047), + [sym_expansion] = STATE(1047), + [sym_command_substitution] = STATE(1047), + [sym_process_substitution] = STATE(1047), + [aux_sym_case_statement_repeat1] = STATE(1497), + [sym__special_characters] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2233), + }, + [1500] = { + [anon_sym_esac] = ACTIONS(4364), + [anon_sym_PIPE] = ACTIONS(4364), + [anon_sym_RPAREN] = ACTIONS(4364), + [anon_sym_SEMI_SEMI] = ACTIONS(4364), + [anon_sym_PIPE_AMP] = ACTIONS(4364), + [anon_sym_AMP_AMP] = ACTIONS(4364), + [anon_sym_PIPE_PIPE] = ACTIONS(4364), + [anon_sym_BQUOTE] = ACTIONS(4364), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_LF] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4364), + }, + [1501] = { + [anon_sym_esac] = ACTIONS(4368), + [sym_comment] = ACTIONS(53), + }, + [1502] = { + [anon_sym_esac] = ACTIONS(4370), + [anon_sym_PIPE] = ACTIONS(4370), + [anon_sym_RPAREN] = ACTIONS(4370), + [anon_sym_SEMI_SEMI] = ACTIONS(4370), + [anon_sym_PIPE_AMP] = ACTIONS(4370), + [anon_sym_AMP_AMP] = ACTIONS(4370), + [anon_sym_PIPE_PIPE] = ACTIONS(4370), + [anon_sym_BQUOTE] = ACTIONS(4370), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4370), + [anon_sym_LF] = ACTIONS(4372), + [anon_sym_AMP] = ACTIONS(4370), + }, + [1503] = { + [sym_case_item] = STATE(1497), + [sym_last_case_item] = STATE(1904), + [sym_concatenation] = STATE(1049), + [sym_string] = STATE(1047), + [sym_simple_expansion] = STATE(1047), + [sym_string_expansion] = STATE(1047), + [sym_expansion] = STATE(1047), + [sym_command_substitution] = STATE(1047), + [sym_process_substitution] = STATE(1047), + [aux_sym_case_statement_repeat1] = STATE(1497), + [sym__special_characters] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2233), + }, + [1504] = { + [sym__concat] = ACTIONS(3802), + [anon_sym_in] = ACTIONS(3804), + [anon_sym_SEMI_SEMI] = ACTIONS(3804), + [sym__special_characters] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3804), + [anon_sym_BQUOTE] = ACTIONS(3804), + [anon_sym_LT_LPAREN] = ACTIONS(3804), + [anon_sym_GT_LPAREN] = ACTIONS(3804), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3804), + }, + [1505] = { + [sym__concat] = ACTIONS(3810), + [anon_sym_in] = ACTIONS(3812), + [anon_sym_SEMI_SEMI] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3812), + [anon_sym_BQUOTE] = ACTIONS(3812), + [anon_sym_LT_LPAREN] = ACTIONS(3812), + [anon_sym_GT_LPAREN] = ACTIONS(3812), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_LF] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3812), + }, + [1506] = { + [sym__concat] = ACTIONS(3909), + [anon_sym_in] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), + [anon_sym_LT_LPAREN] = ACTIONS(3911), + [anon_sym_GT_LPAREN] = ACTIONS(3911), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + }, + [1507] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4374), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1508] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4376), + [sym_comment] = ACTIONS(53), + }, + [1509] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4378), + [sym_comment] = ACTIONS(53), + }, + [1510] = { + [anon_sym_RBRACE] = ACTIONS(4378), + [sym_comment] = ACTIONS(53), + }, + [1511] = { + [sym_concatenation] = STATE(1909), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1909), + [anon_sym_RBRACE] = ACTIONS(4380), + [anon_sym_EQ] = ACTIONS(4382), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4382), + [anon_sym_COLON_QMARK] = ACTIONS(4382), + [anon_sym_COLON_DASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1512] = { + [sym__concat] = ACTIONS(3945), + [anon_sym_in] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3947), + [sym__special_characters] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), + [anon_sym_BQUOTE] = ACTIONS(3947), + [anon_sym_LT_LPAREN] = ACTIONS(3947), + [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3947), + }, + [1513] = { + [sym_concatenation] = STATE(1911), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1911), + [anon_sym_RBRACE] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4388), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4388), + [anon_sym_COLON_QMARK] = ACTIONS(4388), + [anon_sym_COLON_DASH] = ACTIONS(4388), + [anon_sym_PERCENT] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1514] = { + [sym__concat] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_SEMI_SEMI] = ACTIONS(3957), + [sym__special_characters] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), + [anon_sym_BQUOTE] = ACTIONS(3957), + [anon_sym_LT_LPAREN] = ACTIONS(3957), + [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), + }, + [1515] = { + [sym_concatenation] = STATE(1913), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1913), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4394), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4394), + [anon_sym_COLON_QMARK] = ACTIONS(4394), + [anon_sym_COLON_DASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1516] = { + [sym__concat] = ACTIONS(3965), + [anon_sym_in] = ACTIONS(3967), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [sym__special_characters] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3967), + [anon_sym_BQUOTE] = ACTIONS(3967), + [anon_sym_LT_LPAREN] = ACTIONS(3967), + [anon_sym_GT_LPAREN] = ACTIONS(3967), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), + }, + [1517] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1518] = { + [sym__concat] = ACTIONS(3971), + [anon_sym_in] = ACTIONS(3973), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [sym__special_characters] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3973), + [anon_sym_BQUOTE] = ACTIONS(3973), + [anon_sym_LT_LPAREN] = ACTIONS(3973), + [anon_sym_GT_LPAREN] = ACTIONS(3973), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_LF] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3973), + }, + [1519] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4400), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1520] = { + [sym__concat] = ACTIONS(3977), + [anon_sym_in] = ACTIONS(3979), + [anon_sym_SEMI_SEMI] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [anon_sym_LT_LPAREN] = ACTIONS(3979), + [anon_sym_GT_LPAREN] = ACTIONS(3979), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_LF] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3979), + }, + [1521] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_in] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4003), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4003), + [anon_sym_BQUOTE] = ACTIONS(4003), + [anon_sym_LT_LPAREN] = ACTIONS(4003), + [anon_sym_GT_LPAREN] = ACTIONS(4003), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4003), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1522] = { + [anon_sym_esac] = ACTIONS(4402), + [anon_sym_PIPE] = ACTIONS(4402), + [anon_sym_RPAREN] = ACTIONS(4402), + [anon_sym_SEMI_SEMI] = ACTIONS(4402), + [anon_sym_PIPE_AMP] = ACTIONS(4402), + [anon_sym_AMP_AMP] = ACTIONS(4402), + [anon_sym_PIPE_PIPE] = ACTIONS(4402), + [anon_sym_BQUOTE] = ACTIONS(4402), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4402), + [anon_sym_LF] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4402), + }, + [1523] = { + [aux_sym_concatenation_repeat1] = STATE(1526), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [1524] = { + [aux_sym_concatenation_repeat1] = STATE(1526), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [1525] = { + [anon_sym_esac] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [1526] = { + [aux_sym_concatenation_repeat1] = STATE(1916), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [1527] = { + [aux_sym_concatenation_repeat1] = STATE(1527), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(3187), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1528] = { + [sym_file_redirect] = STATE(1522), + [sym_file_descriptor] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(3470), + [anon_sym_RPAREN] = ACTIONS(3470), + [anon_sym_SEMI_SEMI] = ACTIONS(3470), + [anon_sym_PIPE_AMP] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_PIPE_PIPE] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_GT] = ACTIONS(2338), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_AMP_GT] = ACTIONS(2338), + [anon_sym_AMP_GT_GT] = ACTIONS(2338), + [anon_sym_LT_AMP] = ACTIONS(2338), + [anon_sym_GT_AMP] = ACTIONS(2338), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_LF] = ACTIONS(3472), + [anon_sym_AMP] = ACTIONS(3470), + }, + [1529] = { + [sym_concatenation] = STATE(1525), + [sym_string] = STATE(1918), + [sym_simple_expansion] = STATE(1918), + [sym_string_expansion] = STATE(1918), + [sym_expansion] = STATE(1918), + [sym_command_substitution] = STATE(1918), + [sym_process_substitution] = STATE(1918), + [sym__special_characters] = ACTIONS(4406), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(4408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(1503), + [anon_sym_LT_LPAREN] = ACTIONS(1505), + [anon_sym_GT_LPAREN] = ACTIONS(1505), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4408), + }, + [1530] = { + [aux_sym_concatenation_repeat1] = STATE(1919), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), + }, + [1531] = { + [aux_sym_concatenation_repeat1] = STATE(1919), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), + }, + [1532] = { + [sym_concatenation] = STATE(1560), + [sym_string] = STATE(1921), + [sym_simple_expansion] = STATE(1921), + [sym_string_expansion] = STATE(1921), + [sym_expansion] = STATE(1921), + [sym_command_substitution] = STATE(1921), + [sym_process_substitution] = STATE(1921), + [sym__special_characters] = ACTIONS(4410), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(4412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4412), + }, + [1533] = { + [aux_sym_concatenation_repeat1] = STATE(1922), + [sym_file_descriptor] = ACTIONS(649), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_AMP_GT] = ACTIONS(653), + [anon_sym_AMP_GT_GT] = ACTIONS(653), + [anon_sym_LT_AMP] = ACTIONS(653), + [anon_sym_GT_AMP] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_LT] = ACTIONS(653), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), + }, + [1534] = { + [aux_sym_concatenation_repeat1] = STATE(1922), + [sym_file_descriptor] = ACTIONS(667), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), + }, + [1535] = { + [aux_sym_concatenation_repeat1] = STATE(1922), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1926), + [anon_sym_PIPE_AMP] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_PIPE_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1926), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1926), + [anon_sym_LT_AMP] = ACTIONS(1926), + [anon_sym_GT_AMP] = ACTIONS(1926), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1926), + [anon_sym_LT_LT_LT] = ACTIONS(1926), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), + }, + [1536] = { + [aux_sym_concatenation_repeat1] = STATE(1922), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [1537] = { + [sym_file_redirect] = STATE(1537), + [sym_heredoc_redirect] = STATE(1537), + [sym_herestring_redirect] = STATE(1537), + [aux_sym_while_statement_repeat1] = STATE(1537), + [sym_file_descriptor] = ACTIONS(4414), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_RPAREN] = ACTIONS(1941), + [anon_sym_SEMI_SEMI] = ACTIONS(1941), + [anon_sym_PIPE_AMP] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(4417), + [anon_sym_GT] = ACTIONS(4417), + [anon_sym_GT_GT] = ACTIONS(4417), + [anon_sym_AMP_GT] = ACTIONS(4417), + [anon_sym_AMP_GT_GT] = ACTIONS(4417), + [anon_sym_LT_AMP] = ACTIONS(4417), + [anon_sym_GT_AMP] = ACTIONS(4417), + [anon_sym_LT_LT] = ACTIONS(3582), + [anon_sym_LT_LT_DASH] = ACTIONS(3582), + [anon_sym_LT_LT_LT] = ACTIONS(4420), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1941), + }, + [1538] = { + [aux_sym_concatenation_repeat1] = STATE(1538), + [sym__simple_heredoc_body] = ACTIONS(1648), + [sym__heredoc_body_beginning] = ACTIONS(1648), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1539] = { + [sym_file_descriptor] = ACTIONS(3157), + [sym_variable_name] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_GT] = ACTIONS(3159), + [anon_sym_GT_GT] = ACTIONS(3157), + [anon_sym_AMP_GT] = ACTIONS(3159), + [anon_sym_AMP_GT_GT] = ACTIONS(3157), + [anon_sym_LT_AMP] = ACTIONS(3157), + [anon_sym_GT_AMP] = ACTIONS(3157), + [sym__special_characters] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3159), + [sym_raw_string] = ACTIONS(3157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3157), + [anon_sym_BQUOTE] = ACTIONS(3157), + [anon_sym_LT_LPAREN] = ACTIONS(3157), + [anon_sym_GT_LPAREN] = ACTIONS(3157), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3157), + }, + [1540] = { + [sym__concat] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_RBRACK] = ACTIONS(3802), + [anon_sym_EQ_TILDE] = ACTIONS(3802), + [anon_sym_EQ_EQ] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3802), + }, + [1541] = { + [sym__concat] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3810), + [anon_sym_PIPE_PIPE] = ACTIONS(3810), + [anon_sym_RBRACK] = ACTIONS(3810), + [anon_sym_EQ_TILDE] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3810), + [anon_sym_EQ] = ACTIONS(3812), + [anon_sym_LT] = ACTIONS(3810), + [anon_sym_GT] = ACTIONS(3810), + [anon_sym_BANG_EQ] = ACTIONS(3810), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3810), + }, + [1542] = { + [sym__concat] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_RBRACK] = ACTIONS(3909), + [anon_sym_EQ_TILDE] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3909), + }, + [1543] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1544] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4425), + [sym_comment] = ACTIONS(53), + }, + [1545] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4427), + [sym_comment] = ACTIONS(53), + }, + [1546] = { + [anon_sym_RBRACE] = ACTIONS(4427), + [sym_comment] = ACTIONS(53), + }, + [1547] = { + [sym_concatenation] = STATE(1927), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1927), + [anon_sym_RBRACE] = ACTIONS(4429), + [anon_sym_EQ] = ACTIONS(4431), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4433), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4431), + [anon_sym_COLON_QMARK] = ACTIONS(4431), + [anon_sym_COLON_DASH] = ACTIONS(4431), + [anon_sym_PERCENT] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1548] = { + [sym__concat] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_RBRACK] = ACTIONS(3945), + [anon_sym_EQ_TILDE] = ACTIONS(3945), + [anon_sym_EQ_EQ] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3945), + [anon_sym_GT] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3945), + }, + [1549] = { + [sym_concatenation] = STATE(1929), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1929), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4437), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4437), + [anon_sym_COLON_QMARK] = ACTIONS(4437), + [anon_sym_COLON_DASH] = ACTIONS(4437), + [anon_sym_PERCENT] = ACTIONS(4437), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1550] = { + [sym__concat] = ACTIONS(3955), + [anon_sym_AMP_AMP] = ACTIONS(3955), + [anon_sym_PIPE_PIPE] = ACTIONS(3955), + [anon_sym_RBRACK] = ACTIONS(3955), + [anon_sym_EQ_TILDE] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_BANG_EQ] = ACTIONS(3955), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3955), + }, + [1551] = { + [sym_concatenation] = STATE(1931), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1931), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4443), + [anon_sym_COLON_QMARK] = ACTIONS(4443), + [anon_sym_COLON_DASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1552] = { + [sym__concat] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_RBRACK] = ACTIONS(3965), + [anon_sym_EQ_TILDE] = ACTIONS(3965), + [anon_sym_EQ_EQ] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3965), + [anon_sym_GT] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3965), + }, + [1553] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1554] = { + [sym__concat] = ACTIONS(3971), + [anon_sym_AMP_AMP] = ACTIONS(3971), + [anon_sym_PIPE_PIPE] = ACTIONS(3971), + [anon_sym_RBRACK] = ACTIONS(3971), + [anon_sym_EQ_TILDE] = ACTIONS(3971), + [anon_sym_EQ_EQ] = ACTIONS(3971), + [anon_sym_EQ] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_GT] = ACTIONS(3971), + [anon_sym_BANG_EQ] = ACTIONS(3971), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3971), + }, + [1555] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1556] = { + [sym__concat] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_RBRACK] = ACTIONS(3977), + [anon_sym_EQ_TILDE] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3977), + }, + [1557] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_RBRACK] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4001), + [anon_sym_GT] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4001), + }, + [1558] = { + [aux_sym_concatenation_repeat1] = STATE(1562), + [sym_file_descriptor] = ACTIONS(955), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [1559] = { + [aux_sym_concatenation_repeat1] = STATE(1562), + [sym_file_descriptor] = ACTIONS(959), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [1560] = { + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_esac] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [1561] = { + [sym_string] = STATE(1934), + [sym_simple_expansion] = STATE(1934), + [sym_string_expansion] = STATE(1934), + [sym_expansion] = STATE(1934), + [sym_command_substitution] = STATE(1934), + [sym_process_substitution] = STATE(1934), + [sym__special_characters] = ACTIONS(4451), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(4451), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4451), + }, + [1562] = { + [aux_sym_concatenation_repeat1] = STATE(1935), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [1563] = { + [sym_file_descriptor] = ACTIONS(687), + [sym__concat] = ACTIONS(687), + [anon_sym_esac] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(689), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [anon_sym_LT_LT_LT] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), + }, + [1564] = { + [anon_sym_DQUOTE] = ACTIONS(4453), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [1565] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(4453), + [anon_sym_DOLLAR] = ACTIONS(4455), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [1566] = { + [sym_file_descriptor] = ACTIONS(719), + [sym__concat] = ACTIONS(719), + [anon_sym_esac] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(721), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [anon_sym_LT_LT] = ACTIONS(721), + [anon_sym_LT_LT_DASH] = ACTIONS(721), + [anon_sym_LT_LT_LT] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), + }, + [1567] = { + [sym_file_descriptor] = ACTIONS(723), + [sym__concat] = ACTIONS(723), + [anon_sym_esac] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [anon_sym_LT_LT] = ACTIONS(725), + [anon_sym_LT_LT_DASH] = ACTIONS(725), + [anon_sym_LT_LT_LT] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), + }, + [1568] = { + [sym_file_descriptor] = ACTIONS(727), + [sym__concat] = ACTIONS(727), + [anon_sym_esac] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(729), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(729), + [anon_sym_LT_LT_DASH] = ACTIONS(729), + [anon_sym_LT_LT_LT] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + }, + [1569] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(4457), + [sym_comment] = ACTIONS(53), + }, + [1570] = { + [sym_concatenation] = STATE(1941), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1941), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_EQ] = ACTIONS(4461), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_COLON_QMARK] = ACTIONS(4461), + [anon_sym_COLON_DASH] = ACTIONS(4461), + [anon_sym_PERCENT] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1571] = { + [sym_subscript] = STATE(1945), + [sym_variable_name] = ACTIONS(4467), + [anon_sym_DOLLAR] = ACTIONS(4469), + [anon_sym_DASH] = ACTIONS(4469), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4469), + [anon_sym_AT] = ACTIONS(4469), + [anon_sym_QMARK] = ACTIONS(4469), + [anon_sym_0] = ACTIONS(4473), + [anon_sym__] = ACTIONS(4473), + }, + [1572] = { + [sym_concatenation] = STATE(1948), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1948), + [anon_sym_RBRACE] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(4477), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4479), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4481), + [anon_sym_COLON] = ACTIONS(4477), + [anon_sym_COLON_QMARK] = ACTIONS(4477), + [anon_sym_COLON_DASH] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1573] = { + [sym_concatenation] = STATE(1951), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1951), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_EQ] = ACTIONS(4485), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4489), + [anon_sym_COLON] = ACTIONS(4485), + [anon_sym_COLON_QMARK] = ACTIONS(4485), + [anon_sym_COLON_DASH] = ACTIONS(4485), + [anon_sym_PERCENT] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1574] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4491), + [anon_sym_SEMI_SEMI] = ACTIONS(4493), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_LF] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4493), + }, + [1575] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4491), + [anon_sym_SEMI_SEMI] = ACTIONS(4493), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_LF] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4493), + }, + [1576] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1954), + [sym_c_style_for_statement] = STATE(1954), + [sym_while_statement] = STATE(1954), + [sym_if_statement] = STATE(1954), + [sym_case_statement] = STATE(1954), + [sym_function_definition] = STATE(1954), + [sym_subshell] = STATE(1954), + [sym_pipeline] = STATE(1954), + [sym_list] = STATE(1954), + [sym_negated_command] = STATE(1954), + [sym_test_command] = STATE(1954), + [sym_declaration_command] = STATE(1954), + [sym_unset_command] = STATE(1954), + [sym_command] = STATE(1954), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1955), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [1577] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4497), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(4491), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4497), + [anon_sym_LF] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4497), + }, + [1578] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4497), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(4491), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4497), + [anon_sym_LF] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4497), + }, + [1579] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1957), + [sym_c_style_for_statement] = STATE(1957), + [sym_while_statement] = STATE(1957), + [sym_if_statement] = STATE(1957), + [sym_case_statement] = STATE(1957), + [sym_function_definition] = STATE(1957), + [sym_subshell] = STATE(1957), + [sym_pipeline] = STATE(1957), + [sym_list] = STATE(1957), + [sym_negated_command] = STATE(1957), + [sym_test_command] = STATE(1957), + [sym_declaration_command] = STATE(1957), + [sym_unset_command] = STATE(1957), + [sym_command] = STATE(1957), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1958), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [1580] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4501), + [anon_sym_SEMI_SEMI] = ACTIONS(4503), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_LF] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4503), + }, + [1581] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4501), + [anon_sym_SEMI_SEMI] = ACTIONS(4503), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_LF] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4503), + }, + [1582] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1961), + [sym_c_style_for_statement] = STATE(1961), + [sym_while_statement] = STATE(1961), + [sym_if_statement] = STATE(1961), + [sym_case_statement] = STATE(1961), + [sym_function_definition] = STATE(1961), + [sym_subshell] = STATE(1961), + [sym_pipeline] = STATE(1961), + [sym_list] = STATE(1961), + [sym_negated_command] = STATE(1961), + [sym_test_command] = STATE(1961), + [sym_declaration_command] = STATE(1961), + [sym_unset_command] = STATE(1961), + [sym_command] = STATE(1961), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1962), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [1583] = { + [sym__concat] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3802), + [anon_sym_EQ_TILDE] = ACTIONS(3802), + [anon_sym_EQ_EQ] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3802), + }, + [1584] = { + [sym__concat] = ACTIONS(3810), + [anon_sym_PIPE] = ACTIONS(3812), + [anon_sym_RPAREN] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3810), + [anon_sym_PIPE_PIPE] = ACTIONS(3810), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3810), + [anon_sym_EQ_TILDE] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3810), + [anon_sym_EQ] = ACTIONS(3812), + [anon_sym_LT] = ACTIONS(3810), + [anon_sym_GT] = ACTIONS(3810), + [anon_sym_BANG_EQ] = ACTIONS(3810), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3810), + }, + [1585] = { + [sym__concat] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3909), + [anon_sym_EQ_TILDE] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3909), + }, + [1586] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1587] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4509), + [sym_comment] = ACTIONS(53), + }, + [1588] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4511), + [sym_comment] = ACTIONS(53), + }, + [1589] = { + [anon_sym_RBRACE] = ACTIONS(4511), + [sym_comment] = ACTIONS(53), + }, + [1590] = { + [sym_concatenation] = STATE(1967), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1967), + [anon_sym_RBRACE] = ACTIONS(4513), + [anon_sym_EQ] = ACTIONS(4515), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_COLON_QMARK] = ACTIONS(4515), + [anon_sym_COLON_DASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1591] = { + [sym__concat] = ACTIONS(3945), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3945), + [anon_sym_EQ_TILDE] = ACTIONS(3945), + [anon_sym_EQ_EQ] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3945), + [anon_sym_GT] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3945), + }, + [1592] = { + [sym_concatenation] = STATE(1969), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1969), + [anon_sym_RBRACE] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4521), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4521), + [anon_sym_COLON_QMARK] = ACTIONS(4521), + [anon_sym_COLON_DASH] = ACTIONS(4521), + [anon_sym_PERCENT] = ACTIONS(4521), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1593] = { + [sym__concat] = ACTIONS(3955), + [anon_sym_PIPE] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3955), + [anon_sym_AMP_AMP] = ACTIONS(3955), + [anon_sym_PIPE_PIPE] = ACTIONS(3955), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3955), + [anon_sym_EQ_TILDE] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_BANG_EQ] = ACTIONS(3955), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3955), + }, + [1594] = { + [sym_concatenation] = STATE(1971), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1971), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4527), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_COLON_QMARK] = ACTIONS(4527), + [anon_sym_COLON_DASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1595] = { + [sym__concat] = ACTIONS(3965), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_RPAREN] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3965), + [anon_sym_EQ_TILDE] = ACTIONS(3965), + [anon_sym_EQ_EQ] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3965), + [anon_sym_GT] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3965), + }, + [1596] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1597] = { + [sym__concat] = ACTIONS(3971), + [anon_sym_PIPE] = ACTIONS(3973), + [anon_sym_RPAREN] = ACTIONS(3971), + [anon_sym_AMP_AMP] = ACTIONS(3971), + [anon_sym_PIPE_PIPE] = ACTIONS(3971), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3971), + [anon_sym_EQ_TILDE] = ACTIONS(3971), + [anon_sym_EQ_EQ] = ACTIONS(3971), + [anon_sym_EQ] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_GT] = ACTIONS(3971), + [anon_sym_BANG_EQ] = ACTIONS(3971), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3971), + }, + [1598] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1599] = { + [sym__concat] = ACTIONS(3977), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_RPAREN] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3977), + [anon_sym_EQ_TILDE] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3977), + }, + [1600] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4001), + [anon_sym_GT] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4001), + }, + [1601] = { + [sym_variable_name] = ACTIONS(3157), + [anon_sym_PIPE] = ACTIONS(3159), + [anon_sym_RPAREN] = ACTIONS(3159), + [anon_sym_SEMI_SEMI] = ACTIONS(3159), + [anon_sym_PIPE_AMP] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [sym__special_characters] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_DOLLAR] = ACTIONS(3159), + [sym_raw_string] = ACTIONS(3159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3159), + [anon_sym_BQUOTE] = ACTIONS(3159), + [anon_sym_LT_LPAREN] = ACTIONS(3159), + [anon_sym_GT_LPAREN] = ACTIONS(3159), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3159), + [sym_word] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_LF] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + }, + [1602] = { + [sym__concat] = ACTIONS(3802), + [sym_variable_name] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_SEMI_SEMI] = ACTIONS(3804), + [anon_sym_PIPE_AMP] = ACTIONS(3804), + [anon_sym_AMP_AMP] = ACTIONS(3804), + [anon_sym_PIPE_PIPE] = ACTIONS(3804), + [sym__special_characters] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3804), + [anon_sym_BQUOTE] = ACTIONS(3804), + [anon_sym_LT_LPAREN] = ACTIONS(3804), + [anon_sym_GT_LPAREN] = ACTIONS(3804), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3804), + [sym_word] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3804), + }, + [1603] = { + [sym__concat] = ACTIONS(3810), + [sym_variable_name] = ACTIONS(3810), + [anon_sym_PIPE] = ACTIONS(3812), + [anon_sym_RPAREN] = ACTIONS(3812), + [anon_sym_SEMI_SEMI] = ACTIONS(3812), + [anon_sym_PIPE_AMP] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3812), + [anon_sym_BQUOTE] = ACTIONS(3812), + [anon_sym_LT_LPAREN] = ACTIONS(3812), + [anon_sym_GT_LPAREN] = ACTIONS(3812), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3812), + [sym_word] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_LF] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3812), + }, + [1604] = { + [sym__concat] = ACTIONS(3909), + [sym_variable_name] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_RPAREN] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [anon_sym_PIPE_AMP] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), + [anon_sym_LT_LPAREN] = ACTIONS(3911), + [anon_sym_GT_LPAREN] = ACTIONS(3911), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3911), + [sym_word] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + }, + [1605] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1606] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4537), + [sym_comment] = ACTIONS(53), + }, + [1607] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4539), + [sym_comment] = ACTIONS(53), + }, + [1608] = { + [anon_sym_RBRACE] = ACTIONS(4539), + [sym_comment] = ACTIONS(53), + }, + [1609] = { + [sym_concatenation] = STATE(1978), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1978), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_EQ] = ACTIONS(4543), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_COLON_QMARK] = ACTIONS(4543), + [anon_sym_COLON_DASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1610] = { + [sym__concat] = ACTIONS(3945), + [sym_variable_name] = ACTIONS(3945), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3947), + [anon_sym_PIPE_AMP] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [sym__special_characters] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), + [anon_sym_BQUOTE] = ACTIONS(3947), + [anon_sym_LT_LPAREN] = ACTIONS(3947), + [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3947), + [sym_word] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3947), + }, + [1611] = { + [sym_concatenation] = STATE(1980), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1980), + [anon_sym_RBRACE] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4549), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4549), + [anon_sym_COLON_QMARK] = ACTIONS(4549), + [anon_sym_COLON_DASH] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1612] = { + [sym__concat] = ACTIONS(3955), + [sym_variable_name] = ACTIONS(3955), + [anon_sym_PIPE] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_SEMI_SEMI] = ACTIONS(3957), + [anon_sym_PIPE_AMP] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [sym__special_characters] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), + [anon_sym_BQUOTE] = ACTIONS(3957), + [anon_sym_LT_LPAREN] = ACTIONS(3957), + [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3957), + [sym_word] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), + }, + [1613] = { + [sym_concatenation] = STATE(1982), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1982), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4555), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4557), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_COLON_QMARK] = ACTIONS(4555), + [anon_sym_COLON_DASH] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1614] = { + [sym__concat] = ACTIONS(3965), + [sym_variable_name] = ACTIONS(3965), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_RPAREN] = ACTIONS(3967), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3967), + [sym__special_characters] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3967), + [anon_sym_BQUOTE] = ACTIONS(3967), + [anon_sym_LT_LPAREN] = ACTIONS(3967), + [anon_sym_GT_LPAREN] = ACTIONS(3967), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3967), + [sym_word] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), + }, + [1615] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1616] = { + [sym__concat] = ACTIONS(3971), + [sym_variable_name] = ACTIONS(3971), + [anon_sym_PIPE] = ACTIONS(3973), + [anon_sym_RPAREN] = ACTIONS(3973), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [sym__special_characters] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3973), + [anon_sym_BQUOTE] = ACTIONS(3973), + [anon_sym_LT_LPAREN] = ACTIONS(3973), + [anon_sym_GT_LPAREN] = ACTIONS(3973), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3973), + [sym_word] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_LF] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3973), + }, + [1617] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1618] = { + [sym__concat] = ACTIONS(3977), + [sym_variable_name] = ACTIONS(3977), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_RPAREN] = ACTIONS(3979), + [anon_sym_SEMI_SEMI] = ACTIONS(3979), + [anon_sym_PIPE_AMP] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [anon_sym_LT_LPAREN] = ACTIONS(3979), + [anon_sym_GT_LPAREN] = ACTIONS(3979), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3979), + [sym_word] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_LF] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3979), + }, + [1619] = { + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4003), + [anon_sym_PIPE_AMP] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_PIPE_PIPE] = ACTIONS(4003), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4003), + [anon_sym_BQUOTE] = ACTIONS(4003), + [anon_sym_LT_LPAREN] = ACTIONS(4003), + [anon_sym_GT_LPAREN] = ACTIONS(4003), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1620] = { + [sym__concat] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_SEMI_SEMI] = ACTIONS(3804), + [anon_sym_PIPE_AMP] = ACTIONS(3804), + [anon_sym_AMP_AMP] = ACTIONS(3804), + [anon_sym_PIPE_PIPE] = ACTIONS(3804), + [sym__special_characters] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3804), + [anon_sym_BQUOTE] = ACTIONS(3804), + [anon_sym_LT_LPAREN] = ACTIONS(3804), + [anon_sym_GT_LPAREN] = ACTIONS(3804), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3804), + [sym_word] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3804), + }, + [1621] = { + [sym__concat] = ACTIONS(3810), + [anon_sym_PIPE] = ACTIONS(3812), + [anon_sym_RPAREN] = ACTIONS(3812), + [anon_sym_SEMI_SEMI] = ACTIONS(3812), + [anon_sym_PIPE_AMP] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3812), + [anon_sym_BQUOTE] = ACTIONS(3812), + [anon_sym_LT_LPAREN] = ACTIONS(3812), + [anon_sym_GT_LPAREN] = ACTIONS(3812), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3812), + [sym_word] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_LF] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3812), + }, + [1622] = { + [sym__concat] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_RPAREN] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [anon_sym_PIPE_AMP] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), + [anon_sym_LT_LPAREN] = ACTIONS(3911), + [anon_sym_GT_LPAREN] = ACTIONS(3911), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3911), + [sym_word] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + }, + [1623] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1624] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4565), + [sym_comment] = ACTIONS(53), + }, + [1625] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4567), + [sym_comment] = ACTIONS(53), + }, + [1626] = { + [anon_sym_RBRACE] = ACTIONS(4567), + [sym_comment] = ACTIONS(53), + }, + [1627] = { + [sym_concatenation] = STATE(1989), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1989), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_EQ] = ACTIONS(4571), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4573), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4571), + [anon_sym_COLON_DASH] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1628] = { + [sym__concat] = ACTIONS(3945), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3947), + [anon_sym_PIPE_AMP] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [sym__special_characters] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), + [anon_sym_BQUOTE] = ACTIONS(3947), + [anon_sym_LT_LPAREN] = ACTIONS(3947), + [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3947), + [sym_word] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3947), + }, + [1629] = { + [sym_concatenation] = STATE(1991), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1991), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4577), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4579), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_COLON_QMARK] = ACTIONS(4577), + [anon_sym_COLON_DASH] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1630] = { + [sym__concat] = ACTIONS(3955), + [anon_sym_PIPE] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_SEMI_SEMI] = ACTIONS(3957), + [anon_sym_PIPE_AMP] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [sym__special_characters] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), + [anon_sym_BQUOTE] = ACTIONS(3957), + [anon_sym_LT_LPAREN] = ACTIONS(3957), + [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3957), + [sym_word] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), + }, + [1631] = { + [sym_concatenation] = STATE(1993), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(1993), + [anon_sym_RBRACE] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(4583), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_COLON_QMARK] = ACTIONS(4583), + [anon_sym_COLON_DASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1632] = { + [sym__concat] = ACTIONS(3965), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_RPAREN] = ACTIONS(3967), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3967), + [sym__special_characters] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3967), + [anon_sym_BQUOTE] = ACTIONS(3967), + [anon_sym_LT_LPAREN] = ACTIONS(3967), + [anon_sym_GT_LPAREN] = ACTIONS(3967), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3967), + [sym_word] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), + }, + [1633] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1634] = { + [sym__concat] = ACTIONS(3971), + [anon_sym_PIPE] = ACTIONS(3973), + [anon_sym_RPAREN] = ACTIONS(3973), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [sym__special_characters] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3973), + [anon_sym_BQUOTE] = ACTIONS(3973), + [anon_sym_LT_LPAREN] = ACTIONS(3973), + [anon_sym_GT_LPAREN] = ACTIONS(3973), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3973), + [sym_word] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_LF] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3973), + }, + [1635] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1636] = { + [sym__concat] = ACTIONS(3977), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_RPAREN] = ACTIONS(3979), + [anon_sym_SEMI_SEMI] = ACTIONS(3979), + [anon_sym_PIPE_AMP] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [anon_sym_LT_LPAREN] = ACTIONS(3979), + [anon_sym_GT_LPAREN] = ACTIONS(3979), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3979), + [sym_word] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_LF] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3979), + }, + [1637] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4003), + [anon_sym_PIPE_AMP] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_PIPE_PIPE] = ACTIONS(4003), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4003), + [anon_sym_BQUOTE] = ACTIONS(4003), + [anon_sym_LT_LPAREN] = ACTIONS(4003), + [anon_sym_GT_LPAREN] = ACTIONS(4003), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1638] = { + [sym_file_descriptor] = ACTIONS(3802), + [sym__concat] = ACTIONS(3802), + [sym_variable_name] = ACTIONS(3802), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_GT] = ACTIONS(3804), + [anon_sym_GT_GT] = ACTIONS(3802), + [anon_sym_AMP_GT] = ACTIONS(3804), + [anon_sym_AMP_GT_GT] = ACTIONS(3802), + [anon_sym_LT_AMP] = ACTIONS(3802), + [anon_sym_GT_AMP] = ACTIONS(3802), [sym__special_characters] = ACTIONS(3802), [anon_sym_DQUOTE] = ACTIONS(3802), [anon_sym_DOLLAR] = ACTIONS(3804), @@ -36275,9442 +47918,1614 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(3802), }, - [1152] = { - [anon_sym_esac] = ACTIONS(3806), - [sym_comment] = ACTIONS(53), - }, - [1153] = { - [aux_sym_case_item_repeat1] = STATE(1637), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(3800), - [sym_comment] = ACTIONS(53), - }, - [1154] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(1639), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1640), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2467), - }, - [1155] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(1639), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1642), - [anon_sym_esac] = ACTIONS(3808), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2469), - }, - [1156] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_in] = ACTIONS(2922), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), - [sym__special_characters] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), - [anon_sym_BQUOTE] = ACTIONS(2922), - [anon_sym_LT_LPAREN] = ACTIONS(2922), - [anon_sym_GT_LPAREN] = ACTIONS(2922), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), - }, - [1157] = { - [anon_sym_esac] = ACTIONS(3810), - [anon_sym_PIPE] = ACTIONS(3810), - [anon_sym_RPAREN] = ACTIONS(3810), - [anon_sym_SEMI_SEMI] = ACTIONS(3810), - [anon_sym_PIPE_AMP] = ACTIONS(3810), - [anon_sym_AMP_AMP] = ACTIONS(3810), - [anon_sym_PIPE_PIPE] = ACTIONS(3810), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3810), - [anon_sym_LF] = ACTIONS(3812), - [anon_sym_AMP] = ACTIONS(3810), - }, - [1158] = { - [anon_sym_esac] = ACTIONS(3814), - [sym_comment] = ACTIONS(53), - }, - [1159] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(1644), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1640), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2467), - }, - [1160] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(1644), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1646), - [anon_sym_esac] = ACTIONS(3816), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2469), - }, - [1161] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2936), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), - [anon_sym_BQUOTE] = ACTIONS(2936), - [anon_sym_LT_LPAREN] = ACTIONS(2936), - [anon_sym_GT_LPAREN] = ACTIONS(2936), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [1162] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(3818), - [sym_comment] = ACTIONS(53), - }, - [1163] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(3820), - [sym_comment] = ACTIONS(53), - }, - [1164] = { - [anon_sym_RBRACE] = ACTIONS(3820), - [sym_comment] = ACTIONS(53), - }, - [1165] = { - [sym_concatenation] = STATE(1650), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1650), - [anon_sym_RBRACE] = ACTIONS(3822), - [anon_sym_EQ] = ACTIONS(3824), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3824), - [anon_sym_COLON_DASH] = ACTIONS(3824), - [anon_sym_PERCENT] = ACTIONS(3824), - [anon_sym_DASH] = ACTIONS(3824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1166] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_in] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [sym__special_characters] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [anon_sym_LT_LPAREN] = ACTIONS(3018), - [anon_sym_GT_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), - }, - [1167] = { - [sym_concatenation] = STATE(1653), - [sym_string] = STATE(1652), - [sym_simple_expansion] = STATE(1652), - [sym_string_expansion] = STATE(1652), - [sym_expansion] = STATE(1652), - [sym_command_substitution] = STATE(1652), - [sym_process_substitution] = STATE(1652), - [anon_sym_RBRACE] = ACTIONS(3820), - [sym__special_characters] = ACTIONS(3828), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(3830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3830), - }, - [1168] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_SEMI_SEMI] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), - [anon_sym_BQUOTE] = ACTIONS(3061), - [anon_sym_LT_LPAREN] = ACTIONS(3061), - [anon_sym_GT_LPAREN] = ACTIONS(3061), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - }, - [1169] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3832), - }, - [1170] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3834), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1171] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3069), - [sym__special_characters] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3069), - [anon_sym_LT_LPAREN] = ACTIONS(3069), - [anon_sym_GT_LPAREN] = ACTIONS(3069), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), - }, - [1172] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3836), - }, - [1173] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3838), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1174] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3840), - }, - [1175] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3820), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1176] = { - [sym_concatenation] = STATE(1660), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1660), - [anon_sym_RBRACE] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(3844), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3844), - [anon_sym_COLON_QMARK] = ACTIONS(3844), - [anon_sym_COLON_DASH] = ACTIONS(3844), - [anon_sym_PERCENT] = ACTIONS(3844), - [anon_sym_DASH] = ACTIONS(3844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1177] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3085), - [sym__special_characters] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), - [anon_sym_BQUOTE] = ACTIONS(3085), - [anon_sym_LT_LPAREN] = ACTIONS(3085), - [anon_sym_GT_LPAREN] = ACTIONS(3085), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - }, - [1178] = { - [sym_concatenation] = STATE(1662), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1662), - [anon_sym_RBRACE] = ACTIONS(3848), - [anon_sym_EQ] = ACTIONS(3850), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3850), - [anon_sym_COLON_QMARK] = ACTIONS(3850), - [anon_sym_COLON_DASH] = ACTIONS(3850), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1179] = { - [sym_file_redirect] = STATE(1663), - [sym_file_descriptor] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3854), - [anon_sym_PIPE_AMP] = ACTIONS(3854), - [anon_sym_AMP_AMP] = ACTIONS(3854), - [anon_sym_PIPE_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_AMP_GT] = ACTIONS(1337), - [anon_sym_AMP_GT_GT] = ACTIONS(1337), - [anon_sym_LT_AMP] = ACTIONS(1337), - [anon_sym_GT_AMP] = ACTIONS(1337), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3856), - [anon_sym_AMP] = ACTIONS(3854), - }, - [1180] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(997), - [sym_raw_string] = ACTIONS(995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), - [anon_sym_BQUOTE] = ACTIONS(995), - [anon_sym_LT_LPAREN] = ACTIONS(995), - [anon_sym_GT_LPAREN] = ACTIONS(995), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(997), - }, - [1181] = { - [sym_file_descriptor] = ACTIONS(3858), - [anon_sym_esac] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3860), - [anon_sym_RPAREN] = ACTIONS(3860), - [anon_sym_SEMI_SEMI] = ACTIONS(3860), - [anon_sym_PIPE_AMP] = ACTIONS(3860), - [anon_sym_AMP_AMP] = ACTIONS(3860), - [anon_sym_PIPE_PIPE] = ACTIONS(3860), - [anon_sym_LT] = ACTIONS(3860), - [anon_sym_GT] = ACTIONS(3860), - [anon_sym_GT_GT] = ACTIONS(3860), - [anon_sym_AMP_GT] = ACTIONS(3860), - [anon_sym_AMP_GT_GT] = ACTIONS(3860), - [anon_sym_LT_AMP] = ACTIONS(3860), - [anon_sym_GT_AMP] = ACTIONS(3860), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3860), - [anon_sym_LF] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3860), - }, - [1182] = { - [sym__terminated_statement] = STATE(1182), - [sym_for_statement] = STATE(680), - [sym_c_style_for_statement] = STATE(680), - [sym_while_statement] = STATE(680), - [sym_if_statement] = STATE(680), - [sym_case_statement] = STATE(680), - [sym_function_definition] = STATE(680), - [sym_subshell] = STATE(680), - [sym_pipeline] = STATE(680), - [sym_list] = STATE(680), - [sym_negated_command] = STATE(680), - [sym_test_command] = STATE(680), - [sym_declaration_command] = STATE(680), - [sym_unset_command] = STATE(680), - [sym_command] = STATE(680), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(681), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1182), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(1043), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), - [anon_sym_declare] = ACTIONS(1078), - [anon_sym_typeset] = ACTIONS(1078), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_readonly] = ACTIONS(1078), - [anon_sym_local] = ACTIONS(1078), - [anon_sym_unset] = ACTIONS(1081), - [anon_sym_unsetenv] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1087), - [anon_sym_LT_AMP] = ACTIONS(1087), - [anon_sym_GT_AMP] = ACTIONS(1087), - [sym__special_characters] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1096), - [sym_raw_string] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1108), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1114), - }, - [1183] = { - [sym_concatenation] = STATE(1666), - [sym_string] = STATE(1665), - [sym_simple_expansion] = STATE(1665), - [sym_string_expansion] = STATE(1665), - [sym_expansion] = STATE(1665), - [sym_command_substitution] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [sym__special_characters] = ACTIONS(3862), - [anon_sym_DQUOTE] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(3864), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1633), - [anon_sym_LT_LPAREN] = ACTIONS(1635), - [anon_sym_GT_LPAREN] = ACTIONS(1635), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3864), - }, - [1184] = { - [aux_sym_concatenation_repeat1] = STATE(1667), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(701), - }, - [1185] = { - [aux_sym_concatenation_repeat1] = STATE(1667), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [1186] = { - [anon_sym_esac] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [1187] = { - [aux_sym_concatenation_repeat1] = STATE(1668), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(1175), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [1188] = { - [sym_file_redirect] = STATE(709), - [sym_heredoc_redirect] = STATE(709), - [sym_heredoc_body] = STATE(1140), - [sym_herestring_redirect] = STATE(709), - [aux_sym_while_statement_repeat1] = STATE(709), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_RPAREN] = ACTIONS(2445), - [anon_sym_SEMI_SEMI] = ACTIONS(2445), - [anon_sym_PIPE_AMP] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_PIPE_PIPE] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(515), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(517), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2445), - }, - [1189] = { - [sym_compound_statement] = STATE(1669), - [anon_sym_LBRACE] = ACTIONS(483), - [sym_comment] = ACTIONS(53), - }, - [1190] = { - [anon_sym_LT] = ACTIONS(3866), - [anon_sym_GT] = ACTIONS(3866), - [anon_sym_GT_GT] = ACTIONS(3868), - [anon_sym_AMP_GT] = ACTIONS(3866), - [anon_sym_AMP_GT_GT] = ACTIONS(3868), - [anon_sym_LT_AMP] = ACTIONS(3868), - [anon_sym_GT_AMP] = ACTIONS(3868), - [sym_comment] = ACTIONS(53), - }, - [1191] = { - [sym_concatenation] = STATE(1186), - [sym_string] = STATE(1672), - [sym_simple_expansion] = STATE(1672), - [sym_string_expansion] = STATE(1672), - [sym_expansion] = STATE(1672), - [sym_command_substitution] = STATE(1672), - [sym_process_substitution] = STATE(1672), - [sym__special_characters] = ACTIONS(3870), - [anon_sym_DQUOTE] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(3872), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1633), - [anon_sym_LT_LPAREN] = ACTIONS(1635), - [anon_sym_GT_LPAREN] = ACTIONS(1635), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3872), - }, - [1192] = { - [anon_sym_LT] = ACTIONS(3874), - [anon_sym_GT] = ACTIONS(3874), - [anon_sym_GT_GT] = ACTIONS(3876), - [anon_sym_AMP_GT] = ACTIONS(3874), - [anon_sym_AMP_GT_GT] = ACTIONS(3876), - [anon_sym_LT_AMP] = ACTIONS(3876), - [anon_sym_GT_AMP] = ACTIONS(3876), - [sym_comment] = ACTIONS(53), - }, - [1193] = { - [sym_concatenation] = STATE(1237), - [sym_string] = STATE(1675), - [sym_simple_expansion] = STATE(1675), - [sym_string_expansion] = STATE(1675), - [sym_expansion] = STATE(1675), - [sym_command_substitution] = STATE(1675), - [sym_process_substitution] = STATE(1675), - [sym__special_characters] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(3880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3880), - }, - [1194] = { - [sym_concatenation] = STATE(1241), - [sym_string] = STATE(1677), - [sym_simple_expansion] = STATE(1677), - [sym_string_expansion] = STATE(1677), - [sym_expansion] = STATE(1677), - [sym_command_substitution] = STATE(1677), - [sym_process_substitution] = STATE(1677), - [sym__special_characters] = ACTIONS(3882), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(3884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3884), - }, - [1195] = { - [sym_file_redirect] = STATE(1678), - [sym_heredoc_redirect] = STATE(1678), - [sym_herestring_redirect] = STATE(1678), - [aux_sym_while_statement_repeat1] = STATE(1678), - [sym_file_descriptor] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_RPAREN] = ACTIONS(2690), - [anon_sym_SEMI_SEMI] = ACTIONS(2690), - [anon_sym_PIPE_AMP] = ACTIONS(2690), - [anon_sym_AMP_AMP] = ACTIONS(2690), - [anon_sym_PIPE_PIPE] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2556), - [anon_sym_GT] = ACTIONS(2556), - [anon_sym_GT_GT] = ACTIONS(2556), - [anon_sym_AMP_GT] = ACTIONS(2556), - [anon_sym_AMP_GT_GT] = ACTIONS(2556), - [anon_sym_LT_AMP] = ACTIONS(2556), - [anon_sym_GT_AMP] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_LT_LT_DASH] = ACTIONS(1449), - [anon_sym_LT_LT_LT] = ACTIONS(2558), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_LF] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2690), - }, - [1196] = { - [aux_sym_concatenation_repeat1] = STATE(693), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_SEMI_SEMI] = ACTIONS(1177), - [anon_sym_PIPE_AMP] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [sym__special_characters] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1177), - [anon_sym_LT_LPAREN] = ACTIONS(1177), - [anon_sym_GT_LPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), - [sym_word] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1177), - }, - [1197] = { - [aux_sym_concatenation_repeat1] = STATE(693), - [sym__concat] = ACTIONS(613), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_SEMI_SEMI] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [sym__special_characters] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_LT_LPAREN] = ACTIONS(1153), - [anon_sym_GT_LPAREN] = ACTIONS(1153), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), - [sym_word] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - }, - [1198] = { - [aux_sym_concatenation_repeat1] = STATE(1198), - [sym__concat] = ACTIONS(2741), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [1199] = { - [aux_sym_concatenation_repeat1] = STATE(1199), - [sym__concat] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [1200] = { - [sym_file_redirect] = STATE(1520), - [sym_file_descriptor] = ACTIONS(2550), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_SEMI_SEMI] = ACTIONS(2544), - [anon_sym_PIPE_AMP] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2552), - [anon_sym_AMP_GT] = ACTIONS(2552), - [anon_sym_AMP_GT_GT] = ACTIONS(2552), - [anon_sym_LT_AMP] = ACTIONS(2552), - [anon_sym_GT_AMP] = ACTIONS(2552), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LF] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(2544), - }, - [1201] = { - [aux_sym_concatenation_repeat1] = STATE(1203), - [sym__simple_heredoc_body] = ACTIONS(1133), - [sym__heredoc_body_beginning] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1135), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1135), - [anon_sym_LT_AMP] = ACTIONS(1135), - [anon_sym_GT_AMP] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1135), - [anon_sym_LT_LT_LT] = ACTIONS(1135), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LF] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), - }, - [1202] = { - [aux_sym_concatenation_repeat1] = STATE(1203), - [sym__simple_heredoc_body] = ACTIONS(1137), - [sym__heredoc_body_beginning] = ACTIONS(1137), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1139), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1139), - [anon_sym_LT_AMP] = ACTIONS(1139), - [anon_sym_GT_AMP] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [1203] = { - [aux_sym_concatenation_repeat1] = STATE(1679), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [1204] = { - [anon_sym_esac] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3886), - [anon_sym_RPAREN] = ACTIONS(3886), - [anon_sym_SEMI_SEMI] = ACTIONS(3886), - [anon_sym_PIPE_AMP] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3888), - [anon_sym_AMP] = ACTIONS(3886), - }, - [1205] = { - [sym_file_redirect] = STATE(709), - [sym_heredoc_redirect] = STATE(709), - [sym_heredoc_body] = STATE(1536), - [sym_herestring_redirect] = STATE(709), - [aux_sym_while_statement_repeat1] = STATE(709), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_RPAREN] = ACTIONS(3525), - [anon_sym_SEMI_SEMI] = ACTIONS(3525), - [anon_sym_PIPE_AMP] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(515), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(517), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_LF] = ACTIONS(3527), - [anon_sym_AMP] = ACTIONS(3525), - }, - [1206] = { - [sym_file_descriptor] = ACTIONS(2253), - [sym_variable_name] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2255), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_PIPE_AMP] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_GT] = ACTIONS(2255), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_GT] = ACTIONS(2255), - [anon_sym_AMP_GT_GT] = ACTIONS(2253), - [anon_sym_LT_AMP] = ACTIONS(2253), - [anon_sym_GT_AMP] = ACTIONS(2253), - [sym__special_characters] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2255), - [sym_raw_string] = ACTIONS(2253), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2253), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2253), - [anon_sym_BQUOTE] = ACTIONS(2253), - [anon_sym_LT_LPAREN] = ACTIONS(2253), - [anon_sym_GT_LPAREN] = ACTIONS(2253), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2253), - }, - [1207] = { - [sym_concatenation] = STATE(1075), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(1075), - [anon_sym_RPAREN] = ACTIONS(3890), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), - }, - [1208] = { - [aux_sym_concatenation_repeat1] = STATE(1208), - [sym__concat] = ACTIONS(2694), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1754), - }, - [1209] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_RBRACK] = ACTIONS(2920), - [anon_sym_EQ_TILDE] = ACTIONS(2920), - [anon_sym_EQ_EQ] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2920), - }, - [1210] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_RBRACK] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_GT] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2934), - }, - [1211] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(3892), - [sym_comment] = ACTIONS(53), - }, - [1212] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(3894), - [sym_comment] = ACTIONS(53), - }, - [1213] = { - [anon_sym_RBRACE] = ACTIONS(3894), - [sym_comment] = ACTIONS(53), - }, - [1214] = { - [sym_concatenation] = STATE(1684), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1684), - [anon_sym_RBRACE] = ACTIONS(3896), - [anon_sym_EQ] = ACTIONS(3898), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3900), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3898), - [anon_sym_COLON_QMARK] = ACTIONS(3898), - [anon_sym_COLON_DASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1215] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [anon_sym_RBRACK] = ACTIONS(3016), - [anon_sym_EQ_TILDE] = ACTIONS(3016), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3016), - }, - [1216] = { - [sym_concatenation] = STATE(1687), - [sym_string] = STATE(1686), - [sym_simple_expansion] = STATE(1686), - [sym_string_expansion] = STATE(1686), - [sym_expansion] = STATE(1686), - [sym_command_substitution] = STATE(1686), - [sym_process_substitution] = STATE(1686), - [anon_sym_RBRACE] = ACTIONS(3894), - [sym__special_characters] = ACTIONS(3902), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(3904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3904), - }, - [1217] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_RBRACK] = ACTIONS(3059), - [anon_sym_EQ_TILDE] = ACTIONS(3059), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_EQ] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_GT] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3059), - }, - [1218] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3906), - }, - [1219] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3908), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1220] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_RBRACK] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3067), - }, - [1221] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3910), - }, - [1222] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1223] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3914), - }, - [1224] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1225] = { - [sym_concatenation] = STATE(1694), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1694), - [anon_sym_RBRACE] = ACTIONS(3916), - [anon_sym_EQ] = ACTIONS(3918), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3918), - [anon_sym_COLON_QMARK] = ACTIONS(3918), - [anon_sym_COLON_DASH] = ACTIONS(3918), - [anon_sym_PERCENT] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1226] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_EQ_TILDE] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3083), - }, - [1227] = { - [sym_concatenation] = STATE(1696), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1696), - [anon_sym_RBRACE] = ACTIONS(3922), - [anon_sym_EQ] = ACTIONS(3924), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3924), - [anon_sym_COLON_QMARK] = ACTIONS(3924), - [anon_sym_COLON_DASH] = ACTIONS(3924), - [anon_sym_PERCENT] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1228] = { - [sym_concatenation] = STATE(1699), - [sym_string] = STATE(1698), - [sym_simple_expansion] = STATE(1698), - [sym_string_expansion] = STATE(1698), - [sym_expansion] = STATE(1698), - [sym_command_substitution] = STATE(1698), - [sym_process_substitution] = STATE(1698), - [sym__special_characters] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(3930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3930), - }, - [1229] = { - [aux_sym_concatenation_repeat1] = STATE(1701), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(701), - [anon_sym_LT_AMP] = ACTIONS(701), - [anon_sym_GT_AMP] = ACTIONS(701), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(701), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(701), - }, - [1230] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(1704), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [1231] = { - [sym_string] = STATE(1706), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(3938), - [sym_raw_string] = ACTIONS(3940), - [anon_sym_POUND] = ACTIONS(3938), - [anon_sym_DASH] = ACTIONS(3938), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3942), - [anon_sym_STAR] = ACTIONS(3938), - [anon_sym_AT] = ACTIONS(3938), - [anon_sym_QMARK] = ACTIONS(3938), - [anon_sym_0] = ACTIONS(3944), - [anon_sym__] = ACTIONS(3944), - }, - [1232] = { - [aux_sym_concatenation_repeat1] = STATE(1701), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(717), - [anon_sym_LT_AMP] = ACTIONS(717), - [anon_sym_GT_AMP] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(717), - [anon_sym_LT_LT_LT] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [1233] = { - [sym_subscript] = STATE(1712), - [sym_variable_name] = ACTIONS(3946), - [anon_sym_DOLLAR] = ACTIONS(3948), - [anon_sym_POUND] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3948), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_AT] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_0] = ACTIONS(3954), - [anon_sym__] = ACTIONS(3954), - }, - [1234] = { - [sym_for_statement] = STATE(1713), - [sym_c_style_for_statement] = STATE(1713), - [sym_while_statement] = STATE(1713), - [sym_if_statement] = STATE(1713), - [sym_case_statement] = STATE(1713), - [sym_function_definition] = STATE(1713), - [sym_subshell] = STATE(1713), - [sym_pipeline] = STATE(1713), - [sym_list] = STATE(1713), - [sym_negated_command] = STATE(1713), - [sym_test_command] = STATE(1713), - [sym_declaration_command] = STATE(1713), - [sym_unset_command] = STATE(1713), - [sym_command] = STATE(1713), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1714), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [1235] = { - [sym_for_statement] = STATE(1715), - [sym_c_style_for_statement] = STATE(1715), - [sym_while_statement] = STATE(1715), - [sym_if_statement] = STATE(1715), - [sym_case_statement] = STATE(1715), - [sym_function_definition] = STATE(1715), - [sym_subshell] = STATE(1715), - [sym_pipeline] = STATE(1715), - [sym_list] = STATE(1715), - [sym_negated_command] = STATE(1715), - [sym_test_command] = STATE(1715), - [sym_declaration_command] = STATE(1715), - [sym_unset_command] = STATE(1715), - [sym_command] = STATE(1715), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(1716), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [1236] = { - [sym_for_statement] = STATE(1717), - [sym_c_style_for_statement] = STATE(1717), - [sym_while_statement] = STATE(1717), - [sym_if_statement] = STATE(1717), - [sym_case_statement] = STATE(1717), - [sym_function_definition] = STATE(1717), - [sym_subshell] = STATE(1717), - [sym_pipeline] = STATE(1717), - [sym_list] = STATE(1717), - [sym_negated_command] = STATE(1717), - [sym_test_command] = STATE(1717), - [sym_declaration_command] = STATE(1717), - [sym_unset_command] = STATE(1717), - [sym_command] = STATE(1717), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1718), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [1237] = { - [sym_file_descriptor] = ACTIONS(715), - [anon_sym_esac] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(717), - [anon_sym_LT_AMP] = ACTIONS(717), - [anon_sym_GT_AMP] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(717), - [anon_sym_LT_LT_LT] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [1238] = { - [sym_file_descriptor] = ACTIONS(2180), - [anon_sym_esac] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_RPAREN] = ACTIONS(2182), - [anon_sym_SEMI_SEMI] = ACTIONS(2182), - [anon_sym_PIPE_AMP] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2182), - [anon_sym_PIPE_PIPE] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2182), - [anon_sym_GT_GT] = ACTIONS(2182), - [anon_sym_AMP_GT] = ACTIONS(2182), - [anon_sym_AMP_GT_GT] = ACTIONS(2182), - [anon_sym_LT_AMP] = ACTIONS(2182), - [anon_sym_GT_AMP] = ACTIONS(2182), - [anon_sym_LT_LT] = ACTIONS(2182), - [anon_sym_LT_LT_DASH] = ACTIONS(2182), - [anon_sym_LT_LT_LT] = ACTIONS(2182), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_LF] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2182), - }, - [1239] = { - [aux_sym_concatenation_repeat1] = STATE(1701), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_SEMI_SEMI] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(2186), - [anon_sym_AMP_AMP] = ACTIONS(2186), - [anon_sym_PIPE_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2186), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2186), - [anon_sym_LT_AMP] = ACTIONS(2186), - [anon_sym_GT_AMP] = ACTIONS(2186), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2186), - [anon_sym_LT_LT_LT] = ACTIONS(2186), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2186), - }, - [1240] = { - [aux_sym_concatenation_repeat1] = STATE(1701), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2190), - }, - [1241] = { - [sym_file_descriptor] = ACTIONS(2188), - [anon_sym_esac] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2190), - }, - [1242] = { - [sym_file_redirect] = STATE(1242), - [sym_heredoc_redirect] = STATE(1242), - [sym_herestring_redirect] = STATE(1242), - [aux_sym_while_statement_repeat1] = STATE(1242), - [sym_file_descriptor] = ACTIONS(3956), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_SEMI_SEMI] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_AMP_GT] = ACTIONS(3959), - [anon_sym_AMP_GT_GT] = ACTIONS(3959), - [anon_sym_LT_AMP] = ACTIONS(3959), - [anon_sym_GT_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_LT_LT_DASH] = ACTIONS(3962), - [anon_sym_LT_LT_LT] = ACTIONS(3965), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2201), - }, - [1243] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2920), - [anon_sym_EQ_TILDE] = ACTIONS(2920), - [anon_sym_EQ_EQ] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2920), - }, - [1244] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_GT] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2934), - }, - [1245] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(3968), - [sym_comment] = ACTIONS(53), - }, - [1246] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(3970), - [sym_comment] = ACTIONS(53), - }, - [1247] = { - [anon_sym_RBRACE] = ACTIONS(3970), - [sym_comment] = ACTIONS(53), - }, - [1248] = { - [sym_concatenation] = STATE(1722), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1722), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_EQ] = ACTIONS(3974), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COLON_QMARK] = ACTIONS(3974), - [anon_sym_COLON_DASH] = ACTIONS(3974), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1249] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3016), - [anon_sym_EQ_TILDE] = ACTIONS(3016), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3016), - }, - [1250] = { - [sym_concatenation] = STATE(1725), - [sym_string] = STATE(1724), - [sym_simple_expansion] = STATE(1724), - [sym_string_expansion] = STATE(1724), - [sym_expansion] = STATE(1724), - [sym_command_substitution] = STATE(1724), - [sym_process_substitution] = STATE(1724), - [anon_sym_RBRACE] = ACTIONS(3970), - [sym__special_characters] = ACTIONS(3978), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(3980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3980), - }, - [1251] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3059), - [anon_sym_EQ_TILDE] = ACTIONS(3059), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_EQ] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_GT] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3059), - }, - [1252] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3982), - }, - [1253] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3984), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1254] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3067), - }, - [1255] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3986), - }, - [1256] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1257] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3990), - }, - [1258] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1259] = { - [sym_concatenation] = STATE(1732), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1732), - [anon_sym_RBRACE] = ACTIONS(3992), - [anon_sym_EQ] = ACTIONS(3994), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3996), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(3994), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_COLON_DASH] = ACTIONS(3994), - [anon_sym_PERCENT] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1260] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3083), - [anon_sym_EQ_TILDE] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3083), - }, - [1261] = { - [sym_concatenation] = STATE(1734), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1734), - [anon_sym_RBRACE] = ACTIONS(3998), - [anon_sym_EQ] = ACTIONS(4000), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4000), - [anon_sym_COLON_QMARK] = ACTIONS(4000), - [anon_sym_COLON_DASH] = ACTIONS(4000), - [anon_sym_PERCENT] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1262] = { - [sym_variable_name] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2255), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_SEMI_SEMI] = ACTIONS(2255), - [anon_sym_PIPE_AMP] = ACTIONS(2255), - [anon_sym_AMP_AMP] = ACTIONS(2255), - [anon_sym_PIPE_PIPE] = ACTIONS(2255), - [sym__special_characters] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2255), - [sym_raw_string] = ACTIONS(2255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2255), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2255), - [anon_sym_BQUOTE] = ACTIONS(2255), - [anon_sym_LT_LPAREN] = ACTIONS(2255), - [anon_sym_GT_LPAREN] = ACTIONS(2255), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2255), - [sym_word] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2255), - }, - [1263] = { - [sym_concatenation] = STATE(1075), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(1075), - [anon_sym_RPAREN] = ACTIONS(4004), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), - }, - [1264] = { - [sym__concat] = ACTIONS(2920), - [sym_variable_name] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2922), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), - [anon_sym_PIPE_AMP] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [sym__special_characters] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), - [anon_sym_BQUOTE] = ACTIONS(2922), - [anon_sym_LT_LPAREN] = ACTIONS(2922), - [anon_sym_GT_LPAREN] = ACTIONS(2922), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), - [sym_word] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), - }, - [1265] = { - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2936), - [anon_sym_PIPE_AMP] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), - [anon_sym_BQUOTE] = ACTIONS(2936), - [anon_sym_LT_LPAREN] = ACTIONS(2936), - [anon_sym_GT_LPAREN] = ACTIONS(2936), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [1266] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4006), - [sym_comment] = ACTIONS(53), - }, - [1267] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4008), - [sym_comment] = ACTIONS(53), - }, - [1268] = { - [anon_sym_RBRACE] = ACTIONS(4008), - [sym_comment] = ACTIONS(53), - }, - [1269] = { - [sym_concatenation] = STATE(1739), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1739), - [anon_sym_RBRACE] = ACTIONS(4010), - [anon_sym_EQ] = ACTIONS(4012), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4012), - [anon_sym_COLON_QMARK] = ACTIONS(4012), - [anon_sym_COLON_DASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1270] = { - [sym__concat] = ACTIONS(3016), - [sym_variable_name] = ACTIONS(3016), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [anon_sym_PIPE_AMP] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [sym__special_characters] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [anon_sym_LT_LPAREN] = ACTIONS(3018), - [anon_sym_GT_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), - [sym_word] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), - }, - [1271] = { - [sym_concatenation] = STATE(1742), - [sym_string] = STATE(1741), - [sym_simple_expansion] = STATE(1741), - [sym_string_expansion] = STATE(1741), - [sym_expansion] = STATE(1741), - [sym_command_substitution] = STATE(1741), - [sym_process_substitution] = STATE(1741), - [anon_sym_RBRACE] = ACTIONS(4008), - [sym__special_characters] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4018), - }, - [1272] = { - [sym__concat] = ACTIONS(3059), - [sym_variable_name] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_SEMI_SEMI] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), - [anon_sym_BQUOTE] = ACTIONS(3061), - [anon_sym_LT_LPAREN] = ACTIONS(3061), - [anon_sym_GT_LPAREN] = ACTIONS(3061), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - }, - [1273] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4020), - }, - [1274] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4022), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1275] = { - [sym__concat] = ACTIONS(3067), - [sym_variable_name] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3069), - [anon_sym_PIPE_AMP] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym__special_characters] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3069), - [anon_sym_LT_LPAREN] = ACTIONS(3069), - [anon_sym_GT_LPAREN] = ACTIONS(3069), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), - [sym_word] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), - }, - [1276] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4024), - }, - [1277] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1278] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4028), - }, - [1279] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1280] = { - [sym_concatenation] = STATE(1749), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1749), - [anon_sym_RBRACE] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4032), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4032), - [anon_sym_COLON_QMARK] = ACTIONS(4032), - [anon_sym_COLON_DASH] = ACTIONS(4032), - [anon_sym_PERCENT] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1281] = { - [sym__concat] = ACTIONS(3083), - [sym_variable_name] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3085), - [anon_sym_PIPE_AMP] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [sym__special_characters] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), - [anon_sym_BQUOTE] = ACTIONS(3085), - [anon_sym_LT_LPAREN] = ACTIONS(3085), - [anon_sym_GT_LPAREN] = ACTIONS(3085), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), - [sym_word] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - }, - [1282] = { - [sym_concatenation] = STATE(1751), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1751), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_EQ] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4038), - [anon_sym_COLON_QMARK] = ACTIONS(4038), - [anon_sym_COLON_DASH] = ACTIONS(4038), - [anon_sym_PERCENT] = ACTIONS(4038), - [anon_sym_DASH] = ACTIONS(4038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1283] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2922), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), - [anon_sym_PIPE_AMP] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [sym__special_characters] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), - [anon_sym_BQUOTE] = ACTIONS(2922), - [anon_sym_LT_LPAREN] = ACTIONS(2922), - [anon_sym_GT_LPAREN] = ACTIONS(2922), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), - [sym_word] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), - }, - [1284] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2936), - [anon_sym_PIPE_AMP] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), - [anon_sym_BQUOTE] = ACTIONS(2936), - [anon_sym_LT_LPAREN] = ACTIONS(2936), - [anon_sym_GT_LPAREN] = ACTIONS(2936), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [1285] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4042), - [sym_comment] = ACTIONS(53), - }, - [1286] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4044), - [sym_comment] = ACTIONS(53), - }, - [1287] = { - [anon_sym_RBRACE] = ACTIONS(4044), - [sym_comment] = ACTIONS(53), - }, - [1288] = { - [sym_concatenation] = STATE(1755), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1755), - [anon_sym_RBRACE] = ACTIONS(4046), - [anon_sym_EQ] = ACTIONS(4048), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4048), - [anon_sym_COLON_QMARK] = ACTIONS(4048), - [anon_sym_COLON_DASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_DASH] = ACTIONS(4048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1289] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [anon_sym_PIPE_AMP] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [sym__special_characters] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [anon_sym_LT_LPAREN] = ACTIONS(3018), - [anon_sym_GT_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), - [sym_word] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), - }, - [1290] = { - [sym_concatenation] = STATE(1758), - [sym_string] = STATE(1757), - [sym_simple_expansion] = STATE(1757), - [sym_string_expansion] = STATE(1757), - [sym_expansion] = STATE(1757), - [sym_command_substitution] = STATE(1757), - [sym_process_substitution] = STATE(1757), - [anon_sym_RBRACE] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4054), - }, - [1291] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_SEMI_SEMI] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), - [anon_sym_BQUOTE] = ACTIONS(3061), - [anon_sym_LT_LPAREN] = ACTIONS(3061), - [anon_sym_GT_LPAREN] = ACTIONS(3061), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - }, - [1292] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4056), - }, - [1293] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1294] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3069), - [anon_sym_PIPE_AMP] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym__special_characters] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3069), - [anon_sym_LT_LPAREN] = ACTIONS(3069), - [anon_sym_GT_LPAREN] = ACTIONS(3069), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), - [sym_word] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), - }, - [1295] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4060), - }, - [1296] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4062), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1297] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4064), - }, - [1298] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4044), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1299] = { - [sym_concatenation] = STATE(1765), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1765), - [anon_sym_RBRACE] = ACTIONS(4066), - [anon_sym_EQ] = ACTIONS(4068), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4068), - [anon_sym_COLON_QMARK] = ACTIONS(4068), - [anon_sym_COLON_DASH] = ACTIONS(4068), - [anon_sym_PERCENT] = ACTIONS(4068), - [anon_sym_DASH] = ACTIONS(4068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1300] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3085), - [anon_sym_PIPE_AMP] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [sym__special_characters] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), - [anon_sym_BQUOTE] = ACTIONS(3085), - [anon_sym_LT_LPAREN] = ACTIONS(3085), - [anon_sym_GT_LPAREN] = ACTIONS(3085), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), - [sym_word] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - }, - [1301] = { - [sym_concatenation] = STATE(1767), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1767), - [anon_sym_RBRACE] = ACTIONS(4072), - [anon_sym_EQ] = ACTIONS(4074), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4074), - [anon_sym_COLON_QMARK] = ACTIONS(4074), - [anon_sym_COLON_DASH] = ACTIONS(4074), - [anon_sym_PERCENT] = ACTIONS(4074), - [anon_sym_DASH] = ACTIONS(4074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1302] = { - [sym_file_descriptor] = ACTIONS(2920), - [sym__concat] = ACTIONS(2920), - [sym_variable_name] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2920), - [anon_sym_PIPE_AMP] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2920), - [anon_sym_AMP_GT] = ACTIONS(2922), - [anon_sym_AMP_GT_GT] = ACTIONS(2920), - [anon_sym_LT_AMP] = ACTIONS(2920), - [anon_sym_GT_AMP] = ACTIONS(2920), - [sym__special_characters] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), - [anon_sym_BQUOTE] = ACTIONS(2920), - [anon_sym_LT_LPAREN] = ACTIONS(2920), - [anon_sym_GT_LPAREN] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2920), - }, - [1303] = { - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2934), - }, - [1304] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4078), - [sym_comment] = ACTIONS(53), - }, - [1305] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4080), - [sym_comment] = ACTIONS(53), - }, - [1306] = { - [anon_sym_RBRACE] = ACTIONS(4080), - [sym_comment] = ACTIONS(53), - }, - [1307] = { - [sym_concatenation] = STATE(1771), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1771), - [anon_sym_RBRACE] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4084), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4084), - [anon_sym_COLON_QMARK] = ACTIONS(4084), - [anon_sym_COLON_DASH] = ACTIONS(4084), - [anon_sym_PERCENT] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1308] = { - [sym_file_descriptor] = ACTIONS(3016), - [sym__concat] = ACTIONS(3016), - [sym_variable_name] = ACTIONS(3016), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_PIPE_AMP] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_GT_GT] = ACTIONS(3016), - [anon_sym_AMP_GT] = ACTIONS(3018), - [anon_sym_AMP_GT_GT] = ACTIONS(3016), - [anon_sym_LT_AMP] = ACTIONS(3016), - [anon_sym_GT_AMP] = ACTIONS(3016), - [sym__special_characters] = ACTIONS(3016), - [anon_sym_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), - [anon_sym_BQUOTE] = ACTIONS(3016), - [anon_sym_LT_LPAREN] = ACTIONS(3016), - [anon_sym_GT_LPAREN] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3016), - }, - [1309] = { - [sym_concatenation] = STATE(1774), - [sym_string] = STATE(1773), - [sym_simple_expansion] = STATE(1773), - [sym_string_expansion] = STATE(1773), - [sym_expansion] = STATE(1773), - [sym_command_substitution] = STATE(1773), - [sym_process_substitution] = STATE(1773), - [anon_sym_RBRACE] = ACTIONS(4080), - [sym__special_characters] = ACTIONS(4088), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4090), - }, - [1310] = { - [sym_file_descriptor] = ACTIONS(3059), - [sym__concat] = ACTIONS(3059), - [sym_variable_name] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3059), - [anon_sym_PIPE_AMP] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(3059), - [anon_sym_LT_AMP] = ACTIONS(3059), - [anon_sym_GT_AMP] = ACTIONS(3059), - [sym__special_characters] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), - [anon_sym_BQUOTE] = ACTIONS(3059), - [anon_sym_LT_LPAREN] = ACTIONS(3059), - [anon_sym_GT_LPAREN] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3059), - }, - [1311] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4092), - }, - [1312] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4094), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1313] = { - [sym_file_descriptor] = ACTIONS(3067), - [sym__concat] = ACTIONS(3067), - [sym_variable_name] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_PIPE_AMP] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_AMP_GT] = ACTIONS(3069), - [anon_sym_AMP_GT_GT] = ACTIONS(3067), - [anon_sym_LT_AMP] = ACTIONS(3067), - [anon_sym_GT_AMP] = ACTIONS(3067), - [sym__special_characters] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), - [anon_sym_BQUOTE] = ACTIONS(3067), - [anon_sym_LT_LPAREN] = ACTIONS(3067), - [anon_sym_GT_LPAREN] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3067), - }, - [1314] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4096), - }, - [1315] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4098), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1316] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4100), - }, - [1317] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4080), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1318] = { - [sym_concatenation] = STATE(1781), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1781), - [anon_sym_RBRACE] = ACTIONS(4102), - [anon_sym_EQ] = ACTIONS(4104), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4104), - [anon_sym_COLON_QMARK] = ACTIONS(4104), - [anon_sym_COLON_DASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1319] = { - [sym_file_descriptor] = ACTIONS(3083), - [sym__concat] = ACTIONS(3083), - [sym_variable_name] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_PIPE_AMP] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3083), - [anon_sym_AMP_GT] = ACTIONS(3085), - [anon_sym_AMP_GT_GT] = ACTIONS(3083), - [anon_sym_LT_AMP] = ACTIONS(3083), - [anon_sym_GT_AMP] = ACTIONS(3083), - [sym__special_characters] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), - [anon_sym_BQUOTE] = ACTIONS(3083), - [anon_sym_LT_LPAREN] = ACTIONS(3083), - [anon_sym_GT_LPAREN] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3083), - }, - [1320] = { - [sym_concatenation] = STATE(1783), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1783), - [anon_sym_RBRACE] = ACTIONS(4108), - [anon_sym_EQ] = ACTIONS(4110), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4112), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4110), - [anon_sym_COLON_QMARK] = ACTIONS(4110), - [anon_sym_COLON_DASH] = ACTIONS(4110), - [anon_sym_PERCENT] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1321] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym__string_content] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), - [anon_sym_BQUOTE] = ACTIONS(2936), - [sym_comment] = ACTIONS(179), - }, - [1322] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4114), - [sym_comment] = ACTIONS(53), - }, - [1323] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4116), - [sym_comment] = ACTIONS(53), - }, - [1324] = { - [anon_sym_RBRACE] = ACTIONS(4116), - [sym_comment] = ACTIONS(53), - }, - [1325] = { - [sym_concatenation] = STATE(1787), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1787), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_EQ] = ACTIONS(4120), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4120), - [anon_sym_COLON_QMARK] = ACTIONS(4120), - [anon_sym_COLON_DASH] = ACTIONS(4120), - [anon_sym_PERCENT] = ACTIONS(4120), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1326] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym__string_content] = ACTIONS(3016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [sym_comment] = ACTIONS(179), - }, - [1327] = { - [sym_concatenation] = STATE(1790), - [sym_string] = STATE(1789), - [sym_simple_expansion] = STATE(1789), - [sym_string_expansion] = STATE(1789), - [sym_expansion] = STATE(1789), - [sym_command_substitution] = STATE(1789), - [sym_process_substitution] = STATE(1789), - [anon_sym_RBRACE] = ACTIONS(4116), - [sym__special_characters] = ACTIONS(4124), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4126), - }, - [1328] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym__string_content] = ACTIONS(3059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), - [anon_sym_BQUOTE] = ACTIONS(3061), - [sym_comment] = ACTIONS(179), - }, - [1329] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4128), - }, - [1330] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4130), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1331] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym__string_content] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_comment] = ACTIONS(179), - }, - [1332] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4132), - }, - [1333] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1334] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4136), - }, - [1335] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4116), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1336] = { - [sym_concatenation] = STATE(1797), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1797), - [anon_sym_RBRACE] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4140), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4140), - [anon_sym_COLON_QMARK] = ACTIONS(4140), - [anon_sym_COLON_DASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1337] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym__string_content] = ACTIONS(3083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), - [anon_sym_BQUOTE] = ACTIONS(3085), - [sym_comment] = ACTIONS(179), - }, - [1338] = { - [sym_concatenation] = STATE(1799), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1799), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4146), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4146), - [anon_sym_COLON_QMARK] = ACTIONS(4146), - [anon_sym_COLON_DASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1339] = { - [sym_string] = STATE(723), - [sym_simple_expansion] = STATE(723), - [sym_string_expansion] = STATE(723), - [sym_expansion] = STATE(723), - [sym_command_substitution] = STATE(723), - [sym_process_substitution] = STATE(723), - [anon_sym_RBRACK] = ACTIONS(4150), - [sym__special_characters] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(1399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1399), - }, - [1340] = { - [sym__concat] = ACTIONS(4152), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_EQ] = ACTIONS(4154), - [sym__special_characters] = ACTIONS(4154), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(4154), - [sym_raw_string] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_COLON] = ACTIONS(4154), - [anon_sym_COLON_QMARK] = ACTIONS(4154), - [anon_sym_COLON_DASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2245), - [anon_sym_BQUOTE] = ACTIONS(2245), - [anon_sym_LT_LPAREN] = ACTIONS(2245), - [anon_sym_GT_LPAREN] = ACTIONS(2245), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4154), - }, - [1341] = { - [sym_string] = STATE(723), - [sym_simple_expansion] = STATE(723), - [sym_string_expansion] = STATE(723), - [sym_expansion] = STATE(723), - [sym_command_substitution] = STATE(723), - [sym_process_substitution] = STATE(723), - [anon_sym_RBRACK] = ACTIONS(4156), - [sym__special_characters] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(1399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1399), - }, - [1342] = { - [sym__concat] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_EQ] = ACTIONS(4160), - [sym__special_characters] = ACTIONS(4160), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_DOLLAR] = ACTIONS(4160), - [sym_raw_string] = ACTIONS(2251), - [anon_sym_POUND] = ACTIONS(2251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_COLON] = ACTIONS(4160), - [anon_sym_COLON_QMARK] = ACTIONS(4160), - [anon_sym_COLON_DASH] = ACTIONS(4160), - [anon_sym_PERCENT] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2251), - [anon_sym_BQUOTE] = ACTIONS(2251), - [anon_sym_LT_LPAREN] = ACTIONS(2251), - [anon_sym_GT_LPAREN] = ACTIONS(2251), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4160), - }, - [1343] = { - [anon_sym_RBRACK] = ACTIONS(4156), - [sym_comment] = ACTIONS(53), - }, - [1344] = { - [sym_string] = STATE(1804), - [sym_simple_expansion] = STATE(1804), - [sym_string_expansion] = STATE(1804), - [sym_expansion] = STATE(1804), - [sym_command_substitution] = STATE(1804), - [sym_process_substitution] = STATE(1804), - [sym__special_characters] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4162), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4162), - }, - [1345] = { - [sym__simple_heredoc_body] = ACTIONS(4164), - [sym__heredoc_body_beginning] = ACTIONS(4164), - [sym_file_descriptor] = ACTIONS(4164), - [sym__concat] = ACTIONS(4164), - [anon_sym_esac] = ACTIONS(4166), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_SEMI_SEMI] = ACTIONS(4166), - [anon_sym_PIPE_AMP] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_EQ_TILDE] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4166), - [anon_sym_GT] = ACTIONS(4166), - [anon_sym_GT_GT] = ACTIONS(4166), - [anon_sym_AMP_GT] = ACTIONS(4166), - [anon_sym_AMP_GT_GT] = ACTIONS(4166), - [anon_sym_LT_AMP] = ACTIONS(4166), - [anon_sym_GT_AMP] = ACTIONS(4166), - [anon_sym_LT_LT] = ACTIONS(4166), - [anon_sym_LT_LT_DASH] = ACTIONS(4166), - [anon_sym_LT_LT_LT] = ACTIONS(4166), - [sym__special_characters] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), - [anon_sym_BQUOTE] = ACTIONS(4166), - [anon_sym_LT_LPAREN] = ACTIONS(4166), - [anon_sym_GT_LPAREN] = ACTIONS(4166), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4166), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4166), - }, - [1346] = { - [aux_sym_concatenation_repeat1] = STATE(1805), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - }, - [1347] = { - [sym__concat] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - }, - [1348] = { - [anon_sym_DQUOTE] = ACTIONS(4168), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1349] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(4168), - [anon_sym_DOLLAR] = ACTIONS(4170), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [1350] = { - [sym__concat] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [sym_comment] = ACTIONS(53), - }, - [1351] = { - [sym__concat] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [sym_comment] = ACTIONS(53), - }, - [1352] = { - [sym__concat] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [sym_comment] = ACTIONS(53), - }, - [1353] = { - [sym__simple_heredoc_body] = ACTIONS(4172), - [sym__heredoc_body_beginning] = ACTIONS(4172), - [sym_file_descriptor] = ACTIONS(4172), - [sym__concat] = ACTIONS(4172), - [anon_sym_esac] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4174), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE_PIPE] = ACTIONS(4174), - [anon_sym_EQ_TILDE] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT] = ACTIONS(4174), - [anon_sym_GT] = ACTIONS(4174), - [anon_sym_GT_GT] = ACTIONS(4174), - [anon_sym_AMP_GT] = ACTIONS(4174), - [anon_sym_AMP_GT_GT] = ACTIONS(4174), - [anon_sym_LT_AMP] = ACTIONS(4174), - [anon_sym_GT_AMP] = ACTIONS(4174), - [anon_sym_LT_LT] = ACTIONS(4174), - [anon_sym_LT_LT_DASH] = ACTIONS(4174), - [anon_sym_LT_LT_LT] = ACTIONS(4174), - [sym__special_characters] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), - [anon_sym_BQUOTE] = ACTIONS(4174), - [anon_sym_LT_LPAREN] = ACTIONS(4174), - [anon_sym_GT_LPAREN] = ACTIONS(4174), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4174), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4174), - }, - [1354] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(4176), - [sym_comment] = ACTIONS(53), - }, - [1355] = { - [sym_concatenation] = STATE(1811), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1811), - [anon_sym_RBRACE] = ACTIONS(4178), - [anon_sym_EQ] = ACTIONS(4180), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4182), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4184), - [anon_sym_COLON] = ACTIONS(4180), - [anon_sym_COLON_QMARK] = ACTIONS(4180), - [anon_sym_COLON_DASH] = ACTIONS(4180), - [anon_sym_PERCENT] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1356] = { - [sym_subscript] = STATE(1815), - [sym_variable_name] = ACTIONS(4186), - [anon_sym_DOLLAR] = ACTIONS(4188), - [anon_sym_DASH] = ACTIONS(4188), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_AT] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4188), - [anon_sym_0] = ACTIONS(4192), - [anon_sym__] = ACTIONS(4192), - }, - [1357] = { - [sym_concatenation] = STATE(1818), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1818), - [anon_sym_RBRACE] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4196), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_COLON] = ACTIONS(4196), - [anon_sym_COLON_QMARK] = ACTIONS(4196), - [anon_sym_COLON_DASH] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1358] = { - [sym_concatenation] = STATE(1821), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1821), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_EQ] = ACTIONS(4204), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(4204), - [anon_sym_COLON_QMARK] = ACTIONS(4204), - [anon_sym_COLON_DASH] = ACTIONS(4204), - [anon_sym_PERCENT] = ACTIONS(4204), - [anon_sym_DASH] = ACTIONS(4204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1359] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [1360] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(4210), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1361] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(4210), - [sym_comment] = ACTIONS(53), - }, - [1362] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(4210), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1363] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(4212), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [1364] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(4212), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1365] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_COLON] = ACTIONS(1756), - [anon_sym_COLON_QMARK] = ACTIONS(1756), - [anon_sym_COLON_DASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - }, - [1366] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_COLON] = ACTIONS(1756), - [anon_sym_COLON_QMARK] = ACTIONS(1756), - [anon_sym_COLON_DASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - }, - [1367] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_EQ] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(1761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), - [anon_sym_COLON] = ACTIONS(1763), - [anon_sym_COLON_QMARK] = ACTIONS(1763), - [anon_sym_COLON_DASH] = ACTIONS(1763), - [anon_sym_PERCENT] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), - [anon_sym_BQUOTE] = ACTIONS(1761), - [anon_sym_LT_LPAREN] = ACTIONS(1761), - [anon_sym_GT_LPAREN] = ACTIONS(1761), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1763), - }, - [1368] = { - [anon_sym_DQUOTE] = ACTIONS(4217), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1369] = { - [sym_concatenation] = STATE(1828), - [sym_string] = STATE(1827), - [sym_simple_expansion] = STATE(1827), - [sym_string_expansion] = STATE(1827), - [sym_expansion] = STATE(1827), - [sym_command_substitution] = STATE(1827), - [sym_process_substitution] = STATE(1827), - [anon_sym_RBRACE] = ACTIONS(4219), - [sym__special_characters] = ACTIONS(4221), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4223), - }, - [1370] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1848), - [sym__special_characters] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_COLON_QMARK] = ACTIONS(1848), - [anon_sym_COLON_DASH] = ACTIONS(1848), - [anon_sym_PERCENT] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_LT_LPAREN] = ACTIONS(1846), - [anon_sym_GT_LPAREN] = ACTIONS(1846), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1848), - }, - [1371] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4225), - }, - [1372] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1373] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(4229), - [sym_comment] = ACTIONS(53), - }, - [1374] = { - [sym_concatenation] = STATE(1834), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1834), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_EQ] = ACTIONS(4233), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4237), - [anon_sym_COLON] = ACTIONS(4233), - [anon_sym_COLON_QMARK] = ACTIONS(4233), - [anon_sym_COLON_DASH] = ACTIONS(4233), - [anon_sym_PERCENT] = ACTIONS(4233), - [anon_sym_DASH] = ACTIONS(4233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1375] = { - [sym_concatenation] = STATE(1837), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1837), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_EQ] = ACTIONS(4241), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4243), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4245), - [anon_sym_COLON] = ACTIONS(4241), - [anon_sym_COLON_QMARK] = ACTIONS(4241), - [anon_sym_COLON_DASH] = ACTIONS(4241), - [anon_sym_PERCENT] = ACTIONS(4241), - [anon_sym_DASH] = ACTIONS(4241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1376] = { - [sym_concatenation] = STATE(1839), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1839), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(4247), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4251), - [anon_sym_COLON] = ACTIONS(4247), - [anon_sym_COLON_QMARK] = ACTIONS(4247), - [anon_sym_COLON_DASH] = ACTIONS(4247), - [anon_sym_PERCENT] = ACTIONS(4247), - [anon_sym_DASH] = ACTIONS(4247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1377] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), - [anon_sym_COLON] = ACTIONS(1916), - [anon_sym_COLON_QMARK] = ACTIONS(1916), - [anon_sym_COLON_DASH] = ACTIONS(1916), - [anon_sym_PERCENT] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), - [anon_sym_BQUOTE] = ACTIONS(1914), - [anon_sym_LT_LPAREN] = ACTIONS(1914), - [anon_sym_GT_LPAREN] = ACTIONS(1914), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1916), - }, - [1378] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4253), - }, - [1379] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4255), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1380] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_EQ] = ACTIONS(1924), - [sym__special_characters] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1924), - [anon_sym_COLON_QMARK] = ACTIONS(1924), - [anon_sym_COLON_DASH] = ACTIONS(1924), - [anon_sym_PERCENT] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), - [anon_sym_BQUOTE] = ACTIONS(1922), - [anon_sym_LT_LPAREN] = ACTIONS(1922), - [anon_sym_GT_LPAREN] = ACTIONS(1922), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1924), - }, - [1381] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4257), - }, - [1382] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1383] = { - [sym__simple_heredoc_body] = ACTIONS(4259), - [sym__heredoc_body_beginning] = ACTIONS(4259), - [sym_file_descriptor] = ACTIONS(4259), - [sym__concat] = ACTIONS(4259), - [anon_sym_esac] = ACTIONS(4261), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4261), - [anon_sym_SEMI_SEMI] = ACTIONS(4261), - [anon_sym_PIPE_AMP] = ACTIONS(4261), - [anon_sym_AMP_AMP] = ACTIONS(4261), - [anon_sym_PIPE_PIPE] = ACTIONS(4261), - [anon_sym_EQ_TILDE] = ACTIONS(4261), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_LT] = ACTIONS(4261), - [anon_sym_GT] = ACTIONS(4261), - [anon_sym_GT_GT] = ACTIONS(4261), - [anon_sym_AMP_GT] = ACTIONS(4261), - [anon_sym_AMP_GT_GT] = ACTIONS(4261), - [anon_sym_LT_AMP] = ACTIONS(4261), - [anon_sym_GT_AMP] = ACTIONS(4261), - [anon_sym_LT_LT] = ACTIONS(4261), - [anon_sym_LT_LT_DASH] = ACTIONS(4261), - [anon_sym_LT_LT_LT] = ACTIONS(4261), - [sym__special_characters] = ACTIONS(4261), - [anon_sym_DQUOTE] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), - [anon_sym_BQUOTE] = ACTIONS(4261), - [anon_sym_LT_LPAREN] = ACTIONS(4261), - [anon_sym_GT_LPAREN] = ACTIONS(4261), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4261), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), - }, - [1384] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1385] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_EQ] = ACTIONS(2068), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), - [anon_sym_COLON] = ACTIONS(2068), - [anon_sym_COLON_QMARK] = ACTIONS(2068), - [anon_sym_COLON_DASH] = ACTIONS(2068), - [anon_sym_PERCENT] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [anon_sym_LT_LPAREN] = ACTIONS(2066), - [anon_sym_GT_LPAREN] = ACTIONS(2066), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2068), - }, - [1386] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_EQ] = ACTIONS(2134), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(2132), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_COLON_QMARK] = ACTIONS(2134), - [anon_sym_COLON_DASH] = ACTIONS(2134), - [anon_sym_PERCENT] = ACTIONS(2134), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_LT_LPAREN] = ACTIONS(2132), - [anon_sym_GT_LPAREN] = ACTIONS(2132), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2134), - }, - [1387] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4265), - [sym_comment] = ACTIONS(53), - }, - [1388] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4267), - [sym_comment] = ACTIONS(53), - }, - [1389] = { - [anon_sym_RBRACE] = ACTIONS(4267), - [sym_comment] = ACTIONS(53), - }, - [1390] = { - [sym_concatenation] = STATE(1847), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1847), - [anon_sym_RBRACE] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_COLON_QMARK] = ACTIONS(4271), - [anon_sym_COLON_DASH] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1391] = { - [sym__simple_heredoc_body] = ACTIONS(4275), - [sym__heredoc_body_beginning] = ACTIONS(4275), - [sym_file_descriptor] = ACTIONS(4275), - [sym__concat] = ACTIONS(4275), - [anon_sym_esac] = ACTIONS(4277), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_SEMI_SEMI] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_EQ_TILDE] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_GT] = ACTIONS(4277), - [anon_sym_AMP_GT] = ACTIONS(4277), - [anon_sym_AMP_GT_GT] = ACTIONS(4277), - [anon_sym_LT_AMP] = ACTIONS(4277), - [anon_sym_GT_AMP] = ACTIONS(4277), - [anon_sym_LT_LT] = ACTIONS(4277), - [anon_sym_LT_LT_DASH] = ACTIONS(4277), - [anon_sym_LT_LT_LT] = ACTIONS(4277), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4277), - [anon_sym_GT_LPAREN] = ACTIONS(4277), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - }, - [1392] = { - [sym_concatenation] = STATE(1849), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1849), - [anon_sym_RBRACE] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4281), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4281), - [anon_sym_COLON_QMARK] = ACTIONS(4281), - [anon_sym_COLON_DASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1393] = { - [sym__simple_heredoc_body] = ACTIONS(4285), - [sym__heredoc_body_beginning] = ACTIONS(4285), - [sym_file_descriptor] = ACTIONS(4285), - [sym__concat] = ACTIONS(4285), - [anon_sym_esac] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4287), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [anon_sym_PIPE_AMP] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [anon_sym_EQ_TILDE] = ACTIONS(4287), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4287), - [anon_sym_AMP_GT] = ACTIONS(4287), - [anon_sym_AMP_GT_GT] = ACTIONS(4287), - [anon_sym_LT_AMP] = ACTIONS(4287), - [anon_sym_GT_AMP] = ACTIONS(4287), - [anon_sym_LT_LT] = ACTIONS(4287), - [anon_sym_LT_LT_DASH] = ACTIONS(4287), - [anon_sym_LT_LT_LT] = ACTIONS(4287), - [sym__special_characters] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(4287), - [anon_sym_LT_LPAREN] = ACTIONS(4287), - [anon_sym_GT_LPAREN] = ACTIONS(4287), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(4287), - }, - [1394] = { - [sym_concatenation] = STATE(1851), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1851), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(4291), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_COLON_QMARK] = ACTIONS(4291), - [anon_sym_COLON_DASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1395] = { - [sym__simple_heredoc_body] = ACTIONS(4295), - [sym__heredoc_body_beginning] = ACTIONS(4295), - [sym_file_descriptor] = ACTIONS(4295), - [sym__concat] = ACTIONS(4295), - [anon_sym_esac] = ACTIONS(4297), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [anon_sym_EQ_TILDE] = ACTIONS(4297), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_GT_GT] = ACTIONS(4297), - [anon_sym_AMP_GT] = ACTIONS(4297), - [anon_sym_AMP_GT_GT] = ACTIONS(4297), - [anon_sym_LT_AMP] = ACTIONS(4297), - [anon_sym_GT_AMP] = ACTIONS(4297), - [anon_sym_LT_LT] = ACTIONS(4297), - [anon_sym_LT_LT_DASH] = ACTIONS(4297), - [anon_sym_LT_LT_LT] = ACTIONS(4297), - [sym__special_characters] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), - [anon_sym_BQUOTE] = ACTIONS(4297), - [anon_sym_LT_LPAREN] = ACTIONS(4297), - [anon_sym_GT_LPAREN] = ACTIONS(4297), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4297), - }, - [1396] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1397] = { - [sym__simple_heredoc_body] = ACTIONS(4301), - [sym__heredoc_body_beginning] = ACTIONS(4301), - [sym_file_descriptor] = ACTIONS(4301), - [sym__concat] = ACTIONS(4301), - [anon_sym_esac] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4303), - [anon_sym_GT] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_AMP_GT] = ACTIONS(4303), - [anon_sym_AMP_GT_GT] = ACTIONS(4303), - [anon_sym_LT_AMP] = ACTIONS(4303), - [anon_sym_GT_AMP] = ACTIONS(4303), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_LT_LT_DASH] = ACTIONS(4303), - [anon_sym_LT_LT_LT] = ACTIONS(4303), - [sym__special_characters] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LT_LPAREN] = ACTIONS(4303), - [anon_sym_GT_LPAREN] = ACTIONS(4303), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4303), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4303), - }, - [1398] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4305), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1399] = { - [aux_sym_concatenation_repeat1] = STATE(1854), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(731), - }, - [1400] = { - [sym__expression] = STATE(1856), - [sym_binary_expression] = STATE(1856), - [sym_unary_expression] = STATE(1856), - [sym_parenthesized_expression] = STATE(1856), - [sym_concatenation] = STATE(1856), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_string_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [sym__special_characters] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(2347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2355), - [anon_sym_GT_LPAREN] = ACTIONS(2355), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2357), - [sym_test_operator] = ACTIONS(2359), - }, - [1401] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4309), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(4309), - [anon_sym_LF] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(4309), - }, - [1402] = { - [sym__expression] = STATE(1858), - [sym_binary_expression] = STATE(1858), - [sym_unary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1858), - [sym_concatenation] = STATE(1858), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [anon_sym_SEMI_SEMI] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [sym__special_characters] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_LT_LPAREN] = ACTIONS(427), - [anon_sym_GT_LPAREN] = ACTIONS(427), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(419), - [sym_test_operator] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(4309), - [anon_sym_LF] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(4309), - }, - [1403] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(640), - [sym_simple_expansion] = STATE(640), - [sym_string_expansion] = STATE(640), - [sym_expansion] = STATE(640), - [sym_command_substitution] = STATE(640), - [sym_process_substitution] = STATE(640), - [aux_sym_for_statement_repeat1] = STATE(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(4313), - [sym__special_characters] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(73), - [sym_raw_string] = ACTIONS(2421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2423), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2425), - [anon_sym_BQUOTE] = ACTIONS(2427), - [anon_sym_LT_LPAREN] = ACTIONS(2429), - [anon_sym_GT_LPAREN] = ACTIONS(2429), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2421), - [anon_sym_SEMI] = ACTIONS(4313), - [anon_sym_LF] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(4313), - }, - [1404] = { - [sym__terminated_statement] = STATE(1861), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1861), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(4317), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [1405] = { - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_PIPE_AMP] = ACTIONS(2437), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_PIPE_PIPE] = ACTIONS(2437), - [anon_sym_BQUOTE] = ACTIONS(2437), - [sym_comment] = ACTIONS(53), - }, - [1406] = { - [sym__simple_heredoc_body] = ACTIONS(2439), - [sym__heredoc_body_beginning] = ACTIONS(2439), - [sym_file_descriptor] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2441), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_PIPE_AMP] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_GT] = ACTIONS(2441), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_GT] = ACTIONS(2441), - [anon_sym_AMP_GT_GT] = ACTIONS(2439), - [anon_sym_LT_AMP] = ACTIONS(2439), - [anon_sym_GT_AMP] = ACTIONS(2439), - [anon_sym_LT_LT] = ACTIONS(2441), - [anon_sym_LT_LT_DASH] = ACTIONS(2439), - [anon_sym_LT_LT_LT] = ACTIONS(2439), - [anon_sym_BQUOTE] = ACTIONS(2439), - [sym_comment] = ACTIONS(53), - }, - [1407] = { - [sym__terminated_statement] = STATE(1139), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1139), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(4319), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [1408] = { - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_PIPE_AMP] = ACTIONS(2447), - [anon_sym_AMP_AMP] = ACTIONS(2447), - [anon_sym_PIPE_PIPE] = ACTIONS(2447), - [anon_sym_BQUOTE] = ACTIONS(2447), - [sym_comment] = ACTIONS(53), - }, - [1409] = { - [sym_file_redirect] = STATE(1003), - [sym_heredoc_redirect] = STATE(1003), - [sym_heredoc_body] = STATE(1863), - [sym_herestring_redirect] = STATE(1003), - [aux_sym_while_statement_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_PIPE_AMP] = ACTIONS(2447), - [anon_sym_AMP_AMP] = ACTIONS(2447), - [anon_sym_PIPE_PIPE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(937), - [sym_comment] = ACTIONS(53), - }, - [1410] = { - [anon_sym_PIPE] = ACTIONS(2449), - [anon_sym_RPAREN] = ACTIONS(2451), - [anon_sym_PIPE_AMP] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(2451), - [anon_sym_PIPE_PIPE] = ACTIONS(2451), - [anon_sym_BQUOTE] = ACTIONS(2451), - [sym_comment] = ACTIONS(53), - }, - [1411] = { - [anon_sym_fi] = ACTIONS(4321), - [sym_comment] = ACTIONS(53), - }, - [1412] = { - [sym__terminated_statement] = STATE(1145), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_elif_clause] = STATE(1866), - [sym_else_clause] = STATE(1865), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1145), - [aux_sym_if_statement_repeat1] = STATE(1866), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(4323), - [anon_sym_elif] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [1413] = { - [sym_elif_clause] = STATE(1147), - [sym_else_clause] = STATE(1865), - [aux_sym_if_statement_repeat1] = STATE(1147), - [anon_sym_fi] = ACTIONS(4321), - [anon_sym_elif] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2461), - [sym_comment] = ACTIONS(53), - }, - [1414] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(1868), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1869), - [anon_sym_esac] = ACTIONS(4325), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2469), - }, - [1415] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4327), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4327), - [anon_sym_LF] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4327), - }, - [1416] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(1872), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1873), - [anon_sym_esac] = ACTIONS(4331), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2469), - }, - [1417] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4333), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4333), - [anon_sym_LF] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4333), - }, - [1418] = { - [sym_compound_statement] = STATE(1875), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(53), - }, - [1419] = { - [sym_file_descriptor] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2526), - [anon_sym_PIPE_AMP] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_PIPE_PIPE] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2526), - [anon_sym_AMP_GT] = ACTIONS(2528), - [anon_sym_AMP_GT_GT] = ACTIONS(2526), - [anon_sym_LT_AMP] = ACTIONS(2526), - [anon_sym_GT_AMP] = ACTIONS(2526), - [anon_sym_BQUOTE] = ACTIONS(2526), - [sym_comment] = ACTIONS(53), - }, - [1420] = { - [sym__terminated_statement] = STATE(1182), - [sym_for_statement] = STATE(680), - [sym_c_style_for_statement] = STATE(680), - [sym_while_statement] = STATE(680), - [sym_if_statement] = STATE(680), - [sym_case_statement] = STATE(680), - [sym_function_definition] = STATE(680), - [sym_subshell] = STATE(680), - [sym_pipeline] = STATE(680), - [sym_list] = STATE(680), - [sym_negated_command] = STATE(680), - [sym_test_command] = STATE(680), - [sym_declaration_command] = STATE(680), - [sym_unset_command] = STATE(680), - [sym_command] = STATE(680), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(681), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1182), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(4337), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [1421] = { - [anon_sym_LT] = ACTIONS(4339), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_GT_GT] = ACTIONS(4341), - [anon_sym_AMP_GT] = ACTIONS(4339), - [anon_sym_AMP_GT_GT] = ACTIONS(4341), - [anon_sym_LT_AMP] = ACTIONS(4341), - [anon_sym_GT_AMP] = ACTIONS(4341), - [sym_comment] = ACTIONS(53), - }, - [1422] = { - [sym_concatenation] = STATE(1880), - [sym_string] = STATE(1879), - [sym_simple_expansion] = STATE(1879), - [sym_string_expansion] = STATE(1879), - [sym_expansion] = STATE(1879), - [sym_command_substitution] = STATE(1879), - [sym_process_substitution] = STATE(1879), - [sym__special_characters] = ACTIONS(4343), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(871), - [sym_raw_string] = ACTIONS(4345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LT_LPAREN] = ACTIONS(881), - [anon_sym_GT_LPAREN] = ACTIONS(881), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4345), - }, - [1423] = { - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_RPAREN] = ACTIONS(2546), - [anon_sym_PIPE_AMP] = ACTIONS(2546), - [anon_sym_AMP_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2546), - [anon_sym_BQUOTE] = ACTIONS(2546), - [sym_comment] = ACTIONS(53), - }, - [1424] = { - [anon_sym_PIPE] = ACTIONS(2579), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_PIPE_AMP] = ACTIONS(2581), - [anon_sym_AMP_AMP] = ACTIONS(2581), - [anon_sym_PIPE_PIPE] = ACTIONS(2581), - [anon_sym_BQUOTE] = ACTIONS(2581), - [sym_comment] = ACTIONS(53), - }, - [1425] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(4347), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(997), - [sym_raw_string] = ACTIONS(995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), - [anon_sym_BQUOTE] = ACTIONS(995), - [anon_sym_LT_LPAREN] = ACTIONS(995), - [anon_sym_GT_LPAREN] = ACTIONS(995), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(997), - }, - [1426] = { - [anon_sym_LT] = ACTIONS(4349), - [anon_sym_GT] = ACTIONS(4349), - [anon_sym_GT_GT] = ACTIONS(4351), - [anon_sym_AMP_GT] = ACTIONS(4349), - [anon_sym_AMP_GT_GT] = ACTIONS(4351), - [anon_sym_LT_AMP] = ACTIONS(4351), - [anon_sym_GT_AMP] = ACTIONS(4351), - [sym_comment] = ACTIONS(53), - }, - [1427] = { - [sym_concatenation] = STATE(1891), - [sym_string] = STATE(1886), - [sym_simple_expansion] = STATE(1886), - [sym_string_expansion] = STATE(1886), - [sym_expansion] = STATE(1886), - [sym_command_substitution] = STATE(1886), - [sym_process_substitution] = STATE(1886), - [sym__special_characters] = ACTIONS(4353), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_DOLLAR] = ACTIONS(4357), - [sym_raw_string] = ACTIONS(4359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), - [anon_sym_BQUOTE] = ACTIONS(4365), - [anon_sym_LT_LPAREN] = ACTIONS(4367), - [anon_sym_GT_LPAREN] = ACTIONS(4367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4359), - }, - [1428] = { - [sym_heredoc_start] = ACTIONS(4369), - [sym_comment] = ACTIONS(53), - }, - [1429] = { - [sym_concatenation] = STATE(1895), - [sym_string] = STATE(1894), - [sym_simple_expansion] = STATE(1894), - [sym_string_expansion] = STATE(1894), - [sym_expansion] = STATE(1894), - [sym_command_substitution] = STATE(1894), - [sym_process_substitution] = STATE(1894), - [sym__special_characters] = ACTIONS(4371), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_DOLLAR] = ACTIONS(4357), - [sym_raw_string] = ACTIONS(4373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), - [anon_sym_BQUOTE] = ACTIONS(4365), - [anon_sym_LT_LPAREN] = ACTIONS(4367), - [anon_sym_GT_LPAREN] = ACTIONS(4367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4373), - }, - [1430] = { - [sym_file_redirect] = STATE(1896), - [sym_heredoc_redirect] = STATE(1896), - [sym_herestring_redirect] = STATE(1896), - [aux_sym_while_statement_repeat1] = STATE(1896), - [sym_file_descriptor] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_PIPE_AMP] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(3139), - [anon_sym_GT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_GT] = ACTIONS(3139), - [anon_sym_AMP_GT_GT] = ACTIONS(3141), - [anon_sym_LT_AMP] = ACTIONS(3141), - [anon_sym_GT_AMP] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_LT_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT_LT] = ACTIONS(3147), - [sym_comment] = ACTIONS(53), - }, - [1431] = { - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_PIPE_AMP] = ACTIONS(1151), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), - [anon_sym_BQUOTE] = ACTIONS(1151), - [anon_sym_LT_LPAREN] = ACTIONS(1151), - [anon_sym_GT_LPAREN] = ACTIONS(1151), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), - [sym_word] = ACTIONS(1153), - }, - [1432] = { - [sym_concatenation] = STATE(1898), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(1898), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), - }, - [1433] = { - [aux_sym_concatenation_repeat1] = STATE(925), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_PIPE_AMP] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1173), - [anon_sym_PIPE_PIPE] = ACTIONS(1173), - [sym__special_characters] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), - [anon_sym_BQUOTE] = ACTIONS(1173), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), - [sym_word] = ACTIONS(1177), - }, - [1434] = { - [aux_sym_concatenation_repeat1] = STATE(925), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_PIPE_AMP] = ACTIONS(1151), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), - [anon_sym_BQUOTE] = ACTIONS(1151), - [anon_sym_LT_LPAREN] = ACTIONS(1151), - [anon_sym_GT_LPAREN] = ACTIONS(1151), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), - [sym_word] = ACTIONS(1153), - }, - [1435] = { - [sym__concat] = ACTIONS(1754), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - }, - [1436] = { - [aux_sym_concatenation_repeat1] = STATE(1436), - [sym__concat] = ACTIONS(4377), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - }, - [1437] = { - [sym__concat] = ACTIONS(1761), - [sym_variable_name] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_PIPE_AMP] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [sym__special_characters] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), - [anon_sym_BQUOTE] = ACTIONS(1761), - [anon_sym_LT_LPAREN] = ACTIONS(1761), - [anon_sym_GT_LPAREN] = ACTIONS(1761), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), - [sym_word] = ACTIONS(1763), - }, - [1438] = { - [anon_sym_DQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1439] = { - [sym_concatenation] = STATE(1903), - [sym_string] = STATE(1902), - [sym_simple_expansion] = STATE(1902), - [sym_string_expansion] = STATE(1902), - [sym_expansion] = STATE(1902), - [sym_command_substitution] = STATE(1902), - [sym_process_substitution] = STATE(1902), - [anon_sym_RBRACE] = ACTIONS(4382), - [sym__special_characters] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4386), - }, - [1440] = { - [sym__concat] = ACTIONS(1846), - [sym_variable_name] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [sym__special_characters] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_LT_LPAREN] = ACTIONS(1846), - [anon_sym_GT_LPAREN] = ACTIONS(1846), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), - [sym_word] = ACTIONS(1848), - }, - [1441] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4388), - }, - [1442] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1443] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(4392), - [sym_comment] = ACTIONS(53), - }, - [1444] = { - [sym_concatenation] = STATE(1909), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1909), - [anon_sym_RBRACE] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(4396), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4400), - [anon_sym_COLON] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4396), - [anon_sym_COLON_DASH] = ACTIONS(4396), - [anon_sym_PERCENT] = ACTIONS(4396), - [anon_sym_DASH] = ACTIONS(4396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1445] = { - [sym_concatenation] = STATE(1912), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1912), - [anon_sym_RBRACE] = ACTIONS(4402), - [anon_sym_EQ] = ACTIONS(4404), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4408), - [anon_sym_COLON] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4404), - [anon_sym_COLON_DASH] = ACTIONS(4404), - [anon_sym_PERCENT] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1446] = { - [sym_concatenation] = STATE(1914), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1914), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(4410), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_COLON] = ACTIONS(4410), - [anon_sym_COLON_QMARK] = ACTIONS(4410), - [anon_sym_COLON_DASH] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1447] = { - [sym__concat] = ACTIONS(1914), - [sym_variable_name] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_PIPE_AMP] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [sym__special_characters] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), - [anon_sym_BQUOTE] = ACTIONS(1914), - [anon_sym_LT_LPAREN] = ACTIONS(1914), - [anon_sym_GT_LPAREN] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), - [sym_word] = ACTIONS(1916), - }, - [1448] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4416), - }, - [1449] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4418), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1450] = { - [sym__concat] = ACTIONS(1922), - [sym_variable_name] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1922), - [anon_sym_PIPE_AMP] = ACTIONS(1922), - [anon_sym_AMP_AMP] = ACTIONS(1922), - [anon_sym_PIPE_PIPE] = ACTIONS(1922), - [sym__special_characters] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), - [anon_sym_BQUOTE] = ACTIONS(1922), - [anon_sym_LT_LPAREN] = ACTIONS(1922), - [anon_sym_GT_LPAREN] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), - [sym_word] = ACTIONS(1924), - }, - [1451] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4420), - }, - [1452] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1453] = { - [sym__concat] = ACTIONS(2066), - [sym_variable_name] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [sym__special_characters] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2066), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [anon_sym_LT_LPAREN] = ACTIONS(2066), - [anon_sym_GT_LPAREN] = ACTIONS(2066), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), - [sym_word] = ACTIONS(2068), - }, - [1454] = { - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_PIPE_AMP] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [sym__special_characters] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2132), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_LT_LPAREN] = ACTIONS(2132), - [anon_sym_GT_LPAREN] = ACTIONS(2132), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), - [sym_word] = ACTIONS(2134), - }, - [1455] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - }, - [1456] = { - [aux_sym_concatenation_repeat1] = STATE(1456), - [sym__concat] = ACTIONS(4422), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - }, - [1457] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_PIPE_AMP] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [sym__special_characters] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), - [anon_sym_BQUOTE] = ACTIONS(1761), - [anon_sym_LT_LPAREN] = ACTIONS(1761), - [anon_sym_GT_LPAREN] = ACTIONS(1761), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), - [sym_word] = ACTIONS(1763), - }, - [1458] = { - [anon_sym_DQUOTE] = ACTIONS(4425), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1459] = { - [sym_concatenation] = STATE(1922), - [sym_string] = STATE(1921), - [sym_simple_expansion] = STATE(1921), - [sym_string_expansion] = STATE(1921), - [sym_expansion] = STATE(1921), - [sym_command_substitution] = STATE(1921), - [sym_process_substitution] = STATE(1921), - [anon_sym_RBRACE] = ACTIONS(4427), - [sym__special_characters] = ACTIONS(4429), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4431), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4431), - }, - [1460] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [sym__special_characters] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_LT_LPAREN] = ACTIONS(1846), - [anon_sym_GT_LPAREN] = ACTIONS(1846), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), - [sym_word] = ACTIONS(1848), - }, - [1461] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4433), - }, - [1462] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1463] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(4437), - [sym_comment] = ACTIONS(53), - }, - [1464] = { - [sym_concatenation] = STATE(1928), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1928), - [anon_sym_RBRACE] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4441), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4443), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_COLON_QMARK] = ACTIONS(4441), - [anon_sym_COLON_DASH] = ACTIONS(4441), - [anon_sym_PERCENT] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1465] = { - [sym_concatenation] = STATE(1931), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1931), - [anon_sym_RBRACE] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(4449), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4451), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4453), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4449), - [anon_sym_COLON_DASH] = ACTIONS(4449), - [anon_sym_PERCENT] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1466] = { - [sym_concatenation] = STATE(1933), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1933), - [anon_sym_RBRACE] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4455), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4457), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4459), - [anon_sym_COLON] = ACTIONS(4455), - [anon_sym_COLON_QMARK] = ACTIONS(4455), - [anon_sym_COLON_DASH] = ACTIONS(4455), - [anon_sym_PERCENT] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1467] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_PIPE_AMP] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [sym__special_characters] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), - [anon_sym_BQUOTE] = ACTIONS(1914), - [anon_sym_LT_LPAREN] = ACTIONS(1914), - [anon_sym_GT_LPAREN] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), - [sym_word] = ACTIONS(1916), - }, - [1468] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4461), - }, - [1469] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4463), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1470] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1922), - [anon_sym_PIPE_AMP] = ACTIONS(1922), - [anon_sym_AMP_AMP] = ACTIONS(1922), - [anon_sym_PIPE_PIPE] = ACTIONS(1922), - [sym__special_characters] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), - [anon_sym_BQUOTE] = ACTIONS(1922), - [anon_sym_LT_LPAREN] = ACTIONS(1922), - [anon_sym_GT_LPAREN] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), - [sym_word] = ACTIONS(1924), - }, - [1471] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4465), - }, - [1472] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1473] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [sym__special_characters] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2066), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [anon_sym_LT_LPAREN] = ACTIONS(2066), - [anon_sym_GT_LPAREN] = ACTIONS(2066), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), - [sym_word] = ACTIONS(2068), - }, - [1474] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_PIPE_AMP] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [sym__special_characters] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2132), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_LT_LPAREN] = ACTIONS(2132), - [anon_sym_GT_LPAREN] = ACTIONS(2132), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), - [sym_word] = ACTIONS(2134), - }, - [1475] = { - [sym__simple_heredoc_body] = ACTIONS(2920), - [sym__heredoc_body_beginning] = ACTIONS(2920), - [sym_file_descriptor] = ACTIONS(2920), - [sym__concat] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2920), - [anon_sym_PIPE_AMP] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_EQ_TILDE] = ACTIONS(2922), - [anon_sym_EQ_EQ] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2920), - [anon_sym_AMP_GT] = ACTIONS(2922), - [anon_sym_AMP_GT_GT] = ACTIONS(2920), - [anon_sym_LT_AMP] = ACTIONS(2920), - [anon_sym_GT_AMP] = ACTIONS(2920), - [anon_sym_LT_LT] = ACTIONS(2922), - [anon_sym_LT_LT_DASH] = ACTIONS(2920), - [anon_sym_LT_LT_LT] = ACTIONS(2920), - [sym__special_characters] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), - [anon_sym_BQUOTE] = ACTIONS(2920), - [anon_sym_LT_LPAREN] = ACTIONS(2920), - [anon_sym_GT_LPAREN] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2922), - }, - [1476] = { - [sym__simple_heredoc_body] = ACTIONS(2934), - [sym__heredoc_body_beginning] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2936), - [anon_sym_EQ_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2936), - }, - [1477] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4467), - [sym_comment] = ACTIONS(53), - }, - [1478] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4469), - [sym_comment] = ACTIONS(53), - }, - [1479] = { - [anon_sym_RBRACE] = ACTIONS(4469), - [sym_comment] = ACTIONS(53), - }, - [1480] = { - [sym_concatenation] = STATE(1940), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1940), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_EQ] = ACTIONS(4473), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4473), - [anon_sym_COLON_QMARK] = ACTIONS(4473), - [anon_sym_COLON_DASH] = ACTIONS(4473), - [anon_sym_PERCENT] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1481] = { - [sym__simple_heredoc_body] = ACTIONS(3016), - [sym__heredoc_body_beginning] = ACTIONS(3016), - [sym_file_descriptor] = ACTIONS(3016), - [sym__concat] = ACTIONS(3016), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_PIPE_AMP] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [anon_sym_EQ_TILDE] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_GT_GT] = ACTIONS(3016), - [anon_sym_AMP_GT] = ACTIONS(3018), - [anon_sym_AMP_GT_GT] = ACTIONS(3016), - [anon_sym_LT_AMP] = ACTIONS(3016), - [anon_sym_GT_AMP] = ACTIONS(3016), - [anon_sym_LT_LT] = ACTIONS(3018), - [anon_sym_LT_LT_DASH] = ACTIONS(3016), - [anon_sym_LT_LT_LT] = ACTIONS(3016), - [sym__special_characters] = ACTIONS(3016), - [anon_sym_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), - [anon_sym_BQUOTE] = ACTIONS(3016), - [anon_sym_LT_LPAREN] = ACTIONS(3016), - [anon_sym_GT_LPAREN] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3018), - }, - [1482] = { - [sym_concatenation] = STATE(1943), - [sym_string] = STATE(1942), - [sym_simple_expansion] = STATE(1942), - [sym_string_expansion] = STATE(1942), - [sym_expansion] = STATE(1942), - [sym_command_substitution] = STATE(1942), - [sym_process_substitution] = STATE(1942), - [anon_sym_RBRACE] = ACTIONS(4469), - [sym__special_characters] = ACTIONS(4477), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4479), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4479), - }, - [1483] = { - [sym__simple_heredoc_body] = ACTIONS(3059), - [sym__heredoc_body_beginning] = ACTIONS(3059), - [sym_file_descriptor] = ACTIONS(3059), - [sym__concat] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3059), - [anon_sym_PIPE_AMP] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_EQ_TILDE] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(3059), - [anon_sym_LT_AMP] = ACTIONS(3059), - [anon_sym_GT_AMP] = ACTIONS(3059), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_LT_LT_DASH] = ACTIONS(3059), - [anon_sym_LT_LT_LT] = ACTIONS(3059), - [sym__special_characters] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), - [anon_sym_BQUOTE] = ACTIONS(3059), - [anon_sym_LT_LPAREN] = ACTIONS(3059), - [anon_sym_GT_LPAREN] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3061), - }, - [1484] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4481), - }, - [1485] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4483), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1486] = { - [sym__simple_heredoc_body] = ACTIONS(3067), - [sym__heredoc_body_beginning] = ACTIONS(3067), - [sym_file_descriptor] = ACTIONS(3067), - [sym__concat] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_PIPE_AMP] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_AMP_GT] = ACTIONS(3069), - [anon_sym_AMP_GT_GT] = ACTIONS(3067), - [anon_sym_LT_AMP] = ACTIONS(3067), - [anon_sym_GT_AMP] = ACTIONS(3067), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_LT_LT_DASH] = ACTIONS(3067), - [anon_sym_LT_LT_LT] = ACTIONS(3067), - [sym__special_characters] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), - [anon_sym_BQUOTE] = ACTIONS(3067), - [anon_sym_LT_LPAREN] = ACTIONS(3067), - [anon_sym_GT_LPAREN] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3069), - }, - [1487] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4485), - }, - [1488] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1489] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4489), - }, - [1490] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1491] = { - [sym_concatenation] = STATE(1950), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1950), - [anon_sym_RBRACE] = ACTIONS(4491), - [anon_sym_EQ] = ACTIONS(4493), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_COLON_QMARK] = ACTIONS(4493), - [anon_sym_COLON_DASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1492] = { - [sym__simple_heredoc_body] = ACTIONS(3083), - [sym__heredoc_body_beginning] = ACTIONS(3083), - [sym_file_descriptor] = ACTIONS(3083), - [sym__concat] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_PIPE_AMP] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_EQ_TILDE] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3083), - [anon_sym_AMP_GT] = ACTIONS(3085), - [anon_sym_AMP_GT_GT] = ACTIONS(3083), - [anon_sym_LT_AMP] = ACTIONS(3083), - [anon_sym_GT_AMP] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_LT_LT_DASH] = ACTIONS(3083), - [anon_sym_LT_LT_LT] = ACTIONS(3083), - [sym__special_characters] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), - [anon_sym_BQUOTE] = ACTIONS(3083), - [anon_sym_LT_LPAREN] = ACTIONS(3083), - [anon_sym_GT_LPAREN] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3085), - }, - [1493] = { - [sym_concatenation] = STATE(1952), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1952), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_EQ] = ACTIONS(4499), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4499), - [anon_sym_COLON_QMARK] = ACTIONS(4499), - [anon_sym_COLON_DASH] = ACTIONS(4499), - [anon_sym_PERCENT] = ACTIONS(4499), - [anon_sym_DASH] = ACTIONS(4499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1494] = { - [sym_file_redirect] = STATE(1953), - [sym_file_descriptor] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_RPAREN] = ACTIONS(2546), - [anon_sym_PIPE_AMP] = ACTIONS(2546), - [anon_sym_AMP_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_AMP_GT] = ACTIONS(3125), - [anon_sym_AMP_GT_GT] = ACTIONS(3127), - [anon_sym_LT_AMP] = ACTIONS(3127), - [anon_sym_GT_AMP] = ACTIONS(3127), - [sym_comment] = ACTIONS(53), - }, - [1495] = { - [anon_sym_PIPE] = ACTIONS(3510), - [anon_sym_RPAREN] = ACTIONS(3512), - [anon_sym_PIPE_AMP] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BQUOTE] = ACTIONS(3512), - [sym_comment] = ACTIONS(53), - }, - [1496] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__simple_heredoc_body] = ACTIONS(1133), - [sym__heredoc_body_beginning] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1133), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [sym_comment] = ACTIONS(53), - }, - [1497] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym__simple_heredoc_body] = ACTIONS(1137), - [sym__heredoc_body_beginning] = ACTIONS(1137), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_PIPE_AMP] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1137), - [anon_sym_PIPE_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1137), - [anon_sym_LT_AMP] = ACTIONS(1137), - [anon_sym_GT_AMP] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1137), - [anon_sym_LT_LT_LT] = ACTIONS(1137), - [sym_comment] = ACTIONS(53), - }, - [1498] = { - [sym__simple_heredoc_body] = ACTIONS(1137), - [sym__heredoc_body_beginning] = ACTIONS(1137), - [sym_file_descriptor] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_PIPE_AMP] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1137), - [anon_sym_PIPE_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1137), - [anon_sym_LT_AMP] = ACTIONS(1137), - [anon_sym_GT_AMP] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1137), - [anon_sym_LT_LT_LT] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), - [sym_comment] = ACTIONS(53), - }, - [1499] = { - [aux_sym_concatenation_repeat1] = STATE(1954), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - }, - [1500] = { - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_RPAREN] = ACTIONS(3527), - [anon_sym_PIPE_AMP] = ACTIONS(3527), - [anon_sym_AMP_AMP] = ACTIONS(3527), - [anon_sym_PIPE_PIPE] = ACTIONS(3527), - [anon_sym_BQUOTE] = ACTIONS(3527), - [sym_comment] = ACTIONS(53), - }, - [1501] = { - [sym_file_redirect] = STATE(1003), - [sym_heredoc_redirect] = STATE(1003), - [sym_heredoc_body] = STATE(1955), - [sym_herestring_redirect] = STATE(1003), - [aux_sym_while_statement_repeat1] = STATE(1003), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_RPAREN] = ACTIONS(3527), - [anon_sym_PIPE_AMP] = ACTIONS(3527), - [anon_sym_AMP_AMP] = ACTIONS(3527), - [anon_sym_PIPE_PIPE] = ACTIONS(3527), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(937), - [sym_comment] = ACTIONS(53), - }, - [1502] = { - [aux_sym_concatenation_repeat1] = STATE(1956), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(699), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(731), - }, - [1503] = { - [sym_file_redirect] = STATE(1030), - [sym_heredoc_redirect] = STATE(1030), - [sym_heredoc_body] = STATE(1863), - [sym_herestring_redirect] = STATE(1030), - [aux_sym_while_statement_repeat1] = STATE(1030), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_PIPE_AMP] = ACTIONS(2447), - [anon_sym_AMP_AMP] = ACTIONS(2447), - [anon_sym_PIPE_PIPE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(977), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [anon_sym_BQUOTE] = ACTIONS(2447), - [sym_comment] = ACTIONS(53), - }, - [1504] = { - [sym_compound_statement] = STATE(1957), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(53), - }, - [1505] = { - [anon_sym_LT] = ACTIONS(4503), - [anon_sym_GT] = ACTIONS(4503), - [anon_sym_GT_GT] = ACTIONS(4505), - [anon_sym_AMP_GT] = ACTIONS(4503), - [anon_sym_AMP_GT_GT] = ACTIONS(4505), - [anon_sym_LT_AMP] = ACTIONS(4505), - [anon_sym_GT_AMP] = ACTIONS(4505), - [sym_comment] = ACTIONS(53), - }, - [1506] = { - [sym_concatenation] = STATE(1880), - [sym_string] = STATE(1960), - [sym_simple_expansion] = STATE(1960), - [sym_string_expansion] = STATE(1960), - [sym_expansion] = STATE(1960), - [sym_command_substitution] = STATE(1960), - [sym_process_substitution] = STATE(1960), - [sym__special_characters] = ACTIONS(4507), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(871), - [sym_raw_string] = ACTIONS(4509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LT_LPAREN] = ACTIONS(881), - [anon_sym_GT_LPAREN] = ACTIONS(881), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4509), - }, - [1507] = { - [anon_sym_LT] = ACTIONS(4511), - [anon_sym_GT] = ACTIONS(4511), - [anon_sym_GT_GT] = ACTIONS(4513), - [anon_sym_AMP_GT] = ACTIONS(4511), - [anon_sym_AMP_GT_GT] = ACTIONS(4513), - [anon_sym_LT_AMP] = ACTIONS(4513), - [anon_sym_GT_AMP] = ACTIONS(4513), - [sym_comment] = ACTIONS(53), - }, - [1508] = { - [sym_concatenation] = STATE(1891), - [sym_string] = STATE(1963), - [sym_simple_expansion] = STATE(1963), - [sym_string_expansion] = STATE(1963), - [sym_expansion] = STATE(1963), - [sym_command_substitution] = STATE(1963), - [sym_process_substitution] = STATE(1963), - [sym__special_characters] = ACTIONS(4515), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_DOLLAR] = ACTIONS(4357), - [sym_raw_string] = ACTIONS(4517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), - [anon_sym_BQUOTE] = ACTIONS(4365), - [anon_sym_LT_LPAREN] = ACTIONS(4367), - [anon_sym_GT_LPAREN] = ACTIONS(4367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4517), - }, - [1509] = { - [sym_concatenation] = STATE(1895), - [sym_string] = STATE(1965), - [sym_simple_expansion] = STATE(1965), - [sym_string_expansion] = STATE(1965), - [sym_expansion] = STATE(1965), - [sym_command_substitution] = STATE(1965), - [sym_process_substitution] = STATE(1965), - [sym__special_characters] = ACTIONS(4519), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_DOLLAR] = ACTIONS(4357), - [sym_raw_string] = ACTIONS(4521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), - [anon_sym_BQUOTE] = ACTIONS(4365), - [anon_sym_LT_LPAREN] = ACTIONS(4367), - [anon_sym_GT_LPAREN] = ACTIONS(4367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4521), - }, - [1510] = { - [sym_file_redirect] = STATE(1966), - [sym_heredoc_redirect] = STATE(1966), - [sym_herestring_redirect] = STATE(1966), - [aux_sym_while_statement_repeat1] = STATE(1966), - [sym_file_descriptor] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_PIPE_AMP] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_GT_GT] = ACTIONS(3419), - [anon_sym_AMP_GT] = ACTIONS(3417), - [anon_sym_AMP_GT_GT] = ACTIONS(3419), - [anon_sym_LT_AMP] = ACTIONS(3419), - [anon_sym_GT_AMP] = ACTIONS(3419), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_LT_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT_LT] = ACTIONS(3421), - [anon_sym_BQUOTE] = ACTIONS(2692), - [sym_comment] = ACTIONS(53), - }, - [1511] = { - [aux_sym_concatenation_repeat1] = STATE(1014), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_PIPE_AMP] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1173), - [anon_sym_PIPE_PIPE] = ACTIONS(1173), - [sym__special_characters] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1173), - [anon_sym_BQUOTE] = ACTIONS(1173), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), - [sym_word] = ACTIONS(1177), - }, - [1512] = { - [aux_sym_concatenation_repeat1] = STATE(1014), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1151), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1151), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), - [anon_sym_BQUOTE] = ACTIONS(1151), - [anon_sym_LT_LPAREN] = ACTIONS(1151), - [anon_sym_GT_LPAREN] = ACTIONS(1151), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), - [sym_word] = ACTIONS(1153), - }, - [1513] = { - [aux_sym_concatenation_repeat1] = STATE(1513), - [sym__concat] = ACTIONS(4377), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - }, - [1514] = { - [aux_sym_concatenation_repeat1] = STATE(1514), - [sym__concat] = ACTIONS(4422), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - }, - [1515] = { - [sym_file_redirect] = STATE(1953), - [sym_file_descriptor] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_PIPE_AMP] = ACTIONS(2546), - [anon_sym_AMP_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_AMP_GT] = ACTIONS(3411), - [anon_sym_AMP_GT_GT] = ACTIONS(3413), - [anon_sym_LT_AMP] = ACTIONS(3413), - [anon_sym_GT_AMP] = ACTIONS(3413), - [anon_sym_BQUOTE] = ACTIONS(2546), - [sym_comment] = ACTIONS(53), - }, - [1516] = { - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__simple_heredoc_body] = ACTIONS(1133), - [sym__heredoc_body_beginning] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1133), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [sym_comment] = ACTIONS(53), - }, - [1517] = { - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__simple_heredoc_body] = ACTIONS(1137), - [sym__heredoc_body_beginning] = ACTIONS(1137), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1137), - [anon_sym_PIPE_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1137), - [anon_sym_LT_AMP] = ACTIONS(1137), - [anon_sym_GT_AMP] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1137), - [anon_sym_LT_LT_LT] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), - [sym_comment] = ACTIONS(53), - }, - [1518] = { - [aux_sym_concatenation_repeat1] = STATE(1967), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - }, - [1519] = { - [sym_file_redirect] = STATE(1030), - [sym_heredoc_redirect] = STATE(1030), - [sym_heredoc_body] = STATE(1955), - [sym_herestring_redirect] = STATE(1030), - [aux_sym_while_statement_repeat1] = STATE(1030), - [sym__simple_heredoc_body] = ACTIONS(921), - [sym__heredoc_body_beginning] = ACTIONS(923), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_PIPE_AMP] = ACTIONS(3527), - [anon_sym_AMP_AMP] = ACTIONS(3527), - [anon_sym_PIPE_PIPE] = ACTIONS(3527), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(977), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [anon_sym_BQUOTE] = ACTIONS(3527), - [sym_comment] = ACTIONS(53), - }, - [1520] = { - [anon_sym_esac] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3854), - [anon_sym_PIPE_AMP] = ACTIONS(3854), - [anon_sym_AMP_AMP] = ACTIONS(3854), - [anon_sym_PIPE_PIPE] = ACTIONS(3854), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3856), - [anon_sym_AMP] = ACTIONS(3854), - }, - [1521] = { - [sym_concatenation] = STATE(1971), - [sym_string] = STATE(1970), - [sym_simple_expansion] = STATE(1970), - [sym_string_expansion] = STATE(1970), - [sym_expansion] = STATE(1970), - [sym_command_substitution] = STATE(1970), - [sym_process_substitution] = STATE(1970), - [anon_sym_RBRACE] = ACTIONS(4523), - [sym__special_characters] = ACTIONS(4525), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4527), - }, - [1522] = { - [sym__heredoc_body_middle] = ACTIONS(1846), - [sym__heredoc_body_end] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), - [sym_comment] = ACTIONS(53), - }, - [1523] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4529), - }, - [1524] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1525] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(4533), - [sym_comment] = ACTIONS(53), - }, - [1526] = { - [sym_concatenation] = STATE(1977), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1977), - [anon_sym_RBRACE] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(4537), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4539), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4541), - [anon_sym_COLON] = ACTIONS(4537), - [anon_sym_COLON_QMARK] = ACTIONS(4537), - [anon_sym_COLON_DASH] = ACTIONS(4537), - [anon_sym_PERCENT] = ACTIONS(4537), - [anon_sym_DASH] = ACTIONS(4537), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1527] = { - [sym_concatenation] = STATE(1980), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1980), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(4545), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4547), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4549), - [anon_sym_COLON] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4545), - [anon_sym_COLON_DASH] = ACTIONS(4545), - [anon_sym_PERCENT] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1528] = { - [sym_concatenation] = STATE(1982), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1982), - [anon_sym_RBRACE] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(4551), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4553), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4555), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_COLON_QMARK] = ACTIONS(4551), - [anon_sym_COLON_DASH] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4551), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1529] = { - [sym__heredoc_body_middle] = ACTIONS(1914), - [sym__heredoc_body_end] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - }, - [1530] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4557), - }, - [1531] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4559), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1532] = { - [sym__heredoc_body_middle] = ACTIONS(1922), - [sym__heredoc_body_end] = ACTIONS(1922), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - }, - [1533] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4561), - }, - [1534] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1535] = { - [aux_sym_concatenation_repeat1] = STATE(1535), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [1536] = { - [anon_sym_esac] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(4563), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_SEMI_SEMI] = ACTIONS(4563), - [anon_sym_PIPE_AMP] = ACTIONS(4563), - [anon_sym_AMP_AMP] = ACTIONS(4563), - [anon_sym_PIPE_PIPE] = ACTIONS(4563), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4563), - [anon_sym_LF] = ACTIONS(4565), - [anon_sym_AMP] = ACTIONS(4563), - }, - [1537] = { - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_PLUS_EQ] = ACTIONS(4567), - [sym_comment] = ACTIONS(53), - }, - [1538] = { - [anon_sym_EQ] = ACTIONS(4569), - [anon_sym_PLUS_EQ] = ACTIONS(4569), - [sym_comment] = ACTIONS(53), - }, - [1539] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1754), - }, - [1540] = { - [aux_sym_concatenation_repeat1] = STATE(1540), - [sym__concat] = ACTIONS(4571), - [anon_sym_RPAREN] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1754), - }, - [1541] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_RPAREN] = ACTIONS(1761), - [sym__special_characters] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), - [anon_sym_BQUOTE] = ACTIONS(1761), - [anon_sym_LT_LPAREN] = ACTIONS(1761), - [anon_sym_GT_LPAREN] = ACTIONS(1761), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1761), - }, - [1542] = { - [anon_sym_DQUOTE] = ACTIONS(4574), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1543] = { - [sym_concatenation] = STATE(1990), - [sym_string] = STATE(1989), - [sym_simple_expansion] = STATE(1989), - [sym_string_expansion] = STATE(1989), - [sym_expansion] = STATE(1989), - [sym_command_substitution] = STATE(1989), - [sym_process_substitution] = STATE(1989), - [anon_sym_RBRACE] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4578), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4580), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4580), - }, - [1544] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [sym__special_characters] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_LT_LPAREN] = ACTIONS(1846), - [anon_sym_GT_LPAREN] = ACTIONS(1846), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1846), - }, - [1545] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4582), - }, - [1546] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4584), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1547] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(4586), - [sym_comment] = ACTIONS(53), - }, - [1548] = { - [sym_concatenation] = STATE(1996), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1996), - [anon_sym_RBRACE] = ACTIONS(4588), - [anon_sym_EQ] = ACTIONS(4590), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4592), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4594), - [anon_sym_COLON] = ACTIONS(4590), - [anon_sym_COLON_QMARK] = ACTIONS(4590), - [anon_sym_COLON_DASH] = ACTIONS(4590), - [anon_sym_PERCENT] = ACTIONS(4590), - [anon_sym_DASH] = ACTIONS(4590), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1549] = { - [sym_concatenation] = STATE(1999), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(1999), - [anon_sym_RBRACE] = ACTIONS(4596), - [anon_sym_EQ] = ACTIONS(4598), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4600), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4602), - [anon_sym_COLON] = ACTIONS(4598), - [anon_sym_COLON_QMARK] = ACTIONS(4598), - [anon_sym_COLON_DASH] = ACTIONS(4598), - [anon_sym_PERCENT] = ACTIONS(4598), - [anon_sym_DASH] = ACTIONS(4598), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1550] = { - [sym_concatenation] = STATE(2001), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2001), - [anon_sym_RBRACE] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4604), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4608), - [anon_sym_COLON] = ACTIONS(4604), - [anon_sym_COLON_QMARK] = ACTIONS(4604), - [anon_sym_COLON_DASH] = ACTIONS(4604), - [anon_sym_PERCENT] = ACTIONS(4604), - [anon_sym_DASH] = ACTIONS(4604), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1551] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1914), - [sym__special_characters] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), - [anon_sym_BQUOTE] = ACTIONS(1914), - [anon_sym_LT_LPAREN] = ACTIONS(1914), - [anon_sym_GT_LPAREN] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1914), - }, - [1552] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4610), - }, - [1553] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4612), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1554] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_RPAREN] = ACTIONS(1922), - [sym__special_characters] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1922), - [anon_sym_BQUOTE] = ACTIONS(1922), - [anon_sym_LT_LPAREN] = ACTIONS(1922), - [anon_sym_GT_LPAREN] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1922), - }, - [1555] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4614), - }, - [1556] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1557] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [sym__special_characters] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2066), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [anon_sym_LT_LPAREN] = ACTIONS(2066), - [anon_sym_GT_LPAREN] = ACTIONS(2066), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2066), - }, - [1558] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_RPAREN] = ACTIONS(2132), - [sym__special_characters] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2132), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_LT_LPAREN] = ACTIONS(2132), - [anon_sym_GT_LPAREN] = ACTIONS(2132), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2132), - }, - [1559] = { - [sym_file_descriptor] = ACTIONS(2920), - [sym__concat] = ACTIONS(2920), - [sym_variable_name] = ACTIONS(2920), - [anon_sym_esac] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2922), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), - [anon_sym_PIPE_AMP] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_AMP_GT] = ACTIONS(2922), - [anon_sym_AMP_GT_GT] = ACTIONS(2922), - [anon_sym_LT_AMP] = ACTIONS(2922), - [anon_sym_GT_AMP] = ACTIONS(2922), - [sym__special_characters] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), - [anon_sym_BQUOTE] = ACTIONS(2922), - [anon_sym_LT_LPAREN] = ACTIONS(2922), - [anon_sym_GT_LPAREN] = ACTIONS(2922), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), - }, - [1560] = { - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2936), - [anon_sym_PIPE_AMP] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2936), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2936), - [anon_sym_LT_AMP] = ACTIONS(2936), - [anon_sym_GT_AMP] = ACTIONS(2936), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), - [anon_sym_BQUOTE] = ACTIONS(2936), - [anon_sym_LT_LPAREN] = ACTIONS(2936), - [anon_sym_GT_LPAREN] = ACTIONS(2936), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [1561] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4616), - [sym_comment] = ACTIONS(53), - }, - [1562] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4618), - [sym_comment] = ACTIONS(53), - }, - [1563] = { - [anon_sym_RBRACE] = ACTIONS(4618), - [sym_comment] = ACTIONS(53), - }, - [1564] = { - [sym_concatenation] = STATE(2008), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2008), - [anon_sym_RBRACE] = ACTIONS(4620), - [anon_sym_EQ] = ACTIONS(4622), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4622), - [anon_sym_COLON_QMARK] = ACTIONS(4622), - [anon_sym_COLON_DASH] = ACTIONS(4622), - [anon_sym_PERCENT] = ACTIONS(4622), - [anon_sym_DASH] = ACTIONS(4622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1565] = { - [sym_file_descriptor] = ACTIONS(3016), - [sym__concat] = ACTIONS(3016), - [sym_variable_name] = ACTIONS(3016), - [anon_sym_esac] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [anon_sym_PIPE_AMP] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_AMP_GT] = ACTIONS(3018), - [anon_sym_AMP_GT_GT] = ACTIONS(3018), - [anon_sym_LT_AMP] = ACTIONS(3018), - [anon_sym_GT_AMP] = ACTIONS(3018), - [sym__special_characters] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [anon_sym_LT_LPAREN] = ACTIONS(3018), - [anon_sym_GT_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), - }, - [1566] = { + [1639] = { + [sym_file_descriptor] = ACTIONS(3810), + [sym__concat] = ACTIONS(3810), + [sym_variable_name] = ACTIONS(3810), + [anon_sym_LT] = ACTIONS(3812), + [anon_sym_GT] = ACTIONS(3812), + [anon_sym_GT_GT] = ACTIONS(3810), + [anon_sym_AMP_GT] = ACTIONS(3812), + [anon_sym_AMP_GT_GT] = ACTIONS(3810), + [anon_sym_LT_AMP] = ACTIONS(3810), + [anon_sym_GT_AMP] = ACTIONS(3810), + [sym__special_characters] = ACTIONS(3810), + [anon_sym_DQUOTE] = ACTIONS(3810), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3810), + [anon_sym_BQUOTE] = ACTIONS(3810), + [anon_sym_LT_LPAREN] = ACTIONS(3810), + [anon_sym_GT_LPAREN] = ACTIONS(3810), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3810), + }, + [1640] = { + [sym_file_descriptor] = ACTIONS(3909), + [sym__concat] = ACTIONS(3909), + [sym_variable_name] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_AMP_GT] = ACTIONS(3911), + [anon_sym_AMP_GT_GT] = ACTIONS(3909), + [anon_sym_LT_AMP] = ACTIONS(3909), + [anon_sym_GT_AMP] = ACTIONS(3909), + [sym__special_characters] = ACTIONS(3909), + [anon_sym_DQUOTE] = ACTIONS(3909), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3909), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3909), + [anon_sym_BQUOTE] = ACTIONS(3909), + [anon_sym_LT_LPAREN] = ACTIONS(3909), + [anon_sym_GT_LPAREN] = ACTIONS(3909), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3909), + }, + [1641] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1642] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4593), + [sym_comment] = ACTIONS(53), + }, + [1643] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4595), + [sym_comment] = ACTIONS(53), + }, + [1644] = { + [anon_sym_RBRACE] = ACTIONS(4595), + [sym_comment] = ACTIONS(53), + }, + [1645] = { + [sym_concatenation] = STATE(2000), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2000), + [anon_sym_RBRACE] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4599), + [anon_sym_COLON_QMARK] = ACTIONS(4599), + [anon_sym_COLON_DASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1646] = { + [sym_file_descriptor] = ACTIONS(3945), + [sym__concat] = ACTIONS(3945), + [sym_variable_name] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3945), + [anon_sym_AMP_GT] = ACTIONS(3947), + [anon_sym_AMP_GT_GT] = ACTIONS(3945), + [anon_sym_LT_AMP] = ACTIONS(3945), + [anon_sym_GT_AMP] = ACTIONS(3945), + [sym__special_characters] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3945), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3945), + [anon_sym_BQUOTE] = ACTIONS(3945), + [anon_sym_LT_LPAREN] = ACTIONS(3945), + [anon_sym_GT_LPAREN] = ACTIONS(3945), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3945), + }, + [1647] = { + [sym_concatenation] = STATE(2002), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2002), + [anon_sym_RBRACE] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4605), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4605), + [anon_sym_COLON_QMARK] = ACTIONS(4605), + [anon_sym_COLON_DASH] = ACTIONS(4605), + [anon_sym_PERCENT] = ACTIONS(4605), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1648] = { + [sym_file_descriptor] = ACTIONS(3955), + [sym__concat] = ACTIONS(3955), + [sym_variable_name] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3957), + [anon_sym_GT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_AMP_GT] = ACTIONS(3957), + [anon_sym_AMP_GT_GT] = ACTIONS(3955), + [anon_sym_LT_AMP] = ACTIONS(3955), + [anon_sym_GT_AMP] = ACTIONS(3955), + [sym__special_characters] = ACTIONS(3955), + [anon_sym_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3955), + [anon_sym_BQUOTE] = ACTIONS(3955), + [anon_sym_LT_LPAREN] = ACTIONS(3955), + [anon_sym_GT_LPAREN] = ACTIONS(3955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3955), + }, + [1649] = { + [sym_concatenation] = STATE(2004), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2004), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4611), + [anon_sym_COLON_QMARK] = ACTIONS(4611), + [anon_sym_COLON_DASH] = ACTIONS(4611), + [anon_sym_PERCENT] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1650] = { + [sym_file_descriptor] = ACTIONS(3965), + [sym__concat] = ACTIONS(3965), + [sym_variable_name] = ACTIONS(3965), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_GT] = ACTIONS(3967), + [anon_sym_GT_GT] = ACTIONS(3965), + [anon_sym_AMP_GT] = ACTIONS(3967), + [anon_sym_AMP_GT_GT] = ACTIONS(3965), + [anon_sym_LT_AMP] = ACTIONS(3965), + [anon_sym_GT_AMP] = ACTIONS(3965), + [sym__special_characters] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3965), + [anon_sym_BQUOTE] = ACTIONS(3965), + [anon_sym_LT_LPAREN] = ACTIONS(3965), + [anon_sym_GT_LPAREN] = ACTIONS(3965), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3965), + }, + [1651] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1652] = { + [sym_file_descriptor] = ACTIONS(3971), + [sym__concat] = ACTIONS(3971), + [sym_variable_name] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3973), + [anon_sym_GT] = ACTIONS(3973), + [anon_sym_GT_GT] = ACTIONS(3971), + [anon_sym_AMP_GT] = ACTIONS(3973), + [anon_sym_AMP_GT_GT] = ACTIONS(3971), + [anon_sym_LT_AMP] = ACTIONS(3971), + [anon_sym_GT_AMP] = ACTIONS(3971), + [sym__special_characters] = ACTIONS(3971), + [anon_sym_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3971), + [anon_sym_BQUOTE] = ACTIONS(3971), + [anon_sym_LT_LPAREN] = ACTIONS(3971), + [anon_sym_GT_LPAREN] = ACTIONS(3971), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3971), + }, + [1653] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1654] = { + [sym_file_descriptor] = ACTIONS(3977), + [sym__concat] = ACTIONS(3977), + [sym_variable_name] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_GT_GT] = ACTIONS(3977), + [anon_sym_AMP_GT] = ACTIONS(3979), + [anon_sym_AMP_GT_GT] = ACTIONS(3977), + [anon_sym_LT_AMP] = ACTIONS(3977), + [anon_sym_GT_AMP] = ACTIONS(3977), + [sym__special_characters] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3977), + [anon_sym_BQUOTE] = ACTIONS(3977), + [anon_sym_LT_LPAREN] = ACTIONS(3977), + [anon_sym_GT_LPAREN] = ACTIONS(3977), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3977), + }, + [1655] = { + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4001), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4001), + [anon_sym_LT_AMP] = ACTIONS(4001), + [anon_sym_GT_AMP] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4001), + }, + [1656] = { + [sym__concat] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym__string_content] = ACTIONS(3802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3804), + [anon_sym_BQUOTE] = ACTIONS(3804), + [sym_comment] = ACTIONS(179), + }, + [1657] = { + [sym__concat] = ACTIONS(3810), + [anon_sym_DQUOTE] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym__string_content] = ACTIONS(3810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3812), + [anon_sym_BQUOTE] = ACTIONS(3812), + [sym_comment] = ACTIONS(179), + }, + [1658] = { + [sym__concat] = ACTIONS(3909), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym__string_content] = ACTIONS(3909), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), + [sym_comment] = ACTIONS(179), + }, + [1659] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1660] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4621), + [sym_comment] = ACTIONS(53), + }, + [1661] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4623), + [sym_comment] = ACTIONS(53), + }, + [1662] = { + [anon_sym_RBRACE] = ACTIONS(4623), + [sym_comment] = ACTIONS(53), + }, + [1663] = { [sym_concatenation] = STATE(2011), - [sym_string] = STATE(2010), - [sym_simple_expansion] = STATE(2010), - [sym_string_expansion] = STATE(2010), - [sym_expansion] = STATE(2010), - [sym_command_substitution] = STATE(2010), - [sym_process_substitution] = STATE(2010), - [anon_sym_RBRACE] = ACTIONS(4618), - [sym__special_characters] = ACTIONS(4626), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4628), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4628), - }, - [1567] = { - [sym_file_descriptor] = ACTIONS(3059), - [sym__concat] = ACTIONS(3059), - [sym_variable_name] = ACTIONS(3059), - [anon_sym_esac] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_SEMI_SEMI] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(3061), - [anon_sym_LT_AMP] = ACTIONS(3061), - [anon_sym_GT_AMP] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), - [anon_sym_BQUOTE] = ACTIONS(3061), - [anon_sym_LT_LPAREN] = ACTIONS(3061), - [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2011), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_COLON_QMARK] = ACTIONS(4627), + [anon_sym_COLON_DASH] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), + [sym_word] = ACTIONS(759), }, - [1568] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4630), - }, - [1569] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4632), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1570] = { - [sym_file_descriptor] = ACTIONS(3067), - [sym__concat] = ACTIONS(3067), - [sym_variable_name] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3069), - [anon_sym_PIPE_AMP] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_AMP_GT] = ACTIONS(3069), - [anon_sym_AMP_GT_GT] = ACTIONS(3069), - [anon_sym_LT_AMP] = ACTIONS(3069), - [anon_sym_GT_AMP] = ACTIONS(3069), - [sym__special_characters] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3069), - [anon_sym_LT_LPAREN] = ACTIONS(3069), - [anon_sym_GT_LPAREN] = ACTIONS(3069), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), - }, - [1571] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4634), - }, - [1572] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1573] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4638), - }, - [1574] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4618), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1575] = { - [sym_concatenation] = STATE(2018), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2018), - [anon_sym_RBRACE] = ACTIONS(4640), - [anon_sym_EQ] = ACTIONS(4642), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4644), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4642), - [anon_sym_COLON_QMARK] = ACTIONS(4642), - [anon_sym_COLON_DASH] = ACTIONS(4642), - [anon_sym_PERCENT] = ACTIONS(4642), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1576] = { - [sym_file_descriptor] = ACTIONS(3083), - [sym__concat] = ACTIONS(3083), - [sym_variable_name] = ACTIONS(3083), - [anon_sym_esac] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3085), - [anon_sym_PIPE_AMP] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_GT] = ACTIONS(3085), - [anon_sym_AMP_GT_GT] = ACTIONS(3085), - [anon_sym_LT_AMP] = ACTIONS(3085), - [anon_sym_GT_AMP] = ACTIONS(3085), - [sym__special_characters] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), - [anon_sym_BQUOTE] = ACTIONS(3085), - [anon_sym_LT_LPAREN] = ACTIONS(3085), - [anon_sym_GT_LPAREN] = ACTIONS(3085), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - }, - [1577] = { - [sym_concatenation] = STATE(2020), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2020), - [anon_sym_RBRACE] = ACTIONS(4646), - [anon_sym_EQ] = ACTIONS(4648), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4650), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4648), - [anon_sym_COLON_QMARK] = ACTIONS(4648), - [anon_sym_COLON_DASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_DASH] = ACTIONS(4648), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1578] = { - [sym__terminated_statement] = STATE(2022), - [sym_for_statement] = STATE(680), - [sym_c_style_for_statement] = STATE(680), - [sym_while_statement] = STATE(680), - [sym_if_statement] = STATE(680), - [sym_case_statement] = STATE(680), - [sym_function_definition] = STATE(680), - [sym_subshell] = STATE(680), - [sym_pipeline] = STATE(680), - [sym_list] = STATE(680), - [sym_negated_command] = STATE(680), - [sym_test_command] = STATE(680), - [sym_declaration_command] = STATE(680), - [sym_unset_command] = STATE(680), - [sym_command] = STATE(680), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(681), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2022), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(4652), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [1579] = { - [anon_sym_esac] = ACTIONS(4654), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_RPAREN] = ACTIONS(4654), - [anon_sym_SEMI_SEMI] = ACTIONS(4654), - [anon_sym_PIPE_AMP] = ACTIONS(4654), - [anon_sym_AMP_AMP] = ACTIONS(4654), - [anon_sym_PIPE_PIPE] = ACTIONS(4654), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4654), - [anon_sym_LF] = ACTIONS(4656), - [anon_sym_AMP] = ACTIONS(4654), - }, - [1580] = { - [anon_sym_RPAREN] = ACTIONS(4658), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1391), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1391), - }, - [1581] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_EQ_TILDE] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_BANG_EQ] = ACTIONS(3684), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3684), - }, - [1582] = { - [sym_string] = STATE(2024), - [sym_simple_expansion] = STATE(2024), - [sym_string_expansion] = STATE(2024), - [sym_expansion] = STATE(2024), - [sym_command_substitution] = STATE(2024), - [sym_process_substitution] = STATE(2024), - [sym__special_characters] = ACTIONS(4660), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(4660), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2355), - [anon_sym_GT_LPAREN] = ACTIONS(2355), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4660), - }, - [1583] = { - [aux_sym_concatenation_repeat1] = STATE(2025), - [sym__concat] = ACTIONS(3658), - [anon_sym_RPAREN_RPAREN] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_EQ_TILDE] = ACTIONS(731), - [anon_sym_EQ_EQ] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG_EQ] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(731), - }, - [1584] = { - [sym__concat] = ACTIONS(735), - [anon_sym_RPAREN_RPAREN] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_EQ_TILDE] = ACTIONS(735), - [anon_sym_EQ_EQ] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(735), - }, - [1585] = { - [anon_sym_DQUOTE] = ACTIONS(4662), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1586] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(4662), - [anon_sym_DOLLAR] = ACTIONS(4664), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), + [1664] = { + [sym__concat] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym__string_content] = ACTIONS(3945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), + [anon_sym_BQUOTE] = ACTIONS(3947), [sym_comment] = ACTIONS(179), }, - [1587] = { - [sym__concat] = ACTIONS(767), - [anon_sym_RPAREN_RPAREN] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_EQ_TILDE] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_BANG_EQ] = ACTIONS(767), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(767), + [1665] = { + [sym_concatenation] = STATE(2013), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2013), + [anon_sym_RBRACE] = ACTIONS(4631), + [anon_sym_EQ] = ACTIONS(4633), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4633), + [anon_sym_COLON_QMARK] = ACTIONS(4633), + [anon_sym_COLON_DASH] = ACTIONS(4633), + [anon_sym_PERCENT] = ACTIONS(4633), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, - [1588] = { - [sym__concat] = ACTIONS(771), - [anon_sym_RPAREN_RPAREN] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(771), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_BANG_EQ] = ACTIONS(771), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(771), + [1666] = { + [sym__concat] = ACTIONS(3955), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym__string_content] = ACTIONS(3955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), + [anon_sym_BQUOTE] = ACTIONS(3957), + [sym_comment] = ACTIONS(179), }, - [1589] = { - [sym__concat] = ACTIONS(775), - [anon_sym_RPAREN_RPAREN] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_EQ_TILDE] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(775), + [1667] = { + [sym_concatenation] = STATE(2015), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2015), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_EQ] = ACTIONS(4639), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4639), + [anon_sym_COLON_QMARK] = ACTIONS(4639), + [anon_sym_COLON_DASH] = ACTIONS(4639), + [anon_sym_PERCENT] = ACTIONS(4639), + [anon_sym_DASH] = ACTIONS(4639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, - [1590] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(4666), + [1668] = { + [sym__concat] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym__string_content] = ACTIONS(3965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3967), + [anon_sym_BQUOTE] = ACTIONS(3967), + [sym_comment] = ACTIONS(179), + }, + [1669] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1670] = { + [sym__concat] = ACTIONS(3971), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym__string_content] = ACTIONS(3971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3973), + [anon_sym_BQUOTE] = ACTIONS(3973), + [sym_comment] = ACTIONS(179), + }, + [1671] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4645), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1672] = { + [sym__concat] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym__string_content] = ACTIONS(3977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [sym_comment] = ACTIONS(179), + }, + [1673] = { + [sym__concat] = ACTIONS(4647), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(4649), + [sym__special_characters] = ACTIONS(4649), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(4649), + [sym_raw_string] = ACTIONS(3095), + [anon_sym_POUND] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3095), + [anon_sym_COLON] = ACTIONS(4649), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_DASH] = ACTIONS(4649), + [anon_sym_PERCENT] = ACTIONS(4649), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), + [anon_sym_BQUOTE] = ACTIONS(3095), + [anon_sym_LT_LPAREN] = ACTIONS(3095), + [anon_sym_GT_LPAREN] = ACTIONS(3095), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4649), + }, + [1674] = { + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(4649), + [sym__special_characters] = ACTIONS(4649), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(4649), + [sym_raw_string] = ACTIONS(3095), + [anon_sym_POUND] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3095), + [anon_sym_COLON] = ACTIONS(4649), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_DASH] = ACTIONS(4649), + [anon_sym_PERCENT] = ACTIONS(4649), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), + [anon_sym_BQUOTE] = ACTIONS(3095), + [anon_sym_LT_LPAREN] = ACTIONS(3095), + [anon_sym_GT_LPAREN] = ACTIONS(3095), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4649), + }, + [1675] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(3099), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(3099), + [anon_sym_POUND] = ACTIONS(3099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3099), + [anon_sym_COLON] = ACTIONS(4653), + [anon_sym_COLON_QMARK] = ACTIONS(4653), + [anon_sym_COLON_DASH] = ACTIONS(4653), + [anon_sym_PERCENT] = ACTIONS(4653), + [anon_sym_DASH] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3099), + [anon_sym_BQUOTE] = ACTIONS(3099), + [anon_sym_LT_LPAREN] = ACTIONS(3099), + [anon_sym_GT_LPAREN] = ACTIONS(3099), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4653), + }, + [1676] = { + [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(3099), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(3099), + [anon_sym_POUND] = ACTIONS(3099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3099), + [anon_sym_COLON] = ACTIONS(4653), + [anon_sym_COLON_QMARK] = ACTIONS(4653), + [anon_sym_COLON_DASH] = ACTIONS(4653), + [anon_sym_PERCENT] = ACTIONS(4653), + [anon_sym_DASH] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3099), + [anon_sym_BQUOTE] = ACTIONS(3099), + [anon_sym_LT_LPAREN] = ACTIONS(3099), + [anon_sym_GT_LPAREN] = ACTIONS(3099), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4653), + }, + [1677] = { + [sym__concat] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), [sym_comment] = ACTIONS(53), }, - [1591] = { - [sym_concatenation] = STATE(2031), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2031), + [1678] = { + [aux_sym_concatenation_repeat1] = STATE(1678), + [sym__concat] = ACTIONS(4655), + [anon_sym_RBRACE] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + }, + [1679] = { + [sym__concat] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [sym_comment] = ACTIONS(53), + }, + [1680] = { + [anon_sym_DQUOTE] = ACTIONS(4658), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [1681] = { + [sym_concatenation] = STATE(2024), + [sym_string] = STATE(2023), + [sym_simple_expansion] = STATE(2023), + [sym_string_expansion] = STATE(2023), + [sym_expansion] = STATE(2023), + [sym_command_substitution] = STATE(2023), + [sym_process_substitution] = STATE(2023), + [anon_sym_RBRACE] = ACTIONS(4660), + [sym__special_characters] = ACTIONS(4662), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(4664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4664), + }, + [1682] = { + [sym__concat] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1748), + [sym_comment] = ACTIONS(53), + }, + [1683] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4666), + }, + [1684] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), [anon_sym_RBRACE] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1685] = { + [anon_sym_LBRACK] = ACTIONS(731), [anon_sym_EQ] = ACTIONS(4670), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4674), - [anon_sym_COLON] = ACTIONS(4670), - [anon_sym_COLON_QMARK] = ACTIONS(4670), - [anon_sym_COLON_DASH] = ACTIONS(4670), - [anon_sym_PERCENT] = ACTIONS(4670), - [anon_sym_DASH] = ACTIONS(4670), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1592] = { - [sym_subscript] = STATE(2035), - [sym_variable_name] = ACTIONS(4676), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_DASH] = ACTIONS(4678), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4680), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_AT] = ACTIONS(4678), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_0] = ACTIONS(4682), - [anon_sym__] = ACTIONS(4682), }, - [1593] = { - [sym_concatenation] = STATE(2038), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2038), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_EQ] = ACTIONS(4686), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4690), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COLON_QMARK] = ACTIONS(4686), - [anon_sym_COLON_DASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1686] = { + [sym_concatenation] = STATE(2030), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2030), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4674), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4676), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_COLON] = ACTIONS(4674), + [anon_sym_COLON_QMARK] = ACTIONS(4674), + [anon_sym_COLON_DASH] = ACTIONS(4674), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [1594] = { - [sym_concatenation] = STATE(2041), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2041), - [anon_sym_RBRACE] = ACTIONS(4692), - [anon_sym_EQ] = ACTIONS(4694), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4698), - [anon_sym_COLON] = ACTIONS(4694), - [anon_sym_COLON_QMARK] = ACTIONS(4694), - [anon_sym_COLON_DASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1687] = { + [sym_concatenation] = STATE(2033), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2033), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4682), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4684), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_COLON] = ACTIONS(4682), + [anon_sym_COLON_QMARK] = ACTIONS(4682), + [anon_sym_COLON_DASH] = ACTIONS(4682), + [anon_sym_PERCENT] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [1595] = { - [anon_sym_PIPE] = ACTIONS(913), + [1688] = { + [sym_concatenation] = STATE(2035), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2035), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4688), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_COLON] = ACTIONS(4688), + [anon_sym_COLON_QMARK] = ACTIONS(4688), + [anon_sym_COLON_DASH] = ACTIONS(4688), + [anon_sym_PERCENT] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1689] = { + [sym__concat] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [sym_comment] = ACTIONS(53), + }, + [1690] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4694), + }, + [1691] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1692] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [sym_comment] = ACTIONS(53), + }, + [1693] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4698), + }, + [1694] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1695] = { + [sym__concat] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [sym_comment] = ACTIONS(53), + }, + [1696] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), [anon_sym_RPAREN] = ACTIONS(4700), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, - [1596] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(4700), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1597] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(4700), - [sym_comment] = ACTIONS(53), - }, - [1598] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(4700), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1599] = { - [anon_sym_PIPE] = ACTIONS(913), + [1697] = { + [anon_sym_PIPE] = ACTIONS(453), [anon_sym_RPAREN] = ACTIONS(4702), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI_SEMI] = ACTIONS(4704), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_LF] = ACTIONS(4706), + [anon_sym_AMP] = ACTIONS(4704), }, - [1600] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), + [1698] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), [anon_sym_RPAREN] = ACTIONS(4702), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1601] = { - [sym_do_group] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(3656), - [sym_comment] = ACTIONS(53), - }, - [1602] = { - [sym__expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_unary_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_string_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [sym__special_characters] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(2347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2355), - [anon_sym_GT_LPAREN] = ACTIONS(2355), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2357), - [sym_test_operator] = ACTIONS(2359), - }, - [1603] = { - [sym__expression] = STATE(2045), - [sym_binary_expression] = STATE(2045), - [sym_unary_expression] = STATE(2045), - [sym_parenthesized_expression] = STATE(2045), - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_string_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_LPAREN] = ACTIONS(4704), - [anon_sym_BANG] = ACTIONS(2339), - [sym__special_characters] = ACTIONS(4706), - [anon_sym_DQUOTE] = ACTIONS(4708), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(2357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4712), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4716), - [anon_sym_GT_LPAREN] = ACTIONS(4716), + [anon_sym_SEMI_SEMI] = ACTIONS(4704), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2357), - [sym_test_operator] = ACTIONS(2339), - [sym_regex] = ACTIONS(4718), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_LF] = ACTIONS(4706), + [anon_sym_AMP] = ACTIONS(4704), }, - [1604] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_EQ_TILDE] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_BANG_EQ] = ACTIONS(3684), + [1699] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(4700), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3684), + [sym_word] = ACTIONS(819), }, - [1605] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_esac] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), - [anon_sym_PIPE_AMP] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_EQ_TILDE] = ACTIONS(2922), - [anon_sym_EQ_EQ] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2922), + [1700] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4708), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(4702), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4708), }, - [1606] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2936), - [anon_sym_PIPE_AMP] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [anon_sym_EQ_TILDE] = ACTIONS(2936), - [anon_sym_EQ_EQ] = ACTIONS(2936), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_BANG_EQ] = ACTIONS(2936), + [1701] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4708), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(4702), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4708), }, - [1607] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), + [1702] = { + [sym__concat] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [sym_comment] = ACTIONS(53), + }, + [1703] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4712), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1704] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4714), + [anon_sym_SEMI_SEMI] = ACTIONS(4716), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4716), + }, + [1705] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4714), + [anon_sym_SEMI_SEMI] = ACTIONS(4716), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4716), + }, + [1706] = { + [sym__concat] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2820), + [sym__special_characters] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2818), + [anon_sym_POUND] = ACTIONS(2818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), + [anon_sym_COLON] = ACTIONS(2820), + [anon_sym_COLON_QMARK] = ACTIONS(2820), + [anon_sym_COLON_DASH] = ACTIONS(2820), + [anon_sym_PERCENT] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2818), + [anon_sym_BQUOTE] = ACTIONS(2818), + [anon_sym_LT_LPAREN] = ACTIONS(2818), + [anon_sym_GT_LPAREN] = ACTIONS(2818), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2820), + }, + [1707] = { + [sym__concat] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_EQ] = ACTIONS(2834), + [sym__special_characters] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), + [anon_sym_COLON] = ACTIONS(2834), + [anon_sym_COLON_QMARK] = ACTIONS(2834), + [anon_sym_COLON_DASH] = ACTIONS(2834), + [anon_sym_PERCENT] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), + [anon_sym_BQUOTE] = ACTIONS(2832), + [anon_sym_LT_LPAREN] = ACTIONS(2832), + [anon_sym_GT_LPAREN] = ACTIONS(2832), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2834), + }, + [1708] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4720), + [sym_comment] = ACTIONS(53), + }, + [1709] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4722), [sym_comment] = ACTIONS(53), }, - [1608] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4724), + [1710] = { + [anon_sym_RBRACE] = ACTIONS(4722), [sym_comment] = ACTIONS(53), }, - [1609] = { + [1711] = { + [sym_concatenation] = STATE(2047), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2047), [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4726), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4726), + [anon_sym_COLON_QMARK] = ACTIONS(4726), + [anon_sym_COLON_DASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1712] = { + [sym__concat] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_EQ] = ACTIONS(2928), + [sym__special_characters] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2926), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(2928), + [anon_sym_COLON_QMARK] = ACTIONS(2928), + [anon_sym_COLON_DASH] = ACTIONS(2928), + [anon_sym_PERCENT] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), + [anon_sym_BQUOTE] = ACTIONS(2926), + [anon_sym_LT_LPAREN] = ACTIONS(2926), + [anon_sym_GT_LPAREN] = ACTIONS(2926), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2928), + }, + [1713] = { + [sym_concatenation] = STATE(2050), + [sym_string] = STATE(2049), + [sym_simple_expansion] = STATE(2049), + [sym_string_expansion] = STATE(2049), + [sym_expansion] = STATE(2049), + [sym_command_substitution] = STATE(2049), + [sym_process_substitution] = STATE(2049), + [anon_sym_RBRACE] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(4732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4732), }, - [1610] = { - [sym_concatenation] = STATE(2051), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2051), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_EQ] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4728), - [anon_sym_COLON_QMARK] = ACTIONS(4728), - [anon_sym_COLON_DASH] = ACTIONS(4728), - [anon_sym_PERCENT] = ACTIONS(4728), - [anon_sym_DASH] = ACTIONS(4728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1714] = { + [sym__concat] = ACTIONS(2969), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_EQ] = ACTIONS(2971), + [sym__special_characters] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2969), + [anon_sym_POUND] = ACTIONS(2969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_COLON_QMARK] = ACTIONS(2971), + [anon_sym_COLON_DASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2969), + [anon_sym_LT_LPAREN] = ACTIONS(2969), + [anon_sym_GT_LPAREN] = ACTIONS(2969), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(2971), }, - [1611] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_esac] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [anon_sym_PIPE_AMP] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_EQ_TILDE] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3018), + [1715] = { [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), + [sym_regex_without_right_brace] = ACTIONS(4734), }, - [1612] = { - [sym_concatenation] = STATE(2054), - [sym_string] = STATE(2053), - [sym_simple_expansion] = STATE(2053), - [sym_string_expansion] = STATE(2053), - [sym_expansion] = STATE(2053), - [sym_command_substitution] = STATE(2053), - [sym_process_substitution] = STATE(2053), - [anon_sym_RBRACE] = ACTIONS(4724), - [sym__special_characters] = ACTIONS(4732), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(4734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4734), - }, - [1613] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_esac] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_SEMI_SEMI] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_EQ_TILDE] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_EQ] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), + [1716] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), + [sym_word] = ACTIONS(759), }, - [1614] = { + [1717] = { + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_EQ] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(2977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_COLON_QMARK] = ACTIONS(2979), + [anon_sym_COLON_DASH] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2977), + [anon_sym_BQUOTE] = ACTIONS(2977), + [anon_sym_LT_LPAREN] = ACTIONS(2977), + [anon_sym_GT_LPAREN] = ACTIONS(2977), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4736), + [sym_word] = ACTIONS(2979), }, - [1615] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4738), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1718] = { [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(4738), }, - [1616] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3069), - [anon_sym_PIPE_AMP] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_EQ_TILDE] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3069), + [1719] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), + [sym_word] = ACTIONS(759), }, - [1617] = { + [1720] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4740), + [sym_regex_without_right_brace] = ACTIONS(4742), }, - [1618] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1721] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [1619] = { + [1722] = { + [sym_concatenation] = STATE(2057), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2057), + [anon_sym_RBRACE] = ACTIONS(4744), + [anon_sym_EQ] = ACTIONS(4746), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_COLON_QMARK] = ACTIONS(4746), + [anon_sym_COLON_DASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4744), + [sym_word] = ACTIONS(759), }, - [1620] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1723] = { + [sym__concat] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [sym__special_characters] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2993), + [anon_sym_COLON] = ACTIONS(2995), + [anon_sym_COLON_QMARK] = ACTIONS(2995), + [anon_sym_COLON_DASH] = ACTIONS(2995), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2993), + [anon_sym_BQUOTE] = ACTIONS(2993), + [anon_sym_LT_LPAREN] = ACTIONS(2993), + [anon_sym_GT_LPAREN] = ACTIONS(2993), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(2995), }, - [1621] = { - [sym_concatenation] = STATE(2061), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2061), - [anon_sym_RBRACE] = ACTIONS(4746), - [anon_sym_EQ] = ACTIONS(4748), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4748), - [anon_sym_COLON_QMARK] = ACTIONS(4748), - [anon_sym_COLON_DASH] = ACTIONS(4748), - [anon_sym_PERCENT] = ACTIONS(4748), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1724] = { + [sym_concatenation] = STATE(2059), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2059), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4752), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4752), + [anon_sym_COLON_QMARK] = ACTIONS(4752), + [anon_sym_COLON_DASH] = ACTIONS(4752), + [anon_sym_PERCENT] = ACTIONS(4752), + [anon_sym_DASH] = ACTIONS(4752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [1622] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_esac] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3085), - [anon_sym_PIPE_AMP] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_EQ_TILDE] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - }, - [1623] = { - [sym_concatenation] = STATE(2063), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2063), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_EQ] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4754), - [anon_sym_COLON_QMARK] = ACTIONS(4754), - [anon_sym_COLON_DASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1624] = { - [sym__expression] = STATE(2064), - [sym_binary_expression] = STATE(2064), - [sym_unary_expression] = STATE(2064), - [sym_parenthesized_expression] = STATE(2064), - [sym_concatenation] = STATE(2064), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_string_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [sym__special_characters] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(2347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2355), - [anon_sym_GT_LPAREN] = ACTIONS(2355), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2357), - [sym_test_operator] = ACTIONS(2359), - }, - [1625] = { - [aux_sym_concatenation_repeat1] = STATE(1625), - [sym__concat] = ACTIONS(2475), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [1626] = { + [1725] = { + [sym__simple_heredoc_body] = ACTIONS(4756), + [sym__heredoc_body_beginning] = ACTIONS(4756), + [sym_file_descriptor] = ACTIONS(4756), + [sym__concat] = ACTIONS(4756), [anon_sym_esac] = ACTIONS(4758), [anon_sym_PIPE] = ACTIONS(4758), [anon_sym_RPAREN] = ACTIONS(4758), @@ -45718,8054 +49533,2043 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(4758), [anon_sym_AMP_AMP] = ACTIONS(4758), [anon_sym_PIPE_PIPE] = ACTIONS(4758), + [anon_sym_EQ_TILDE] = ACTIONS(4758), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_GT_GT] = ACTIONS(4758), + [anon_sym_AMP_GT] = ACTIONS(4758), + [anon_sym_AMP_GT_GT] = ACTIONS(4758), + [anon_sym_LT_AMP] = ACTIONS(4758), + [anon_sym_GT_AMP] = ACTIONS(4758), + [anon_sym_LT_LT] = ACTIONS(4758), + [anon_sym_LT_LT_DASH] = ACTIONS(4758), + [anon_sym_LT_LT_LT] = ACTIONS(4758), + [sym__special_characters] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4758), + [anon_sym_LT_LPAREN] = ACTIONS(4758), + [anon_sym_GT_LPAREN] = ACTIONS(4758), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4758), [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4760), + [anon_sym_LF] = ACTIONS(4756), [anon_sym_AMP] = ACTIONS(4758), }, - [1627] = { - [anon_sym_esac] = ACTIONS(3769), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_SEMI_SEMI] = ACTIONS(3769), - [anon_sym_PIPE_AMP] = ACTIONS(3769), - [anon_sym_AMP_AMP] = ACTIONS(3769), - [anon_sym_PIPE_PIPE] = ACTIONS(3769), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_LF] = ACTIONS(3767), - [anon_sym_AMP] = ACTIONS(3769), - }, - [1628] = { - [sym__terminated_statement] = STATE(2065), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2065), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(4762), - [anon_sym_elif] = ACTIONS(4762), - [anon_sym_else] = ACTIONS(4762), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [1629] = { - [sym__terminated_statement] = STATE(1629), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1629), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(1043), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_fi] = ACTIONS(3771), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), - [anon_sym_declare] = ACTIONS(1078), - [anon_sym_typeset] = ACTIONS(1078), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_readonly] = ACTIONS(1078), - [anon_sym_local] = ACTIONS(1078), - [anon_sym_unset] = ACTIONS(1081), - [anon_sym_unsetenv] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1087), - [anon_sym_LT_AMP] = ACTIONS(1087), - [anon_sym_GT_AMP] = ACTIONS(1087), - [sym__special_characters] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1096), - [sym_raw_string] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1108), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1114), - }, - [1630] = { - [anon_sym_esac] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_SEMI_SEMI] = ACTIONS(4764), - [anon_sym_PIPE_AMP] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_LF] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4764), - }, - [1631] = { - [anon_sym_fi] = ACTIONS(4768), - [sym_comment] = ACTIONS(53), - }, - [1632] = { - [sym_concatenation] = STATE(2069), - [sym_string] = STATE(2068), - [sym_simple_expansion] = STATE(2068), - [sym_string_expansion] = STATE(2068), - [sym_expansion] = STATE(2068), - [sym_command_substitution] = STATE(2068), - [sym_process_substitution] = STATE(2068), - [sym__special_characters] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(4772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4772), - }, - [1633] = { - [sym__terminated_statement] = STATE(2086), - [sym_for_statement] = STATE(2082), - [sym_c_style_for_statement] = STATE(2082), - [sym_while_statement] = STATE(2082), - [sym_if_statement] = STATE(2082), - [sym_case_statement] = STATE(2082), - [sym_function_definition] = STATE(2082), - [sym_subshell] = STATE(2082), - [sym_pipeline] = STATE(2082), - [sym_list] = STATE(2082), - [sym_negated_command] = STATE(2082), - [sym_test_command] = STATE(2082), - [sym_declaration_command] = STATE(2082), - [sym_unset_command] = STATE(2082), - [sym_command] = STATE(2082), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2084), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_program_repeat1] = STATE(2086), - [aux_sym_command_repeat1] = STATE(2087), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4778), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [anon_sym_function] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), - }, - [1634] = { - [aux_sym_case_item_repeat1] = STATE(2089), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(4800), - [sym_comment] = ACTIONS(53), - }, - [1635] = { - [aux_sym_concatenation_repeat1] = STATE(2090), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - }, - [1636] = { - [sym__terminated_statement] = STATE(2094), - [sym_for_statement] = STATE(2092), - [sym_c_style_for_statement] = STATE(2092), - [sym_while_statement] = STATE(2092), - [sym_if_statement] = STATE(2092), - [sym_case_statement] = STATE(2092), - [sym_function_definition] = STATE(2092), - [sym_subshell] = STATE(2092), - [sym_pipeline] = STATE(2092), - [sym_list] = STATE(2092), - [sym_negated_command] = STATE(2092), - [sym_test_command] = STATE(2092), - [sym_declaration_command] = STATE(2092), - [sym_unset_command] = STATE(2092), - [sym_command] = STATE(2092), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2093), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_program_repeat1] = STATE(2094), - [aux_sym_command_repeat1] = STATE(2087), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4802), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_function] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), - }, - [1637] = { - [aux_sym_case_item_repeat1] = STATE(2089), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(4806), - [sym_comment] = ACTIONS(53), - }, - [1638] = { - [anon_sym_esac] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_RPAREN] = ACTIONS(4808), - [anon_sym_SEMI_SEMI] = ACTIONS(4808), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4808), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4808), - }, - [1639] = { - [anon_sym_esac] = ACTIONS(4812), - [sym_comment] = ACTIONS(53), - }, - [1640] = { - [sym_case_item] = STATE(1151), - [sym_concatenation] = STATE(2099), - [sym_string] = STATE(2098), - [sym_simple_expansion] = STATE(2098), - [sym_string_expansion] = STATE(2098), - [sym_expansion] = STATE(2098), - [sym_command_substitution] = STATE(2098), - [sym_process_substitution] = STATE(2098), - [aux_sym_case_statement_repeat1] = STATE(1640), - [sym__special_characters] = ACTIONS(4814), - [anon_sym_DQUOTE] = ACTIONS(4817), - [anon_sym_DOLLAR] = ACTIONS(4820), - [sym_raw_string] = ACTIONS(4823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4832), - [anon_sym_LT_LPAREN] = ACTIONS(4835), - [anon_sym_GT_LPAREN] = ACTIONS(4835), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4823), - }, - [1641] = { - [anon_sym_esac] = ACTIONS(4838), - [anon_sym_PIPE] = ACTIONS(4838), - [anon_sym_RPAREN] = ACTIONS(4838), - [anon_sym_SEMI_SEMI] = ACTIONS(4838), - [anon_sym_PIPE_AMP] = ACTIONS(4838), - [anon_sym_AMP_AMP] = ACTIONS(4838), - [anon_sym_PIPE_PIPE] = ACTIONS(4838), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4838), - [anon_sym_LF] = ACTIONS(4840), - [anon_sym_AMP] = ACTIONS(4838), - }, - [1642] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(2100), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1640), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2467), - }, - [1643] = { - [anon_sym_esac] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_SEMI_SEMI] = ACTIONS(4842), - [anon_sym_PIPE_AMP] = ACTIONS(4842), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_LF] = ACTIONS(4844), - [anon_sym_AMP] = ACTIONS(4842), - }, - [1644] = { - [anon_sym_esac] = ACTIONS(4846), - [sym_comment] = ACTIONS(53), - }, - [1645] = { - [anon_sym_esac] = ACTIONS(4848), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_RPAREN] = ACTIONS(4848), - [anon_sym_SEMI_SEMI] = ACTIONS(4848), - [anon_sym_PIPE_AMP] = ACTIONS(4848), - [anon_sym_AMP_AMP] = ACTIONS(4848), - [anon_sym_PIPE_PIPE] = ACTIONS(4848), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4848), - [anon_sym_LF] = ACTIONS(4850), - [anon_sym_AMP] = ACTIONS(4848), - }, - [1646] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(2102), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1640), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2467), - }, - [1647] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_in] = ACTIONS(4166), - [anon_sym_SEMI_SEMI] = ACTIONS(4166), - [sym__special_characters] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), - [anon_sym_BQUOTE] = ACTIONS(4166), - [anon_sym_LT_LPAREN] = ACTIONS(4166), - [anon_sym_GT_LPAREN] = ACTIONS(4166), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4166), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4166), - }, - [1648] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_in] = ACTIONS(4174), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [sym__special_characters] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), - [anon_sym_BQUOTE] = ACTIONS(4174), - [anon_sym_LT_LPAREN] = ACTIONS(4174), - [anon_sym_GT_LPAREN] = ACTIONS(4174), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4174), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4174), - }, - [1649] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_in] = ACTIONS(4261), - [anon_sym_SEMI_SEMI] = ACTIONS(4261), - [sym__special_characters] = ACTIONS(4261), - [anon_sym_DQUOTE] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), - [anon_sym_BQUOTE] = ACTIONS(4261), - [anon_sym_LT_LPAREN] = ACTIONS(4261), - [anon_sym_GT_LPAREN] = ACTIONS(4261), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4261), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), - }, - [1650] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1651] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4854), - [sym_comment] = ACTIONS(53), - }, - [1652] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4856), - [sym_comment] = ACTIONS(53), - }, - [1653] = { - [anon_sym_RBRACE] = ACTIONS(4856), - [sym_comment] = ACTIONS(53), - }, - [1654] = { - [sym_concatenation] = STATE(2107), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2107), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_EQ] = ACTIONS(4860), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COLON_QMARK] = ACTIONS(4860), - [anon_sym_COLON_DASH] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(4860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1655] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_in] = ACTIONS(4277), - [anon_sym_SEMI_SEMI] = ACTIONS(4277), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4277), - [anon_sym_GT_LPAREN] = ACTIONS(4277), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - }, - [1656] = { - [sym_concatenation] = STATE(2109), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2109), - [anon_sym_RBRACE] = ACTIONS(4864), - [anon_sym_EQ] = ACTIONS(4866), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4866), - [anon_sym_COLON_QMARK] = ACTIONS(4866), - [anon_sym_COLON_DASH] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_DASH] = ACTIONS(4866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1657] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_in] = ACTIONS(4287), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [sym__special_characters] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(4287), - [anon_sym_LT_LPAREN] = ACTIONS(4287), - [anon_sym_GT_LPAREN] = ACTIONS(4287), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(4287), - }, - [1658] = { - [sym_concatenation] = STATE(2111), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2111), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_EQ] = ACTIONS(4872), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4872), - [anon_sym_COLON_QMARK] = ACTIONS(4872), - [anon_sym_COLON_DASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1659] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [sym__special_characters] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), - [anon_sym_BQUOTE] = ACTIONS(4297), - [anon_sym_LT_LPAREN] = ACTIONS(4297), - [anon_sym_GT_LPAREN] = ACTIONS(4297), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4297), - }, - [1660] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1661] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4303), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [sym__special_characters] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LT_LPAREN] = ACTIONS(4303), - [anon_sym_GT_LPAREN] = ACTIONS(4303), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4303), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4303), - }, - [1662] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1663] = { - [anon_sym_esac] = ACTIONS(4880), - [anon_sym_PIPE] = ACTIONS(4880), - [anon_sym_RPAREN] = ACTIONS(4880), - [anon_sym_SEMI_SEMI] = ACTIONS(4880), - [anon_sym_PIPE_AMP] = ACTIONS(4880), - [anon_sym_AMP_AMP] = ACTIONS(4880), - [anon_sym_PIPE_PIPE] = ACTIONS(4880), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4880), - [anon_sym_LF] = ACTIONS(4882), - [anon_sym_AMP] = ACTIONS(4880), - }, - [1664] = { - [aux_sym_concatenation_repeat1] = STATE(1667), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LF] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), - }, - [1665] = { - [aux_sym_concatenation_repeat1] = STATE(1667), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [1666] = { - [anon_sym_esac] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [1667] = { - [aux_sym_concatenation_repeat1] = STATE(2114), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [1668] = { - [aux_sym_concatenation_repeat1] = STATE(1668), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(3611), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [1669] = { - [sym_file_redirect] = STATE(1663), - [sym_file_descriptor] = ACTIONS(2550), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3854), - [anon_sym_PIPE_AMP] = ACTIONS(3854), - [anon_sym_AMP_AMP] = ACTIONS(3854), - [anon_sym_PIPE_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2552), - [anon_sym_AMP_GT] = ACTIONS(2552), - [anon_sym_AMP_GT_GT] = ACTIONS(2552), - [anon_sym_LT_AMP] = ACTIONS(2552), - [anon_sym_GT_AMP] = ACTIONS(2552), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3856), - [anon_sym_AMP] = ACTIONS(3854), - }, - [1670] = { - [sym_concatenation] = STATE(1666), - [sym_string] = STATE(2116), - [sym_simple_expansion] = STATE(2116), - [sym_string_expansion] = STATE(2116), - [sym_expansion] = STATE(2116), - [sym_command_substitution] = STATE(2116), - [sym_process_substitution] = STATE(2116), - [sym__special_characters] = ACTIONS(4884), - [anon_sym_DQUOTE] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(4886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1633), - [anon_sym_LT_LPAREN] = ACTIONS(1635), - [anon_sym_GT_LPAREN] = ACTIONS(1635), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4886), - }, - [1671] = { - [aux_sym_concatenation_repeat1] = STATE(2117), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(701), - }, - [1672] = { - [aux_sym_concatenation_repeat1] = STATE(2117), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [1673] = { - [sym_concatenation] = STATE(1699), - [sym_string] = STATE(2119), - [sym_simple_expansion] = STATE(2119), - [sym_string_expansion] = STATE(2119), - [sym_expansion] = STATE(2119), - [sym_command_substitution] = STATE(2119), - [sym_process_substitution] = STATE(2119), - [sym__special_characters] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4890), - }, - [1674] = { - [aux_sym_concatenation_repeat1] = STATE(2120), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(701), - [anon_sym_LT_AMP] = ACTIONS(701), - [anon_sym_GT_AMP] = ACTIONS(701), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(701), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(701), - }, - [1675] = { - [aux_sym_concatenation_repeat1] = STATE(2120), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(717), - [anon_sym_LT_AMP] = ACTIONS(717), - [anon_sym_GT_AMP] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(717), - [anon_sym_LT_LT_LT] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [1676] = { - [aux_sym_concatenation_repeat1] = STATE(2120), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_SEMI_SEMI] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(2186), - [anon_sym_AMP_AMP] = ACTIONS(2186), - [anon_sym_PIPE_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2186), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2186), - [anon_sym_LT_AMP] = ACTIONS(2186), - [anon_sym_GT_AMP] = ACTIONS(2186), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2186), - [anon_sym_LT_LT_LT] = ACTIONS(2186), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2186), - }, - [1677] = { - [aux_sym_concatenation_repeat1] = STATE(2120), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2190), - }, - [1678] = { - [sym_file_redirect] = STATE(1678), - [sym_heredoc_redirect] = STATE(1678), - [sym_herestring_redirect] = STATE(1678), - [aux_sym_while_statement_repeat1] = STATE(1678), - [sym_file_descriptor] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_SEMI_SEMI] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(4895), - [anon_sym_GT] = ACTIONS(4895), - [anon_sym_GT_GT] = ACTIONS(4895), - [anon_sym_AMP_GT] = ACTIONS(4895), - [anon_sym_AMP_GT_GT] = ACTIONS(4895), - [anon_sym_LT_AMP] = ACTIONS(4895), - [anon_sym_GT_AMP] = ACTIONS(4895), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_LT_LT_DASH] = ACTIONS(3962), - [anon_sym_LT_LT_LT] = ACTIONS(4898), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2201), - }, - [1679] = { - [aux_sym_concatenation_repeat1] = STATE(1679), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [1680] = { - [sym_file_descriptor] = ACTIONS(3581), - [sym_variable_name] = ACTIONS(3581), - [anon_sym_PIPE] = ACTIONS(3583), - [anon_sym_RPAREN] = ACTIONS(3581), - [anon_sym_PIPE_AMP] = ACTIONS(3581), - [anon_sym_AMP_AMP] = ACTIONS(3581), - [anon_sym_PIPE_PIPE] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3583), - [anon_sym_GT] = ACTIONS(3583), - [anon_sym_GT_GT] = ACTIONS(3581), - [anon_sym_AMP_GT] = ACTIONS(3583), - [anon_sym_AMP_GT_GT] = ACTIONS(3581), - [anon_sym_LT_AMP] = ACTIONS(3581), - [anon_sym_GT_AMP] = ACTIONS(3581), - [sym__special_characters] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [sym_raw_string] = ACTIONS(3581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3581), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3581), - [anon_sym_BQUOTE] = ACTIONS(3581), - [anon_sym_LT_LPAREN] = ACTIONS(3581), - [anon_sym_GT_LPAREN] = ACTIONS(3581), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3581), - }, - [1681] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4164), - [anon_sym_PIPE_PIPE] = ACTIONS(4164), - [anon_sym_RBRACK] = ACTIONS(4164), - [anon_sym_EQ_TILDE] = ACTIONS(4164), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4164), - }, - [1682] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_RBRACK] = ACTIONS(4172), - [anon_sym_EQ_TILDE] = ACTIONS(4172), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ] = ACTIONS(4174), - [anon_sym_LT] = ACTIONS(4172), - [anon_sym_GT] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4172), - }, - [1683] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [anon_sym_RBRACK] = ACTIONS(4259), - [anon_sym_EQ_TILDE] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4259), - [anon_sym_EQ] = ACTIONS(4261), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_BANG_EQ] = ACTIONS(4259), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4259), - }, - [1684] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1685] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4903), - [sym_comment] = ACTIONS(53), - }, - [1686] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4905), - [sym_comment] = ACTIONS(53), - }, - [1687] = { - [anon_sym_RBRACE] = ACTIONS(4905), - [sym_comment] = ACTIONS(53), - }, - [1688] = { - [sym_concatenation] = STATE(2125), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2125), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4909), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4909), - [anon_sym_COLON_QMARK] = ACTIONS(4909), - [anon_sym_COLON_DASH] = ACTIONS(4909), - [anon_sym_PERCENT] = ACTIONS(4909), - [anon_sym_DASH] = ACTIONS(4909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1689] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_RBRACK] = ACTIONS(4275), - [anon_sym_EQ_TILDE] = ACTIONS(4275), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4275), - }, - [1690] = { - [sym_concatenation] = STATE(2127), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2127), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_EQ] = ACTIONS(4915), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4915), - [anon_sym_COLON_QMARK] = ACTIONS(4915), - [anon_sym_COLON_DASH] = ACTIONS(4915), - [anon_sym_PERCENT] = ACTIONS(4915), - [anon_sym_DASH] = ACTIONS(4915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1691] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_AMP_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4285), - [anon_sym_RBRACK] = ACTIONS(4285), - [anon_sym_EQ_TILDE] = ACTIONS(4285), - [anon_sym_EQ_EQ] = ACTIONS(4285), - [anon_sym_EQ] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4285), - [anon_sym_GT] = ACTIONS(4285), - [anon_sym_BANG_EQ] = ACTIONS(4285), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4285), - }, - [1692] = { - [sym_concatenation] = STATE(2129), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2129), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4921), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_COLON_QMARK] = ACTIONS(4921), - [anon_sym_COLON_DASH] = ACTIONS(4921), - [anon_sym_PERCENT] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1693] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_RBRACK] = ACTIONS(4295), - [anon_sym_EQ_TILDE] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4295), - [anon_sym_GT] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4295), - }, - [1694] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4925), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1695] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_RBRACK] = ACTIONS(4301), - [anon_sym_EQ_TILDE] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4301), - }, - [1696] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1697] = { - [aux_sym_concatenation_repeat1] = STATE(1701), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1135), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1135), - [anon_sym_LT_AMP] = ACTIONS(1135), - [anon_sym_GT_AMP] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1135), - [anon_sym_LT_LT_LT] = ACTIONS(1135), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LF] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), - }, - [1698] = { - [aux_sym_concatenation_repeat1] = STATE(1701), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1139), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1139), - [anon_sym_LT_AMP] = ACTIONS(1139), - [anon_sym_GT_AMP] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [1699] = { - [sym_file_descriptor] = ACTIONS(1137), - [anon_sym_esac] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1139), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1139), - [anon_sym_LT_AMP] = ACTIONS(1139), - [anon_sym_GT_AMP] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [1700] = { - [sym_string] = STATE(2132), - [sym_simple_expansion] = STATE(2132), - [sym_string_expansion] = STATE(2132), - [sym_expansion] = STATE(2132), - [sym_command_substitution] = STATE(2132), - [sym_process_substitution] = STATE(2132), - [sym__special_characters] = ACTIONS(4929), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(4929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4929), - }, - [1701] = { - [aux_sym_concatenation_repeat1] = STATE(2133), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [1702] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(737), - [anon_sym_LT_LT_LT] = ACTIONS(737), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [1703] = { - [anon_sym_DQUOTE] = ACTIONS(4931), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1704] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(4931), - [anon_sym_DOLLAR] = ACTIONS(4933), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [1705] = { - [sym_file_descriptor] = ACTIONS(767), - [sym__concat] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(769), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(769), - [anon_sym_LT_LT_DASH] = ACTIONS(769), - [anon_sym_LT_LT_LT] = ACTIONS(769), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), - }, - [1706] = { - [sym_file_descriptor] = ACTIONS(771), - [sym__concat] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LF] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - }, - [1707] = { - [sym_file_descriptor] = ACTIONS(775), - [sym__concat] = ACTIONS(775), - [anon_sym_esac] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [anon_sym_PIPE_AMP] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(777), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(777), - [anon_sym_LT_AMP] = ACTIONS(777), - [anon_sym_GT_AMP] = ACTIONS(777), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(777), - [anon_sym_LT_LT_LT] = ACTIONS(777), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - }, - [1708] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(4935), - [sym_comment] = ACTIONS(53), - }, - [1709] = { - [sym_concatenation] = STATE(2139), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2139), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(4939), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_COLON_QMARK] = ACTIONS(4939), - [anon_sym_COLON_DASH] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1710] = { - [sym_subscript] = STATE(2143), - [sym_variable_name] = ACTIONS(4945), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_AT] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_0] = ACTIONS(4951), - [anon_sym__] = ACTIONS(4951), - }, - [1711] = { - [sym_concatenation] = STATE(2146), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2146), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_EQ] = ACTIONS(4955), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_COLON_QMARK] = ACTIONS(4955), - [anon_sym_COLON_DASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1712] = { - [sym_concatenation] = STATE(2149), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2149), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(4963), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4965), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_COLON_QMARK] = ACTIONS(4963), - [anon_sym_COLON_DASH] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1713] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [1714] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1715] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(4969), - [sym_comment] = ACTIONS(53), - }, - [1716] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(4969), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1717] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [1718] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [1719] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4164), - [anon_sym_PIPE_PIPE] = ACTIONS(4164), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4164), - [anon_sym_EQ_TILDE] = ACTIONS(4164), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_BANG_EQ] = ACTIONS(4164), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4164), - }, - [1720] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4172), - [anon_sym_EQ_TILDE] = ACTIONS(4172), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ] = ACTIONS(4174), - [anon_sym_LT] = ACTIONS(4172), - [anon_sym_GT] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4172), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4172), - }, - [1721] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4259), - [anon_sym_EQ_TILDE] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4259), - [anon_sym_EQ] = ACTIONS(4261), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_BANG_EQ] = ACTIONS(4259), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4259), - }, - [1722] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1723] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4975), - [sym_comment] = ACTIONS(53), - }, - [1724] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(4977), - [sym_comment] = ACTIONS(53), - }, - [1725] = { - [anon_sym_RBRACE] = ACTIONS(4977), - [sym_comment] = ACTIONS(53), - }, [1726] = { - [sym_concatenation] = STATE(2156), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2156), - [anon_sym_RBRACE] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4981), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4981), - [anon_sym_COLON_QMARK] = ACTIONS(4981), - [anon_sym_COLON_DASH] = ACTIONS(4981), - [anon_sym_PERCENT] = ACTIONS(4981), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__concat] = ACTIONS(3003), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_EQ] = ACTIONS(3005), + [sym__special_characters] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3003), + [anon_sym_POUND] = ACTIONS(3003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_COLON_DASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3003), + [anon_sym_BQUOTE] = ACTIONS(3003), + [anon_sym_LT_LPAREN] = ACTIONS(3003), + [anon_sym_GT_LPAREN] = ACTIONS(3003), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(3005), }, [1727] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4275), - [anon_sym_EQ_TILDE] = ACTIONS(4275), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG_EQ] = ACTIONS(4275), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4760), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4275), + [sym_word] = ACTIONS(819), }, [1728] = { - [sym_concatenation] = STATE(2158), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2158), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4987), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_COLON_QMARK] = ACTIONS(4987), - [anon_sym_COLON_DASH] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(4760), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [1729] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_AMP_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4285), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4285), - [anon_sym_EQ_TILDE] = ACTIONS(4285), - [anon_sym_EQ_EQ] = ACTIONS(4285), - [anon_sym_EQ] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4285), - [anon_sym_GT] = ACTIONS(4285), - [anon_sym_BANG_EQ] = ACTIONS(4285), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4285), + [sym__concat] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3034), + [anon_sym_EQ] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3034), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(3034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3034), + [anon_sym_COLON] = ACTIONS(3036), + [anon_sym_COLON_QMARK] = ACTIONS(3036), + [anon_sym_COLON_DASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3034), + [anon_sym_BQUOTE] = ACTIONS(3034), + [anon_sym_LT_LPAREN] = ACTIONS(3034), + [anon_sym_GT_LPAREN] = ACTIONS(3034), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3036), }, [1730] = { - [sym_concatenation] = STATE(2160), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2160), - [anon_sym_RBRACE] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4993), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(4993), - [anon_sym_COLON_QMARK] = ACTIONS(4993), - [anon_sym_COLON_DASH] = ACTIONS(4993), - [anon_sym_PERCENT] = ACTIONS(4993), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4762), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [1731] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4295), - [anon_sym_EQ_TILDE] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4295), - [anon_sym_GT] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4295), + [sym__simple_heredoc_body] = ACTIONS(4764), + [sym__heredoc_body_beginning] = ACTIONS(4764), + [sym_file_descriptor] = ACTIONS(4764), + [sym__concat] = ACTIONS(4764), + [anon_sym_esac] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_RPAREN] = ACTIONS(4766), + [anon_sym_SEMI_SEMI] = ACTIONS(4766), + [anon_sym_PIPE_AMP] = ACTIONS(4766), + [anon_sym_AMP_AMP] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4766), + [anon_sym_EQ_TILDE] = ACTIONS(4766), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_GT_GT] = ACTIONS(4766), + [anon_sym_AMP_GT] = ACTIONS(4766), + [anon_sym_AMP_GT_GT] = ACTIONS(4766), + [anon_sym_LT_AMP] = ACTIONS(4766), + [anon_sym_GT_AMP] = ACTIONS(4766), + [anon_sym_LT_LT] = ACTIONS(4766), + [anon_sym_LT_LT_DASH] = ACTIONS(4766), + [anon_sym_LT_LT_LT] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), + [anon_sym_LT_LPAREN] = ACTIONS(4766), + [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_LF] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4766), }, [1732] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__simple_heredoc_body] = ACTIONS(4768), + [sym__heredoc_body_beginning] = ACTIONS(4768), + [sym_file_descriptor] = ACTIONS(4768), + [sym__concat] = ACTIONS(4768), + [anon_sym_esac] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_RPAREN] = ACTIONS(4770), + [anon_sym_SEMI_SEMI] = ACTIONS(4770), + [anon_sym_PIPE_AMP] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [anon_sym_EQ_TILDE] = ACTIONS(4770), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_GT_GT] = ACTIONS(4770), + [anon_sym_AMP_GT] = ACTIONS(4770), + [anon_sym_AMP_GT_GT] = ACTIONS(4770), + [anon_sym_LT_AMP] = ACTIONS(4770), + [anon_sym_GT_AMP] = ACTIONS(4770), + [anon_sym_LT_LT] = ACTIONS(4770), + [anon_sym_LT_LT_DASH] = ACTIONS(4770), + [anon_sym_LT_LT_LT] = ACTIONS(4770), + [sym__special_characters] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), + [anon_sym_BQUOTE] = ACTIONS(4770), + [anon_sym_LT_LPAREN] = ACTIONS(4770), + [anon_sym_GT_LPAREN] = ACTIONS(4770), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_LF] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4770), }, [1733] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4301), - [anon_sym_EQ_TILDE] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4301), + [sym__simple_heredoc_body] = ACTIONS(4772), + [sym__heredoc_body_beginning] = ACTIONS(4772), + [sym_file_descriptor] = ACTIONS(4772), + [sym__concat] = ACTIONS(4772), + [anon_sym_esac] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_RPAREN] = ACTIONS(4774), + [anon_sym_SEMI_SEMI] = ACTIONS(4774), + [anon_sym_PIPE_AMP] = ACTIONS(4774), + [anon_sym_AMP_AMP] = ACTIONS(4774), + [anon_sym_PIPE_PIPE] = ACTIONS(4774), + [anon_sym_EQ_TILDE] = ACTIONS(4774), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_GT_GT] = ACTIONS(4774), + [anon_sym_AMP_GT] = ACTIONS(4774), + [anon_sym_AMP_GT_GT] = ACTIONS(4774), + [anon_sym_LT_AMP] = ACTIONS(4774), + [anon_sym_GT_AMP] = ACTIONS(4774), + [anon_sym_LT_LT] = ACTIONS(4774), + [anon_sym_LT_LT_DASH] = ACTIONS(4774), + [anon_sym_LT_LT_LT] = ACTIONS(4774), + [sym__special_characters] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), + [anon_sym_BQUOTE] = ACTIONS(4774), + [anon_sym_LT_LPAREN] = ACTIONS(4774), + [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_LF] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4774), }, [1734] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [1735] = { - [sym_variable_name] = ACTIONS(3581), - [anon_sym_PIPE] = ACTIONS(3583), - [anon_sym_RPAREN] = ACTIONS(3583), - [anon_sym_SEMI_SEMI] = ACTIONS(3583), - [anon_sym_PIPE_AMP] = ACTIONS(3583), - [anon_sym_AMP_AMP] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [sym__special_characters] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_DOLLAR] = ACTIONS(3583), - [sym_raw_string] = ACTIONS(3583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3583), - [anon_sym_BQUOTE] = ACTIONS(3583), - [anon_sym_LT_LPAREN] = ACTIONS(3583), - [anon_sym_GT_LPAREN] = ACTIONS(3583), + [sym__simple_heredoc_body] = ACTIONS(4778), + [sym__heredoc_body_beginning] = ACTIONS(4778), + [sym_file_descriptor] = ACTIONS(4778), + [sym__concat] = ACTIONS(4778), + [anon_sym_esac] = ACTIONS(4780), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [anon_sym_PIPE_AMP] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_EQ_TILDE] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_GT_GT] = ACTIONS(4780), + [anon_sym_AMP_GT] = ACTIONS(4780), + [anon_sym_AMP_GT_GT] = ACTIONS(4780), + [anon_sym_LT_AMP] = ACTIONS(4780), + [anon_sym_GT_AMP] = ACTIONS(4780), + [anon_sym_LT_LT] = ACTIONS(4780), + [anon_sym_LT_LT_DASH] = ACTIONS(4780), + [anon_sym_LT_LT_LT] = ACTIONS(4780), + [sym__special_characters] = ACTIONS(4780), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), + [anon_sym_BQUOTE] = ACTIONS(4780), + [anon_sym_LT_LPAREN] = ACTIONS(4780), + [anon_sym_GT_LPAREN] = ACTIONS(4780), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3583), - [sym_word] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3583), - [anon_sym_LF] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), + [sym_word] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_LF] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), }, [1736] = { - [sym__concat] = ACTIONS(4164), - [sym_variable_name] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_SEMI_SEMI] = ACTIONS(4166), - [anon_sym_PIPE_AMP] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [sym__special_characters] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), - [anon_sym_BQUOTE] = ACTIONS(4166), - [anon_sym_LT_LPAREN] = ACTIONS(4166), - [anon_sym_GT_LPAREN] = ACTIONS(4166), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), - [sym_word] = ACTIONS(4166), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4166), + [sym_word] = ACTIONS(759), }, [1737] = { - [sym__concat] = ACTIONS(4172), - [sym_variable_name] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4174), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE_PIPE] = ACTIONS(4174), - [sym__special_characters] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), - [anon_sym_BQUOTE] = ACTIONS(4174), - [anon_sym_LT_LPAREN] = ACTIONS(4174), - [anon_sym_GT_LPAREN] = ACTIONS(4174), + [sym__simple_heredoc_body] = ACTIONS(4784), + [sym__heredoc_body_beginning] = ACTIONS(4784), + [sym_file_descriptor] = ACTIONS(4784), + [sym__concat] = ACTIONS(4784), + [anon_sym_esac] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_RPAREN] = ACTIONS(4786), + [anon_sym_SEMI_SEMI] = ACTIONS(4786), + [anon_sym_PIPE_AMP] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [anon_sym_EQ_TILDE] = ACTIONS(4786), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_GT_GT] = ACTIONS(4786), + [anon_sym_AMP_GT] = ACTIONS(4786), + [anon_sym_AMP_GT_GT] = ACTIONS(4786), + [anon_sym_LT_AMP] = ACTIONS(4786), + [anon_sym_GT_AMP] = ACTIONS(4786), + [anon_sym_LT_LT] = ACTIONS(4786), + [anon_sym_LT_LT_DASH] = ACTIONS(4786), + [anon_sym_LT_LT_LT] = ACTIONS(4786), + [sym__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), + [anon_sym_BQUOTE] = ACTIONS(4786), + [anon_sym_LT_LPAREN] = ACTIONS(4786), + [anon_sym_GT_LPAREN] = ACTIONS(4786), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), - [sym_word] = ACTIONS(4174), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4174), + [sym_word] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_LF] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4786), }, [1738] = { - [sym__concat] = ACTIONS(4259), - [sym_variable_name] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4261), - [anon_sym_SEMI_SEMI] = ACTIONS(4261), - [anon_sym_PIPE_AMP] = ACTIONS(4261), - [anon_sym_AMP_AMP] = ACTIONS(4261), - [anon_sym_PIPE_PIPE] = ACTIONS(4261), - [sym__special_characters] = ACTIONS(4261), - [anon_sym_DQUOTE] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), - [anon_sym_BQUOTE] = ACTIONS(4261), - [anon_sym_LT_LPAREN] = ACTIONS(4261), - [anon_sym_GT_LPAREN] = ACTIONS(4261), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), - [sym_word] = ACTIONS(4261), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), + [sym_word] = ACTIONS(759), }, [1739] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__simple_heredoc_body] = ACTIONS(4790), + [sym__heredoc_body_beginning] = ACTIONS(4790), + [sym_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_EQ_TILDE] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_LT_LT_DASH] = ACTIONS(4792), + [anon_sym_LT_LT_LT] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), }, [1740] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5003), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(4794), + [sym__heredoc_body_beginning] = ACTIONS(4794), + [sym_file_descriptor] = ACTIONS(4794), + [sym__concat] = ACTIONS(4794), + [anon_sym_esac] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_EQ_TILDE] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(4796), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(4796), + [anon_sym_LT_LT_DASH] = ACTIONS(4796), + [anon_sym_LT_LT_LT] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LF] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), }, [1741] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5005), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(1522), + [sym_file_descriptor] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3470), + [anon_sym_SEMI_SEMI] = ACTIONS(3470), + [anon_sym_PIPE_AMP] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_PIPE_PIPE] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(3013), + [anon_sym_LT_AMP] = ACTIONS(3013), + [anon_sym_GT_AMP] = ACTIONS(3013), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_LF] = ACTIONS(3472), + [anon_sym_AMP] = ACTIONS(3470), }, [1742] = { - [anon_sym_RBRACE] = ACTIONS(5005), + [sym_concatenation] = STATE(1525), + [sym_string] = STATE(2066), + [sym_simple_expansion] = STATE(2066), + [sym_string_expansion] = STATE(2066), + [sym_expansion] = STATE(2066), + [sym_command_substitution] = STATE(2066), + [sym_process_substitution] = STATE(2066), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(4800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1501), + [anon_sym_BQUOTE] = ACTIONS(1503), + [anon_sym_LT_LPAREN] = ACTIONS(1505), + [anon_sym_GT_LPAREN] = ACTIONS(1505), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4800), }, [1743] = { - [sym_concatenation] = STATE(2167), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2167), - [anon_sym_RBRACE] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5009), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5009), - [anon_sym_COLON_QMARK] = ACTIONS(5009), - [anon_sym_COLON_DASH] = ACTIONS(5009), - [anon_sym_PERCENT] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [aux_sym_concatenation_repeat1] = STATE(2067), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(653), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), }, [1744] = { - [sym__concat] = ACTIONS(4275), - [sym_variable_name] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_SEMI_SEMI] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4277), - [anon_sym_GT_LPAREN] = ACTIONS(4277), + [aux_sym_concatenation_repeat1] = STATE(2067), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), - [sym_word] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), }, [1745] = { - [sym_concatenation] = STATE(2169), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2169), - [anon_sym_RBRACE] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5015), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_COLON_QMARK] = ACTIONS(5015), - [anon_sym_COLON_DASH] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_concatenation] = STATE(1560), + [sym_string] = STATE(2069), + [sym_simple_expansion] = STATE(2069), + [sym_string_expansion] = STATE(2069), + [sym_expansion] = STATE(2069), + [sym_command_substitution] = STATE(2069), + [sym_process_substitution] = STATE(2069), + [sym__special_characters] = ACTIONS(4802), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4804), }, [1746] = { - [sym__concat] = ACTIONS(4285), - [sym_variable_name] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4287), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [anon_sym_PIPE_AMP] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [sym__special_characters] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(4287), - [anon_sym_LT_LPAREN] = ACTIONS(4287), - [anon_sym_GT_LPAREN] = ACTIONS(4287), + [aux_sym_concatenation_repeat1] = STATE(2070), + [sym_file_descriptor] = ACTIONS(649), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_AMP_GT] = ACTIONS(653), + [anon_sym_AMP_GT_GT] = ACTIONS(653), + [anon_sym_LT_AMP] = ACTIONS(653), + [anon_sym_GT_AMP] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_LT] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(653), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), - [sym_word] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), }, [1747] = { - [sym_concatenation] = STATE(2171), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2171), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_COLON_QMARK] = ACTIONS(5021), - [anon_sym_COLON_DASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [aux_sym_concatenation_repeat1] = STATE(2070), + [sym_file_descriptor] = ACTIONS(667), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), }, [1748] = { - [sym__concat] = ACTIONS(4295), - [sym_variable_name] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [sym__special_characters] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), - [anon_sym_BQUOTE] = ACTIONS(4297), - [anon_sym_LT_LPAREN] = ACTIONS(4297), - [anon_sym_GT_LPAREN] = ACTIONS(4297), + [aux_sym_concatenation_repeat1] = STATE(2070), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1926), + [anon_sym_PIPE_AMP] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_PIPE_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1926), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1926), + [anon_sym_LT_AMP] = ACTIONS(1926), + [anon_sym_GT_AMP] = ACTIONS(1926), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1926), + [anon_sym_LT_LT_LT] = ACTIONS(1926), + [anon_sym_BQUOTE] = ACTIONS(1926), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), - [sym_word] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [1749] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [aux_sym_concatenation_repeat1] = STATE(2070), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), + [anon_sym_BQUOTE] = ACTIONS(1930), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), }, [1750] = { - [sym__concat] = ACTIONS(4301), - [sym_variable_name] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [sym__special_characters] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LT_LPAREN] = ACTIONS(4303), - [anon_sym_GT_LPAREN] = ACTIONS(4303), + [sym_file_redirect] = STATE(1750), + [sym_heredoc_redirect] = STATE(1750), + [sym_herestring_redirect] = STATE(1750), + [aux_sym_while_statement_repeat1] = STATE(1750), + [sym_file_descriptor] = ACTIONS(4806), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_SEMI_SEMI] = ACTIONS(1941), + [anon_sym_PIPE_AMP] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(4809), + [anon_sym_GT] = ACTIONS(4809), + [anon_sym_GT_GT] = ACTIONS(4809), + [anon_sym_AMP_GT] = ACTIONS(4809), + [anon_sym_AMP_GT_GT] = ACTIONS(4809), + [anon_sym_LT_AMP] = ACTIONS(4809), + [anon_sym_GT_AMP] = ACTIONS(4809), + [anon_sym_LT_LT] = ACTIONS(3582), + [anon_sym_LT_LT_DASH] = ACTIONS(3582), + [anon_sym_LT_LT_LT] = ACTIONS(4812), + [anon_sym_BQUOTE] = ACTIONS(1941), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), - [sym_word] = ACTIONS(4303), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1941), }, [1751] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [aux_sym_concatenation_repeat1] = STATE(1751), + [sym__simple_heredoc_body] = ACTIONS(1648), + [sym__heredoc_body_beginning] = ACTIONS(1648), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, [1752] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_SEMI_SEMI] = ACTIONS(4166), - [anon_sym_PIPE_AMP] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [sym__special_characters] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), - [anon_sym_BQUOTE] = ACTIONS(4166), - [anon_sym_LT_LPAREN] = ACTIONS(4166), - [anon_sym_GT_LPAREN] = ACTIONS(4166), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), - [sym_word] = ACTIONS(4166), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4166), - }, - [1753] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4174), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE_PIPE] = ACTIONS(4174), - [sym__special_characters] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), - [anon_sym_BQUOTE] = ACTIONS(4174), - [anon_sym_LT_LPAREN] = ACTIONS(4174), - [anon_sym_GT_LPAREN] = ACTIONS(4174), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), - [sym_word] = ACTIONS(4174), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4174), - }, - [1754] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4261), - [anon_sym_SEMI_SEMI] = ACTIONS(4261), - [anon_sym_PIPE_AMP] = ACTIONS(4261), - [anon_sym_AMP_AMP] = ACTIONS(4261), - [anon_sym_PIPE_PIPE] = ACTIONS(4261), - [sym__special_characters] = ACTIONS(4261), - [anon_sym_DQUOTE] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), - [anon_sym_BQUOTE] = ACTIONS(4261), - [anon_sym_LT_LPAREN] = ACTIONS(4261), - [anon_sym_GT_LPAREN] = ACTIONS(4261), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), - [sym_word] = ACTIONS(4261), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), - }, - [1755] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1756] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5031), + [sym__heredoc_body_middle] = ACTIONS(2832), + [sym__heredoc_body_end] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), [sym_comment] = ACTIONS(53), }, + [1753] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4815), + [sym_comment] = ACTIONS(53), + }, + [1754] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4817), + [sym_comment] = ACTIONS(53), + }, + [1755] = { + [anon_sym_RBRACE] = ACTIONS(4817), + [sym_comment] = ACTIONS(53), + }, + [1756] = { + [sym_concatenation] = STATE(2074), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2074), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_EQ] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4821), + [anon_sym_COLON_QMARK] = ACTIONS(4821), + [anon_sym_COLON_DASH] = ACTIONS(4821), + [anon_sym_PERCENT] = ACTIONS(4821), + [anon_sym_DASH] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, [1757] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5033), + [sym__heredoc_body_middle] = ACTIONS(2926), + [sym__heredoc_body_end] = ACTIONS(2926), + [anon_sym_DOLLAR] = ACTIONS(2928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), [sym_comment] = ACTIONS(53), }, [1758] = { - [anon_sym_RBRACE] = ACTIONS(5033), + [sym_concatenation] = STATE(2077), + [sym_string] = STATE(2076), + [sym_simple_expansion] = STATE(2076), + [sym_string_expansion] = STATE(2076), + [sym_expansion] = STATE(2076), + [sym_command_substitution] = STATE(2076), + [sym_process_substitution] = STATE(2076), + [anon_sym_RBRACE] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4825), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4827), }, [1759] = { - [sym_concatenation] = STATE(2178), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2178), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5037), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_COLON_QMARK] = ACTIONS(5037), - [anon_sym_COLON_DASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__heredoc_body_middle] = ACTIONS(2969), + [sym__heredoc_body_end] = ACTIONS(2969), + [anon_sym_DOLLAR] = ACTIONS(2971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), + [sym_comment] = ACTIONS(53), }, [1760] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_SEMI_SEMI] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4277), - [anon_sym_GT_LPAREN] = ACTIONS(4277), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), - [sym_word] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), + [sym_regex_without_right_brace] = ACTIONS(4829), }, [1761] = { - [sym_concatenation] = STATE(2180), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2180), - [anon_sym_RBRACE] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5043), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_COLON_QMARK] = ACTIONS(5043), - [anon_sym_COLON_DASH] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [1762] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4287), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [anon_sym_PIPE_AMP] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [sym__special_characters] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(4287), - [anon_sym_LT_LPAREN] = ACTIONS(4287), - [anon_sym_GT_LPAREN] = ACTIONS(4287), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), - [sym_word] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(4287), + [sym__heredoc_body_middle] = ACTIONS(2977), + [sym__heredoc_body_end] = ACTIONS(2977), + [anon_sym_DOLLAR] = ACTIONS(2979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), + [sym_comment] = ACTIONS(53), }, [1763] = { - [sym_concatenation] = STATE(2182), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2182), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5049), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_COLON_QMARK] = ACTIONS(5049), - [anon_sym_COLON_DASH] = ACTIONS(5049), - [anon_sym_PERCENT] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(4833), }, [1764] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [sym__special_characters] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), - [anon_sym_BQUOTE] = ACTIONS(4297), - [anon_sym_LT_LPAREN] = ACTIONS(4297), - [anon_sym_GT_LPAREN] = ACTIONS(4297), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), - [sym_word] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4297), + [sym_word] = ACTIONS(759), }, [1765] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5053), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(4837), }, [1766] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [sym__special_characters] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LT_LPAREN] = ACTIONS(4303), - [anon_sym_GT_LPAREN] = ACTIONS(4303), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), - [sym_word] = ACTIONS(4303), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4303), + [sym_word] = ACTIONS(759), }, [1767] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(2084), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2084), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4841), + [anon_sym_COLON_QMARK] = ACTIONS(4841), + [anon_sym_COLON_DASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [1768] = { - [sym_file_descriptor] = ACTIONS(4164), - [sym__concat] = ACTIONS(4164), - [sym_variable_name] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4164), - [anon_sym_PIPE_AMP] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4164), - [anon_sym_PIPE_PIPE] = ACTIONS(4164), - [anon_sym_LT] = ACTIONS(4166), - [anon_sym_GT] = ACTIONS(4166), - [anon_sym_GT_GT] = ACTIONS(4164), - [anon_sym_AMP_GT] = ACTIONS(4166), - [anon_sym_AMP_GT_GT] = ACTIONS(4164), - [anon_sym_LT_AMP] = ACTIONS(4164), - [anon_sym_GT_AMP] = ACTIONS(4164), - [sym__special_characters] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(4164), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), - [anon_sym_BQUOTE] = ACTIONS(4164), - [anon_sym_LT_LPAREN] = ACTIONS(4164), - [anon_sym_GT_LPAREN] = ACTIONS(4164), + [sym__heredoc_body_middle] = ACTIONS(2993), + [sym__heredoc_body_end] = ACTIONS(2993), + [anon_sym_DOLLAR] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2993), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4164), }, [1769] = { - [sym_file_descriptor] = ACTIONS(4172), - [sym__concat] = ACTIONS(4172), - [sym_variable_name] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4172), - [anon_sym_PIPE_AMP] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_LT] = ACTIONS(4174), - [anon_sym_GT] = ACTIONS(4174), - [anon_sym_GT_GT] = ACTIONS(4172), - [anon_sym_AMP_GT] = ACTIONS(4174), - [anon_sym_AMP_GT_GT] = ACTIONS(4172), - [anon_sym_LT_AMP] = ACTIONS(4172), - [anon_sym_GT_AMP] = ACTIONS(4172), - [sym__special_characters] = ACTIONS(4172), - [anon_sym_DQUOTE] = ACTIONS(4172), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), - [anon_sym_BQUOTE] = ACTIONS(4172), - [anon_sym_LT_LPAREN] = ACTIONS(4172), - [anon_sym_GT_LPAREN] = ACTIONS(4172), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4172), + [sym_concatenation] = STATE(2086), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2086), + [anon_sym_RBRACE] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(4847), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4847), + [anon_sym_COLON_QMARK] = ACTIONS(4847), + [anon_sym_COLON_DASH] = ACTIONS(4847), + [anon_sym_PERCENT] = ACTIONS(4847), + [anon_sym_DASH] = ACTIONS(4847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [1770] = { - [sym_file_descriptor] = ACTIONS(4259), - [sym__concat] = ACTIONS(4259), - [sym_variable_name] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4259), - [anon_sym_PIPE_AMP] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [anon_sym_LT] = ACTIONS(4261), - [anon_sym_GT] = ACTIONS(4261), - [anon_sym_GT_GT] = ACTIONS(4259), - [anon_sym_AMP_GT] = ACTIONS(4261), - [anon_sym_AMP_GT_GT] = ACTIONS(4259), - [anon_sym_LT_AMP] = ACTIONS(4259), - [anon_sym_GT_AMP] = ACTIONS(4259), - [sym__special_characters] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4259), - [anon_sym_LT_LPAREN] = ACTIONS(4259), - [anon_sym_GT_LPAREN] = ACTIONS(4259), + [sym__concat] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [sym__special_characters] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2818), + [anon_sym_BQUOTE] = ACTIONS(2818), + [anon_sym_LT_LPAREN] = ACTIONS(2818), + [anon_sym_GT_LPAREN] = ACTIONS(2818), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4259), + [sym_word] = ACTIONS(2818), }, [1771] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [sym__special_characters] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), + [anon_sym_BQUOTE] = ACTIONS(2832), + [anon_sym_LT_LPAREN] = ACTIONS(2832), + [anon_sym_GT_LPAREN] = ACTIONS(2832), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2832), }, [1772] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5059), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4851), [sym_comment] = ACTIONS(53), }, [1773] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5061), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4853), [sym_comment] = ACTIONS(53), }, [1774] = { - [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(4853), [sym_comment] = ACTIONS(53), }, [1775] = { - [sym_concatenation] = STATE(2189), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2189), - [anon_sym_RBRACE] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5065), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_COLON_QMARK] = ACTIONS(5065), - [anon_sym_COLON_DASH] = ACTIONS(5065), - [anon_sym_PERCENT] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(2090), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2090), + [anon_sym_RBRACE] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4857), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_COLON_QMARK] = ACTIONS(4857), + [anon_sym_COLON_DASH] = ACTIONS(4857), + [anon_sym_PERCENT] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [1776] = { - [sym_file_descriptor] = ACTIONS(4275), - [sym__concat] = ACTIONS(4275), - [sym_variable_name] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_GT] = ACTIONS(4275), - [anon_sym_AMP_GT] = ACTIONS(4277), - [anon_sym_AMP_GT_GT] = ACTIONS(4275), - [anon_sym_LT_AMP] = ACTIONS(4275), - [anon_sym_GT_AMP] = ACTIONS(4275), - [sym__special_characters] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LT_LPAREN] = ACTIONS(4275), - [anon_sym_GT_LPAREN] = ACTIONS(4275), + [sym__concat] = ACTIONS(2926), + [anon_sym_RPAREN] = ACTIONS(2926), + [sym__special_characters] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), + [anon_sym_BQUOTE] = ACTIONS(2926), + [anon_sym_LT_LPAREN] = ACTIONS(2926), + [anon_sym_GT_LPAREN] = ACTIONS(2926), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4275), + [sym_word] = ACTIONS(2926), }, [1777] = { - [sym_concatenation] = STATE(2191), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2191), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5071), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_COLON_QMARK] = ACTIONS(5071), - [anon_sym_COLON_DASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_concatenation] = STATE(2093), + [sym_string] = STATE(2092), + [sym_simple_expansion] = STATE(2092), + [sym_string_expansion] = STATE(2092), + [sym_expansion] = STATE(2092), + [sym_command_substitution] = STATE(2092), + [sym_process_substitution] = STATE(2092), + [anon_sym_RBRACE] = ACTIONS(4853), + [sym__special_characters] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4863), }, [1778] = { - [sym_file_descriptor] = ACTIONS(4285), - [sym__concat] = ACTIONS(4285), - [sym_variable_name] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_PIPE_AMP] = ACTIONS(4285), - [anon_sym_AMP_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4285), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4285), - [anon_sym_AMP_GT] = ACTIONS(4287), - [anon_sym_AMP_GT_GT] = ACTIONS(4285), - [anon_sym_LT_AMP] = ACTIONS(4285), - [anon_sym_GT_AMP] = ACTIONS(4285), - [sym__special_characters] = ACTIONS(4285), - [anon_sym_DQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), - [anon_sym_BQUOTE] = ACTIONS(4285), - [anon_sym_LT_LPAREN] = ACTIONS(4285), - [anon_sym_GT_LPAREN] = ACTIONS(4285), + [sym__concat] = ACTIONS(2969), + [anon_sym_RPAREN] = ACTIONS(2969), + [sym__special_characters] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2969), + [anon_sym_LT_LPAREN] = ACTIONS(2969), + [anon_sym_GT_LPAREN] = ACTIONS(2969), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4285), + [sym_word] = ACTIONS(2969), }, [1779] = { - [sym_concatenation] = STATE(2193), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2193), - [anon_sym_RBRACE] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5077), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_COLON_QMARK] = ACTIONS(5077), - [anon_sym_COLON_DASH] = ACTIONS(5077), - [anon_sym_PERCENT] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(4865), }, [1780] = { - [sym_file_descriptor] = ACTIONS(4295), - [sym__concat] = ACTIONS(4295), - [sym_variable_name] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_PIPE_AMP] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_GT_GT] = ACTIONS(4295), - [anon_sym_AMP_GT] = ACTIONS(4297), - [anon_sym_AMP_GT_GT] = ACTIONS(4295), - [anon_sym_LT_AMP] = ACTIONS(4295), - [anon_sym_GT_AMP] = ACTIONS(4295), - [sym__special_characters] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4295), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), - [anon_sym_BQUOTE] = ACTIONS(4295), - [anon_sym_LT_LPAREN] = ACTIONS(4295), - [anon_sym_GT_LPAREN] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4295), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [1781] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5081), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2977), + [sym__special_characters] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2977), + [anon_sym_BQUOTE] = ACTIONS(2977), + [anon_sym_LT_LPAREN] = ACTIONS(2977), + [anon_sym_GT_LPAREN] = ACTIONS(2977), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2977), }, [1782] = { - [sym_file_descriptor] = ACTIONS(4301), - [sym__concat] = ACTIONS(4301), - [sym_variable_name] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_PIPE_AMP] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4303), - [anon_sym_GT] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4301), - [anon_sym_AMP_GT] = ACTIONS(4303), - [anon_sym_AMP_GT_GT] = ACTIONS(4301), - [anon_sym_LT_AMP] = ACTIONS(4301), - [anon_sym_GT_AMP] = ACTIONS(4301), - [sym__special_characters] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4301), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), - [anon_sym_BQUOTE] = ACTIONS(4301), - [anon_sym_LT_LPAREN] = ACTIONS(4301), - [anon_sym_GT_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4301), + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4869), }, [1783] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [1784] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(4166), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym__string_content] = ACTIONS(4164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), - [anon_sym_BQUOTE] = ACTIONS(4166), [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4873), }, [1785] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym__string_content] = ACTIONS(4172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), - [anon_sym_BQUOTE] = ACTIONS(4174), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4853), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [1786] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym__string_content] = ACTIONS(4259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), - [anon_sym_BQUOTE] = ACTIONS(4261), + [sym_concatenation] = STATE(2100), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2100), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_EQ] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4877), + [anon_sym_COLON_QMARK] = ACTIONS(4877), + [anon_sym_COLON_DASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [1787] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5085), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(2993), + [anon_sym_RPAREN] = ACTIONS(2993), + [sym__special_characters] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2993), + [anon_sym_BQUOTE] = ACTIONS(2993), + [anon_sym_LT_LPAREN] = ACTIONS(2993), + [anon_sym_GT_LPAREN] = ACTIONS(2993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2993), }, [1788] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5087), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2102), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2102), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4883), + [anon_sym_COLON_QMARK] = ACTIONS(4883), + [anon_sym_COLON_DASH] = ACTIONS(4883), + [anon_sym_PERCENT] = ACTIONS(4883), + [anon_sym_DASH] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [1789] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5089), + [sym__concat] = ACTIONS(3003), + [anon_sym_RPAREN] = ACTIONS(3003), + [sym__special_characters] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3003), + [anon_sym_BQUOTE] = ACTIONS(3003), + [anon_sym_LT_LPAREN] = ACTIONS(3003), + [anon_sym_GT_LPAREN] = ACTIONS(3003), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3003), }, [1790] = { - [anon_sym_RBRACE] = ACTIONS(5089), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4887), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [1791] = { - [sym_concatenation] = STATE(2200), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2200), - [anon_sym_RBRACE] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5093), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_COLON_QMARK] = ACTIONS(5093), - [anon_sym_COLON_DASH] = ACTIONS(5093), - [anon_sym_PERCENT] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(4887), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [1792] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym__string_content] = ACTIONS(4275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4277), - [sym_comment] = ACTIONS(179), + [sym__concat] = ACTIONS(3034), + [anon_sym_RPAREN] = ACTIONS(3034), + [sym__special_characters] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3034), + [anon_sym_BQUOTE] = ACTIONS(3034), + [anon_sym_LT_LPAREN] = ACTIONS(3034), + [anon_sym_GT_LPAREN] = ACTIONS(3034), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3034), }, [1793] = { - [sym_concatenation] = STATE(2202), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2202), - [anon_sym_RBRACE] = ACTIONS(5097), - [anon_sym_EQ] = ACTIONS(5099), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_COLON_QMARK] = ACTIONS(5099), - [anon_sym_COLON_DASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, [1794] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_DQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym__string_content] = ACTIONS(4285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(4287), + [sym_file_descriptor] = ACTIONS(3802), + [sym__concat] = ACTIONS(3802), + [sym_variable_name] = ACTIONS(3802), + [anon_sym_esac] = ACTIONS(3804), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_SEMI_SEMI] = ACTIONS(3804), + [anon_sym_PIPE_AMP] = ACTIONS(3804), + [anon_sym_AMP_AMP] = ACTIONS(3804), + [anon_sym_PIPE_PIPE] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_GT] = ACTIONS(3804), + [anon_sym_GT_GT] = ACTIONS(3804), + [anon_sym_AMP_GT] = ACTIONS(3804), + [anon_sym_AMP_GT_GT] = ACTIONS(3804), + [anon_sym_LT_AMP] = ACTIONS(3804), + [anon_sym_GT_AMP] = ACTIONS(3804), + [sym__special_characters] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3804), + [anon_sym_BQUOTE] = ACTIONS(3804), + [anon_sym_LT_LPAREN] = ACTIONS(3804), + [anon_sym_GT_LPAREN] = ACTIONS(3804), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3804), }, [1795] = { - [sym_concatenation] = STATE(2204), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2204), - [anon_sym_RBRACE] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5105), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_COLON_QMARK] = ACTIONS(5105), - [anon_sym_COLON_DASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1796] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym__string_content] = ACTIONS(4295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), - [anon_sym_BQUOTE] = ACTIONS(4297), - [sym_comment] = ACTIONS(179), - }, - [1797] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5109), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1798] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym__string_content] = ACTIONS(4301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [sym_comment] = ACTIONS(179), - }, - [1799] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1800] = { - [sym__concat] = ACTIONS(5113), - [anon_sym_RBRACE] = ACTIONS(3531), - [anon_sym_EQ] = ACTIONS(5115), - [sym__special_characters] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR] = ACTIONS(5115), - [sym_raw_string] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(3531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3531), - [anon_sym_SLASH] = ACTIONS(3531), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_COLON_QMARK] = ACTIONS(5115), - [anon_sym_COLON_DASH] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3531), - [anon_sym_BQUOTE] = ACTIONS(3531), - [anon_sym_LT_LPAREN] = ACTIONS(3531), - [anon_sym_GT_LPAREN] = ACTIONS(3531), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5115), - }, - [1801] = { - [anon_sym_RBRACE] = ACTIONS(3531), - [anon_sym_EQ] = ACTIONS(5115), - [sym__special_characters] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR] = ACTIONS(5115), - [sym_raw_string] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(3531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3531), - [anon_sym_SLASH] = ACTIONS(3531), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_COLON_QMARK] = ACTIONS(5115), - [anon_sym_COLON_DASH] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3531), - [anon_sym_BQUOTE] = ACTIONS(3531), - [anon_sym_LT_LPAREN] = ACTIONS(3531), - [anon_sym_GT_LPAREN] = ACTIONS(3531), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5115), - }, - [1802] = { - [sym__concat] = ACTIONS(5117), - [anon_sym_RBRACE] = ACTIONS(3535), - [anon_sym_EQ] = ACTIONS(5119), - [sym__special_characters] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(3535), - [anon_sym_DOLLAR] = ACTIONS(5119), - [sym_raw_string] = ACTIONS(3535), - [anon_sym_POUND] = ACTIONS(3535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3535), - [anon_sym_SLASH] = ACTIONS(3535), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_COLON_QMARK] = ACTIONS(5119), - [anon_sym_COLON_DASH] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3535), - [anon_sym_BQUOTE] = ACTIONS(3535), - [anon_sym_LT_LPAREN] = ACTIONS(3535), - [anon_sym_GT_LPAREN] = ACTIONS(3535), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5119), - }, - [1803] = { - [anon_sym_RBRACE] = ACTIONS(3535), - [anon_sym_EQ] = ACTIONS(5119), - [sym__special_characters] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(3535), - [anon_sym_DOLLAR] = ACTIONS(5119), - [sym_raw_string] = ACTIONS(3535), - [anon_sym_POUND] = ACTIONS(3535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3535), - [anon_sym_SLASH] = ACTIONS(3535), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_COLON_QMARK] = ACTIONS(5119), - [anon_sym_COLON_DASH] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3535), - [anon_sym_BQUOTE] = ACTIONS(3535), - [anon_sym_LT_LPAREN] = ACTIONS(3535), - [anon_sym_GT_LPAREN] = ACTIONS(3535), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5119), - }, - [1804] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [1805] = { - [aux_sym_concatenation_repeat1] = STATE(1805), - [sym__concat] = ACTIONS(5121), - [anon_sym_RBRACE] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [1806] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [sym_comment] = ACTIONS(53), - }, - [1807] = { - [anon_sym_DQUOTE] = ACTIONS(5124), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [1808] = { - [sym_concatenation] = STATE(2213), - [sym_string] = STATE(2212), - [sym_simple_expansion] = STATE(2212), - [sym_string_expansion] = STATE(2212), - [sym_expansion] = STATE(2212), - [sym_command_substitution] = STATE(2212), - [sym_process_substitution] = STATE(2212), - [anon_sym_RBRACE] = ACTIONS(5126), - [sym__special_characters] = ACTIONS(5128), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(5130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5130), - }, - [1809] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [sym_comment] = ACTIONS(53), - }, - [1810] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5132), - }, - [1811] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1812] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(5136), - [sym_comment] = ACTIONS(53), - }, - [1813] = { - [sym_concatenation] = STATE(2219), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2219), - [anon_sym_RBRACE] = ACTIONS(5138), - [anon_sym_EQ] = ACTIONS(5140), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_COLON] = ACTIONS(5140), - [anon_sym_COLON_QMARK] = ACTIONS(5140), - [anon_sym_COLON_DASH] = ACTIONS(5140), - [anon_sym_PERCENT] = ACTIONS(5140), - [anon_sym_DASH] = ACTIONS(5140), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1814] = { - [sym_concatenation] = STATE(2222), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2222), - [anon_sym_RBRACE] = ACTIONS(5146), - [anon_sym_EQ] = ACTIONS(5148), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5152), - [anon_sym_COLON] = ACTIONS(5148), - [anon_sym_COLON_QMARK] = ACTIONS(5148), - [anon_sym_COLON_DASH] = ACTIONS(5148), - [anon_sym_PERCENT] = ACTIONS(5148), - [anon_sym_DASH] = ACTIONS(5148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1815] = { - [sym_concatenation] = STATE(2224), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2224), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_EQ] = ACTIONS(5154), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5156), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5158), - [anon_sym_COLON] = ACTIONS(5154), - [anon_sym_COLON_QMARK] = ACTIONS(5154), - [anon_sym_COLON_DASH] = ACTIONS(5154), - [anon_sym_PERCENT] = ACTIONS(5154), - [anon_sym_DASH] = ACTIONS(5154), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1816] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - }, - [1817] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5160), - }, - [1818] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5162), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1819] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - }, - [1820] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5164), - }, - [1821] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1822] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [sym_comment] = ACTIONS(53), - }, - [1823] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [sym_comment] = ACTIONS(53), - }, - [1824] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2922), - [sym__special_characters] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(2920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_COLON_DASH] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), - [anon_sym_BQUOTE] = ACTIONS(2920), - [anon_sym_LT_LPAREN] = ACTIONS(2920), - [anon_sym_GT_LPAREN] = ACTIONS(2920), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2922), - }, - [1825] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2936), - [anon_sym_COLON_QMARK] = ACTIONS(2936), - [anon_sym_COLON_DASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2936), - }, - [1826] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5166), - [sym_comment] = ACTIONS(53), - }, - [1827] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5168), - [sym_comment] = ACTIONS(53), - }, - [1828] = { - [anon_sym_RBRACE] = ACTIONS(5168), - [sym_comment] = ACTIONS(53), - }, - [1829] = { - [sym_concatenation] = STATE(2231), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2231), - [anon_sym_RBRACE] = ACTIONS(5170), - [anon_sym_EQ] = ACTIONS(5172), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5172), - [anon_sym_COLON_QMARK] = ACTIONS(5172), - [anon_sym_COLON_DASH] = ACTIONS(5172), - [anon_sym_PERCENT] = ACTIONS(5172), - [anon_sym_DASH] = ACTIONS(5172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1830] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_RBRACE] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3018), - [sym__special_characters] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3016), - [anon_sym_POUND] = ACTIONS(3016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_COLON_DASH] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), - [anon_sym_BQUOTE] = ACTIONS(3016), - [anon_sym_LT_LPAREN] = ACTIONS(3016), - [anon_sym_GT_LPAREN] = ACTIONS(3016), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3018), - }, - [1831] = { - [sym_concatenation] = STATE(2234), - [sym_string] = STATE(2233), - [sym_simple_expansion] = STATE(2233), - [sym_string_expansion] = STATE(2233), - [sym_expansion] = STATE(2233), - [sym_command_substitution] = STATE(2233), - [sym_process_substitution] = STATE(2233), - [anon_sym_RBRACE] = ACTIONS(5168), - [sym__special_characters] = ACTIONS(5176), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(5178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5178), - }, - [1832] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_EQ] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3059), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3059), - [anon_sym_POUND] = ACTIONS(3059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), - [anon_sym_COLON] = ACTIONS(3061), - [anon_sym_COLON_QMARK] = ACTIONS(3061), - [anon_sym_COLON_DASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), - [anon_sym_BQUOTE] = ACTIONS(3059), - [anon_sym_LT_LPAREN] = ACTIONS(3059), - [anon_sym_GT_LPAREN] = ACTIONS(3059), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3061), - }, - [1833] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5180), - }, - [1834] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1835] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_EQ] = ACTIONS(3069), - [sym__special_characters] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3067), - [anon_sym_POUND] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), - [anon_sym_COLON] = ACTIONS(3069), - [anon_sym_COLON_QMARK] = ACTIONS(3069), - [anon_sym_COLON_DASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), - [anon_sym_BQUOTE] = ACTIONS(3067), - [anon_sym_LT_LPAREN] = ACTIONS(3067), - [anon_sym_GT_LPAREN] = ACTIONS(3067), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3069), - }, - [1836] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5184), - }, - [1837] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5186), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1838] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5188), - }, - [1839] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5168), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1840] = { - [sym_concatenation] = STATE(2241), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2241), - [anon_sym_RBRACE] = ACTIONS(5190), - [anon_sym_EQ] = ACTIONS(5192), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5192), - [anon_sym_COLON_QMARK] = ACTIONS(5192), - [anon_sym_COLON_DASH] = ACTIONS(5192), - [anon_sym_PERCENT] = ACTIONS(5192), - [anon_sym_DASH] = ACTIONS(5192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1841] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [sym__special_characters] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3083), - [anon_sym_POUND] = ACTIONS(3083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), - [anon_sym_COLON] = ACTIONS(3085), - [anon_sym_COLON_QMARK] = ACTIONS(3085), - [anon_sym_COLON_DASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), - [anon_sym_BQUOTE] = ACTIONS(3083), - [anon_sym_LT_LPAREN] = ACTIONS(3083), - [anon_sym_GT_LPAREN] = ACTIONS(3083), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3085), - }, - [1842] = { - [sym_concatenation] = STATE(2243), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2243), - [anon_sym_RBRACE] = ACTIONS(5196), - [anon_sym_EQ] = ACTIONS(5198), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5200), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5198), - [anon_sym_COLON_QMARK] = ACTIONS(5198), - [anon_sym_COLON_DASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1843] = { - [sym__simple_heredoc_body] = ACTIONS(5202), - [sym__heredoc_body_beginning] = ACTIONS(5202), - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [anon_sym_PIPE_AMP] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_EQ_TILDE] = ACTIONS(5204), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5204), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5204), - [anon_sym_LT_AMP] = ACTIONS(5204), - [anon_sym_GT_AMP] = ACTIONS(5204), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_LT_LT_DASH] = ACTIONS(5204), - [anon_sym_LT_LT_LT] = ACTIONS(5204), - [sym__special_characters] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), - [anon_sym_BQUOTE] = ACTIONS(5204), - [anon_sym_LT_LPAREN] = ACTIONS(5204), - [anon_sym_GT_LPAREN] = ACTIONS(5204), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [1844] = { - [sym__simple_heredoc_body] = ACTIONS(5206), - [sym__heredoc_body_beginning] = ACTIONS(5206), - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [anon_sym_PIPE_AMP] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_EQ_TILDE] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5208), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5208), - [anon_sym_LT_AMP] = ACTIONS(5208), - [anon_sym_GT_AMP] = ACTIONS(5208), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_LT_LT_DASH] = ACTIONS(5208), - [anon_sym_LT_LT_LT] = ACTIONS(5208), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5208), - [anon_sym_LT_LPAREN] = ACTIONS(5208), - [anon_sym_GT_LPAREN] = ACTIONS(5208), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5208), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [1845] = { - [sym__simple_heredoc_body] = ACTIONS(5210), - [sym__heredoc_body_beginning] = ACTIONS(5210), - [sym_file_descriptor] = ACTIONS(5210), - [sym__concat] = ACTIONS(5210), - [anon_sym_esac] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_SEMI_SEMI] = ACTIONS(5212), - [anon_sym_PIPE_AMP] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_EQ_TILDE] = ACTIONS(5212), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5212), - [anon_sym_AMP_GT] = ACTIONS(5212), - [anon_sym_AMP_GT_GT] = ACTIONS(5212), - [anon_sym_LT_AMP] = ACTIONS(5212), - [anon_sym_GT_AMP] = ACTIONS(5212), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_LT_LT_DASH] = ACTIONS(5212), - [anon_sym_LT_LT_LT] = ACTIONS(5212), - [sym__special_characters] = ACTIONS(5212), - [anon_sym_DQUOTE] = ACTIONS(5212), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), - [anon_sym_BQUOTE] = ACTIONS(5212), - [anon_sym_LT_LPAREN] = ACTIONS(5212), - [anon_sym_GT_LPAREN] = ACTIONS(5212), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5212), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LF] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), - }, - [1846] = { - [sym__simple_heredoc_body] = ACTIONS(5214), - [sym__heredoc_body_beginning] = ACTIONS(5214), - [sym_file_descriptor] = ACTIONS(5214), - [sym__concat] = ACTIONS(5214), - [anon_sym_esac] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_EQ_TILDE] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5216), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), - }, - [1847] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5218), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1848] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5222), - [anon_sym_PIPE_AMP] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_PIPE_PIPE] = ACTIONS(5222), - [anon_sym_EQ_TILDE] = ACTIONS(5222), - [anon_sym_EQ_EQ] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5222), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5222), - [anon_sym_LT_AMP] = ACTIONS(5222), - [anon_sym_GT_AMP] = ACTIONS(5222), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5222), - [anon_sym_LT_LT_LT] = ACTIONS(5222), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(5222), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), - [anon_sym_BQUOTE] = ACTIONS(5222), - [anon_sym_LT_LPAREN] = ACTIONS(5222), - [anon_sym_GT_LPAREN] = ACTIONS(5222), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [1849] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1850] = { - [sym__simple_heredoc_body] = ACTIONS(5226), - [sym__heredoc_body_beginning] = ACTIONS(5226), - [sym_file_descriptor] = ACTIONS(5226), - [sym__concat] = ACTIONS(5226), - [anon_sym_esac] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5228), - [anon_sym_SEMI_SEMI] = ACTIONS(5228), - [anon_sym_PIPE_AMP] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [anon_sym_EQ_TILDE] = ACTIONS(5228), - [anon_sym_EQ_EQ] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5228), - [anon_sym_GT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5228), - [anon_sym_AMP_GT] = ACTIONS(5228), - [anon_sym_AMP_GT_GT] = ACTIONS(5228), - [anon_sym_LT_AMP] = ACTIONS(5228), - [anon_sym_GT_AMP] = ACTIONS(5228), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_LT_LT_DASH] = ACTIONS(5228), - [anon_sym_LT_LT_LT] = ACTIONS(5228), - [sym__special_characters] = ACTIONS(5228), - [anon_sym_DQUOTE] = ACTIONS(5228), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), - [anon_sym_BQUOTE] = ACTIONS(5228), - [anon_sym_LT_LPAREN] = ACTIONS(5228), - [anon_sym_GT_LPAREN] = ACTIONS(5228), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5228), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LF] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), - }, - [1851] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5230), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1852] = { - [sym__simple_heredoc_body] = ACTIONS(5232), - [sym__heredoc_body_beginning] = ACTIONS(5232), - [sym_file_descriptor] = ACTIONS(5232), - [sym__concat] = ACTIONS(5232), - [anon_sym_esac] = ACTIONS(5234), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5234), - [anon_sym_SEMI_SEMI] = ACTIONS(5234), - [anon_sym_PIPE_AMP] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_PIPE_PIPE] = ACTIONS(5234), - [anon_sym_EQ_TILDE] = ACTIONS(5234), - [anon_sym_EQ_EQ] = ACTIONS(5234), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_GT_GT] = ACTIONS(5234), - [anon_sym_AMP_GT] = ACTIONS(5234), - [anon_sym_AMP_GT_GT] = ACTIONS(5234), - [anon_sym_LT_AMP] = ACTIONS(5234), - [anon_sym_GT_AMP] = ACTIONS(5234), - [anon_sym_LT_LT] = ACTIONS(5234), - [anon_sym_LT_LT_DASH] = ACTIONS(5234), - [anon_sym_LT_LT_LT] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(5234), - [anon_sym_DQUOTE] = ACTIONS(5234), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), - [anon_sym_BQUOTE] = ACTIONS(5234), - [anon_sym_LT_LPAREN] = ACTIONS(5234), - [anon_sym_GT_LPAREN] = ACTIONS(5234), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5234), - [anon_sym_SEMI] = ACTIONS(5234), - [anon_sym_LF] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(5234), - }, - [1853] = { - [sym__simple_heredoc_body] = ACTIONS(5236), - [sym__heredoc_body_beginning] = ACTIONS(5236), - [sym_file_descriptor] = ACTIONS(5236), - [sym__concat] = ACTIONS(5236), - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5238), - [anon_sym_PIPE_AMP] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_PIPE_PIPE] = ACTIONS(5238), - [anon_sym_EQ_TILDE] = ACTIONS(5238), - [anon_sym_EQ_EQ] = ACTIONS(5238), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_GT_GT] = ACTIONS(5238), - [anon_sym_AMP_GT] = ACTIONS(5238), - [anon_sym_AMP_GT_GT] = ACTIONS(5238), - [anon_sym_LT_AMP] = ACTIONS(5238), - [anon_sym_GT_AMP] = ACTIONS(5238), - [anon_sym_LT_LT] = ACTIONS(5238), - [anon_sym_LT_LT_DASH] = ACTIONS(5238), - [anon_sym_LT_LT_LT] = ACTIONS(5238), - [sym__special_characters] = ACTIONS(5238), - [anon_sym_DQUOTE] = ACTIONS(5238), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), - [anon_sym_BQUOTE] = ACTIONS(5238), - [anon_sym_LT_LPAREN] = ACTIONS(5238), - [anon_sym_GT_LPAREN] = ACTIONS(5238), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5238), - [anon_sym_SEMI] = ACTIONS(5238), - [anon_sym_LF] = ACTIONS(5236), - [anon_sym_AMP] = ACTIONS(5238), - }, - [1854] = { - [aux_sym_concatenation_repeat1] = STATE(1854), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(2831), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1754), - }, - [1855] = { - [sym_do_group] = STATE(2248), - [sym_compound_statement] = STATE(2248), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(5240), - [sym_comment] = ACTIONS(53), - }, - [1856] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(5242), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_EQ_TILDE] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_BANG_EQ] = ACTIONS(3684), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3684), - }, - [1857] = { - [sym__expression] = STATE(2250), - [sym_binary_expression] = STATE(2250), - [sym_unary_expression] = STATE(2250), - [sym_parenthesized_expression] = STATE(2250), - [sym_concatenation] = STATE(2250), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_string_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5242), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [sym__special_characters] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(2347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2355), - [anon_sym_GT_LPAREN] = ACTIONS(2355), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2357), - [sym_test_operator] = ACTIONS(2359), - }, - [1858] = { - [anon_sym_SEMI_SEMI] = ACTIONS(5244), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(5244), - [anon_sym_LF] = ACTIONS(5246), - [anon_sym_AMP] = ACTIONS(5244), - }, - [1859] = { - [sym_do_group] = STATE(2252), - [anon_sym_do] = ACTIONS(3101), - [sym_comment] = ACTIONS(53), - }, - [1860] = { - [anon_sym_PIPE] = ACTIONS(2441), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_PIPE_AMP] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_BQUOTE] = ACTIONS(2439), - [sym_comment] = ACTIONS(53), - }, - [1861] = { - [sym__terminated_statement] = STATE(1139), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1139), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_done] = ACTIONS(5248), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [1862] = { - [sym__simple_heredoc_body] = ACTIONS(3767), - [sym__heredoc_body_beginning] = ACTIONS(3767), - [sym_file_descriptor] = ACTIONS(3767), - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_RPAREN] = ACTIONS(3767), - [anon_sym_PIPE_AMP] = ACTIONS(3767), - [anon_sym_AMP_AMP] = ACTIONS(3767), - [anon_sym_PIPE_PIPE] = ACTIONS(3767), - [anon_sym_LT] = ACTIONS(3769), - [anon_sym_GT] = ACTIONS(3769), - [anon_sym_GT_GT] = ACTIONS(3767), - [anon_sym_AMP_GT] = ACTIONS(3769), - [anon_sym_AMP_GT_GT] = ACTIONS(3767), - [anon_sym_LT_AMP] = ACTIONS(3767), - [anon_sym_GT_AMP] = ACTIONS(3767), - [anon_sym_LT_LT] = ACTIONS(3769), - [anon_sym_LT_LT_DASH] = ACTIONS(3767), - [anon_sym_LT_LT_LT] = ACTIONS(3767), - [anon_sym_BQUOTE] = ACTIONS(3767), - [sym_comment] = ACTIONS(53), - }, - [1863] = { - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_RPAREN] = ACTIONS(3775), - [anon_sym_PIPE_AMP] = ACTIONS(3775), - [anon_sym_AMP_AMP] = ACTIONS(3775), - [anon_sym_PIPE_PIPE] = ACTIONS(3775), - [anon_sym_BQUOTE] = ACTIONS(3775), - [sym_comment] = ACTIONS(53), - }, - [1864] = { - [anon_sym_PIPE] = ACTIONS(3781), - [anon_sym_RPAREN] = ACTIONS(3783), - [anon_sym_PIPE_AMP] = ACTIONS(3783), - [anon_sym_AMP_AMP] = ACTIONS(3783), - [anon_sym_PIPE_PIPE] = ACTIONS(3783), - [anon_sym_BQUOTE] = ACTIONS(3783), - [sym_comment] = ACTIONS(53), - }, - [1865] = { - [anon_sym_fi] = ACTIONS(5250), - [sym_comment] = ACTIONS(53), - }, - [1866] = { - [sym_elif_clause] = STATE(1147), - [sym_else_clause] = STATE(2255), - [aux_sym_if_statement_repeat1] = STATE(1147), - [anon_sym_fi] = ACTIONS(5250), - [anon_sym_elif] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2461), - [sym_comment] = ACTIONS(53), - }, - [1867] = { - [anon_sym_PIPE] = ACTIONS(3792), - [anon_sym_RPAREN] = ACTIONS(3794), - [anon_sym_PIPE_AMP] = ACTIONS(3794), - [anon_sym_AMP_AMP] = ACTIONS(3794), - [anon_sym_PIPE_PIPE] = ACTIONS(3794), - [anon_sym_BQUOTE] = ACTIONS(3794), - [sym_comment] = ACTIONS(53), - }, - [1868] = { - [anon_sym_esac] = ACTIONS(5252), - [sym_comment] = ACTIONS(53), - }, - [1869] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(2257), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1640), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2467), - }, - [1870] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(2257), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(2259), - [anon_sym_esac] = ACTIONS(5254), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2469), - }, - [1871] = { - [anon_sym_PIPE] = ACTIONS(3810), + [sym_file_descriptor] = ACTIONS(3810), + [sym__concat] = ACTIONS(3810), + [sym_variable_name] = ACTIONS(3810), + [anon_sym_esac] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3812), [anon_sym_RPAREN] = ACTIONS(3812), + [anon_sym_SEMI_SEMI] = ACTIONS(3812), [anon_sym_PIPE_AMP] = ACTIONS(3812), [anon_sym_AMP_AMP] = ACTIONS(3812), [anon_sym_PIPE_PIPE] = ACTIONS(3812), + [anon_sym_LT] = ACTIONS(3812), + [anon_sym_GT] = ACTIONS(3812), + [anon_sym_GT_GT] = ACTIONS(3812), + [anon_sym_AMP_GT] = ACTIONS(3812), + [anon_sym_AMP_GT_GT] = ACTIONS(3812), + [anon_sym_LT_AMP] = ACTIONS(3812), + [anon_sym_GT_AMP] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3812), [anon_sym_BQUOTE] = ACTIONS(3812), - [sym_comment] = ACTIONS(53), - }, - [1872] = { - [anon_sym_esac] = ACTIONS(5256), - [sym_comment] = ACTIONS(53), - }, - [1873] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(2261), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1640), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2467), - }, - [1874] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(2261), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(2263), - [anon_sym_esac] = ACTIONS(5258), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2469), - }, - [1875] = { - [sym_file_redirect] = STATE(2264), - [sym_file_descriptor] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3856), - [anon_sym_PIPE_AMP] = ACTIONS(3856), - [anon_sym_AMP_AMP] = ACTIONS(3856), - [anon_sym_PIPE_PIPE] = ACTIONS(3856), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_AMP_GT] = ACTIONS(3125), - [anon_sym_AMP_GT_GT] = ACTIONS(3127), - [anon_sym_LT_AMP] = ACTIONS(3127), - [anon_sym_GT_AMP] = ACTIONS(3127), - [sym_comment] = ACTIONS(53), - }, - [1876] = { - [sym_file_descriptor] = ACTIONS(3858), - [anon_sym_PIPE] = ACTIONS(3860), - [anon_sym_RPAREN] = ACTIONS(3858), - [anon_sym_PIPE_AMP] = ACTIONS(3858), - [anon_sym_AMP_AMP] = ACTIONS(3858), - [anon_sym_PIPE_PIPE] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3860), - [anon_sym_GT] = ACTIONS(3860), - [anon_sym_GT_GT] = ACTIONS(3858), - [anon_sym_AMP_GT] = ACTIONS(3860), - [anon_sym_AMP_GT_GT] = ACTIONS(3858), - [anon_sym_LT_AMP] = ACTIONS(3858), - [anon_sym_GT_AMP] = ACTIONS(3858), - [anon_sym_BQUOTE] = ACTIONS(3858), - [sym_comment] = ACTIONS(53), - }, - [1877] = { - [sym_concatenation] = STATE(2267), - [sym_string] = STATE(2266), - [sym_simple_expansion] = STATE(2266), - [sym_string_expansion] = STATE(2266), - [sym_expansion] = STATE(2266), - [sym_command_substitution] = STATE(2266), - [sym_process_substitution] = STATE(2266), - [sym__special_characters] = ACTIONS(5260), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(871), - [sym_raw_string] = ACTIONS(5262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LT_LPAREN] = ACTIONS(881), - [anon_sym_GT_LPAREN] = ACTIONS(881), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5262), - }, - [1878] = { - [aux_sym_concatenation_repeat1] = STATE(2268), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - }, - [1879] = { - [aux_sym_concatenation_repeat1] = STATE(2268), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - }, - [1880] = { - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - }, - [1881] = { - [anon_sym_PIPE] = ACTIONS(3886), - [anon_sym_RPAREN] = ACTIONS(3888), - [anon_sym_PIPE_AMP] = ACTIONS(3888), - [anon_sym_AMP_AMP] = ACTIONS(3888), - [anon_sym_PIPE_PIPE] = ACTIONS(3888), - [anon_sym_BQUOTE] = ACTIONS(3888), - [sym_comment] = ACTIONS(53), - }, - [1882] = { - [sym_concatenation] = STATE(2271), - [sym_string] = STATE(2270), - [sym_simple_expansion] = STATE(2270), - [sym_string_expansion] = STATE(2270), - [sym_expansion] = STATE(2270), - [sym_command_substitution] = STATE(2270), - [sym_process_substitution] = STATE(2270), - [sym__special_characters] = ACTIONS(5264), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_DOLLAR] = ACTIONS(4357), - [sym_raw_string] = ACTIONS(5266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), - [anon_sym_BQUOTE] = ACTIONS(4365), - [anon_sym_LT_LPAREN] = ACTIONS(4367), - [anon_sym_GT_LPAREN] = ACTIONS(4367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5266), - }, - [1883] = { - [aux_sym_concatenation_repeat1] = STATE(2273), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(697), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(697), - [anon_sym_LT_AMP] = ACTIONS(697), - [anon_sym_GT_AMP] = ACTIONS(697), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - }, - [1884] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(2276), - [anon_sym_DQUOTE] = ACTIONS(5270), - [anon_sym_DOLLAR] = ACTIONS(5272), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(3812), + [anon_sym_GT_LPAREN] = ACTIONS(3812), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_LF] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3812), }, - [1885] = { - [sym_string] = STATE(2278), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_DOLLAR] = ACTIONS(5274), - [sym_raw_string] = ACTIONS(5276), - [anon_sym_POUND] = ACTIONS(5274), - [anon_sym_DASH] = ACTIONS(5274), + [1796] = { + [sym_file_descriptor] = ACTIONS(3909), + [sym__concat] = ACTIONS(3909), + [sym_variable_name] = ACTIONS(3909), + [anon_sym_esac] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_RPAREN] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [anon_sym_PIPE_AMP] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3911), + [anon_sym_AMP_GT_GT] = ACTIONS(3911), + [anon_sym_LT_AMP] = ACTIONS(3911), + [anon_sym_GT_AMP] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), + [anon_sym_LT_LPAREN] = ACTIONS(3911), + [anon_sym_GT_LPAREN] = ACTIONS(3911), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5278), - [anon_sym_STAR] = ACTIONS(5274), - [anon_sym_AT] = ACTIONS(5274), - [anon_sym_QMARK] = ACTIONS(5274), - [anon_sym_0] = ACTIONS(5280), - [anon_sym__] = ACTIONS(5280), + [sym_word] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), }, - [1886] = { - [aux_sym_concatenation_repeat1] = STATE(2273), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(715), - [anon_sym_LT_LT_LT] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - }, - [1887] = { - [sym_subscript] = STATE(2284), - [sym_variable_name] = ACTIONS(5282), - [anon_sym_DOLLAR] = ACTIONS(5284), - [anon_sym_POUND] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(5284), + [1797] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), - [anon_sym_STAR] = ACTIONS(5284), - [anon_sym_AT] = ACTIONS(5284), - [anon_sym_QMARK] = ACTIONS(5284), - [anon_sym_0] = ACTIONS(5290), - [anon_sym__] = ACTIONS(5290), + [sym_word] = ACTIONS(759), }, - [1888] = { - [sym_for_statement] = STATE(2285), - [sym_c_style_for_statement] = STATE(2285), - [sym_while_statement] = STATE(2285), - [sym_if_statement] = STATE(2285), - [sym_case_statement] = STATE(2285), - [sym_function_definition] = STATE(2285), - [sym_subshell] = STATE(2285), - [sym_pipeline] = STATE(2285), - [sym_list] = STATE(2285), - [sym_negated_command] = STATE(2285), - [sym_test_command] = STATE(2285), - [sym_declaration_command] = STATE(2285), - [sym_unset_command] = STATE(2285), - [sym_command] = STATE(2285), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2286), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [1889] = { - [sym_for_statement] = STATE(2287), - [sym_c_style_for_statement] = STATE(2287), - [sym_while_statement] = STATE(2287), - [sym_if_statement] = STATE(2287), - [sym_case_statement] = STATE(2287), - [sym_function_definition] = STATE(2287), - [sym_subshell] = STATE(2287), - [sym_pipeline] = STATE(2287), - [sym_list] = STATE(2287), - [sym_negated_command] = STATE(2287), - [sym_test_command] = STATE(2287), - [sym_declaration_command] = STATE(2287), - [sym_unset_command] = STATE(2287), - [sym_command] = STATE(2287), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(2288), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [1890] = { - [sym_for_statement] = STATE(2289), - [sym_c_style_for_statement] = STATE(2289), - [sym_while_statement] = STATE(2289), - [sym_if_statement] = STATE(2289), - [sym_case_statement] = STATE(2289), - [sym_function_definition] = STATE(2289), - [sym_subshell] = STATE(2289), - [sym_pipeline] = STATE(2289), - [sym_list] = STATE(2289), - [sym_negated_command] = STATE(2289), - [sym_test_command] = STATE(2289), - [sym_declaration_command] = STATE(2289), - [sym_unset_command] = STATE(2289), - [sym_command] = STATE(2289), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2290), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [1891] = { - [sym_file_descriptor] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(715), - [anon_sym_LT_LT_LT] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), + [1798] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4893), [sym_comment] = ACTIONS(53), }, - [1892] = { - [sym_file_descriptor] = ACTIONS(2180), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_RPAREN] = ACTIONS(2180), - [anon_sym_PIPE_AMP] = ACTIONS(2180), - [anon_sym_AMP_AMP] = ACTIONS(2180), - [anon_sym_PIPE_PIPE] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2182), - [anon_sym_GT_GT] = ACTIONS(2180), - [anon_sym_AMP_GT] = ACTIONS(2182), - [anon_sym_AMP_GT_GT] = ACTIONS(2180), - [anon_sym_LT_AMP] = ACTIONS(2180), - [anon_sym_GT_AMP] = ACTIONS(2180), - [anon_sym_LT_LT] = ACTIONS(2182), - [anon_sym_LT_LT_DASH] = ACTIONS(2180), - [anon_sym_LT_LT_LT] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), + [1799] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4895), [sym_comment] = ACTIONS(53), }, - [1893] = { - [aux_sym_concatenation_repeat1] = STATE(2273), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2184), - [anon_sym_PIPE_AMP] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2184), - [anon_sym_LT_AMP] = ACTIONS(2184), - [anon_sym_GT_AMP] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2184), - [anon_sym_LT_LT_LT] = ACTIONS(2184), + [1800] = { + [anon_sym_RBRACE] = ACTIONS(4895), [sym_comment] = ACTIONS(53), }, - [1894] = { - [aux_sym_concatenation_repeat1] = STATE(2273), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2188), - [anon_sym_PIPE_AMP] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2188), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2188), - [anon_sym_LT_AMP] = ACTIONS(2188), - [anon_sym_GT_AMP] = ACTIONS(2188), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2188), - [anon_sym_LT_LT_LT] = ACTIONS(2188), - [sym_comment] = ACTIONS(53), - }, - [1895] = { - [sym_file_descriptor] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2188), - [anon_sym_PIPE_AMP] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2188), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2188), - [anon_sym_LT_AMP] = ACTIONS(2188), - [anon_sym_GT_AMP] = ACTIONS(2188), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2188), - [anon_sym_LT_LT_LT] = ACTIONS(2188), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_comment] = ACTIONS(53), - }, - [1896] = { - [sym_file_redirect] = STATE(1896), - [sym_heredoc_redirect] = STATE(1896), - [sym_herestring_redirect] = STATE(1896), - [aux_sym_while_statement_repeat1] = STATE(1896), - [sym_file_descriptor] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_GT_GT] = ACTIONS(5298), - [anon_sym_AMP_GT] = ACTIONS(5295), - [anon_sym_AMP_GT_GT] = ACTIONS(5298), - [anon_sym_LT_AMP] = ACTIONS(5298), - [anon_sym_GT_AMP] = ACTIONS(5298), - [anon_sym_LT_LT] = ACTIONS(5301), - [anon_sym_LT_LT_DASH] = ACTIONS(5304), - [anon_sym_LT_LT_LT] = ACTIONS(5307), - [sym_comment] = ACTIONS(53), - }, - [1897] = { - [sym_variable_name] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2255), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_PIPE_AMP] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [sym__special_characters] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2255), - [sym_raw_string] = ACTIONS(2253), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2253), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2253), - [anon_sym_BQUOTE] = ACTIONS(2253), - [anon_sym_LT_LPAREN] = ACTIONS(2253), - [anon_sym_GT_LPAREN] = ACTIONS(2253), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2255), - [sym_word] = ACTIONS(2255), - }, - [1898] = { - [sym_concatenation] = STATE(1075), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(1075), - [anon_sym_RPAREN] = ACTIONS(5310), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), - }, - [1899] = { - [sym__concat] = ACTIONS(2920), - [sym_variable_name] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2920), - [anon_sym_PIPE_AMP] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [sym__special_characters] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), - [anon_sym_BQUOTE] = ACTIONS(2920), - [anon_sym_LT_LPAREN] = ACTIONS(2920), - [anon_sym_GT_LPAREN] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), - [sym_word] = ACTIONS(2922), - }, - [1900] = { - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - }, - [1901] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5312), - [sym_comment] = ACTIONS(53), - }, - [1902] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5314), - [sym_comment] = ACTIONS(53), - }, - [1903] = { - [anon_sym_RBRACE] = ACTIONS(5314), - [sym_comment] = ACTIONS(53), - }, - [1904] = { - [sym_concatenation] = STATE(2295), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2295), - [anon_sym_RBRACE] = ACTIONS(5316), - [anon_sym_EQ] = ACTIONS(5318), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5318), - [anon_sym_COLON_QMARK] = ACTIONS(5318), - [anon_sym_COLON_DASH] = ACTIONS(5318), - [anon_sym_PERCENT] = ACTIONS(5318), - [anon_sym_DASH] = ACTIONS(5318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1801] = { + [sym_concatenation] = STATE(2109), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2109), + [anon_sym_RBRACE] = ACTIONS(4897), + [anon_sym_EQ] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4899), + [anon_sym_COLON_QMARK] = ACTIONS(4899), + [anon_sym_COLON_DASH] = ACTIONS(4899), + [anon_sym_PERCENT] = ACTIONS(4899), + [anon_sym_DASH] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [1905] = { - [sym__concat] = ACTIONS(3016), - [sym_variable_name] = ACTIONS(3016), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_PIPE_AMP] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [sym__special_characters] = ACTIONS(3016), - [anon_sym_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), - [anon_sym_BQUOTE] = ACTIONS(3016), - [anon_sym_LT_LPAREN] = ACTIONS(3016), - [anon_sym_GT_LPAREN] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), - [sym_word] = ACTIONS(3018), - }, - [1906] = { - [sym_concatenation] = STATE(2298), - [sym_string] = STATE(2297), - [sym_simple_expansion] = STATE(2297), - [sym_string_expansion] = STATE(2297), - [sym_expansion] = STATE(2297), - [sym_command_substitution] = STATE(2297), - [sym_process_substitution] = STATE(2297), - [anon_sym_RBRACE] = ACTIONS(5314), - [sym__special_characters] = ACTIONS(5322), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(5324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5324), - }, - [1907] = { - [sym__concat] = ACTIONS(3059), - [sym_variable_name] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3059), - [anon_sym_PIPE_AMP] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [sym__special_characters] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), - [anon_sym_BQUOTE] = ACTIONS(3059), - [anon_sym_LT_LPAREN] = ACTIONS(3059), - [anon_sym_GT_LPAREN] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(3061), - }, - [1908] = { + [1802] = { + [sym_file_descriptor] = ACTIONS(3945), + [sym__concat] = ACTIONS(3945), + [sym_variable_name] = ACTIONS(3945), + [anon_sym_esac] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3947), + [anon_sym_PIPE_AMP] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_AMP_GT] = ACTIONS(3947), + [anon_sym_AMP_GT_GT] = ACTIONS(3947), + [anon_sym_LT_AMP] = ACTIONS(3947), + [anon_sym_GT_AMP] = ACTIONS(3947), + [sym__special_characters] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), + [anon_sym_BQUOTE] = ACTIONS(3947), + [anon_sym_LT_LPAREN] = ACTIONS(3947), + [anon_sym_GT_LPAREN] = ACTIONS(3947), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5326), + [sym_word] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3947), }, - [1909] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5328), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1803] = { + [sym_concatenation] = STATE(2111), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2111), + [anon_sym_RBRACE] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_COLON_QMARK] = ACTIONS(4905), + [anon_sym_COLON_DASH] = ACTIONS(4905), + [anon_sym_PERCENT] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [1910] = { - [sym__concat] = ACTIONS(3067), - [sym_variable_name] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_PIPE_AMP] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [sym__special_characters] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), - [anon_sym_BQUOTE] = ACTIONS(3067), - [anon_sym_LT_LPAREN] = ACTIONS(3067), - [anon_sym_GT_LPAREN] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), - [sym_word] = ACTIONS(3069), - }, - [1911] = { + [1804] = { + [sym_file_descriptor] = ACTIONS(3955), + [sym__concat] = ACTIONS(3955), + [sym_variable_name] = ACTIONS(3955), + [anon_sym_esac] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_SEMI_SEMI] = ACTIONS(3957), + [anon_sym_PIPE_AMP] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3957), + [anon_sym_GT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3957), + [anon_sym_AMP_GT] = ACTIONS(3957), + [anon_sym_AMP_GT_GT] = ACTIONS(3957), + [anon_sym_LT_AMP] = ACTIONS(3957), + [anon_sym_GT_AMP] = ACTIONS(3957), + [sym__special_characters] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), + [anon_sym_BQUOTE] = ACTIONS(3957), + [anon_sym_LT_LPAREN] = ACTIONS(3957), + [anon_sym_GT_LPAREN] = ACTIONS(3957), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5330), + [sym_word] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), }, - [1912] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5332), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1805] = { + [sym_concatenation] = STATE(2113), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2113), + [anon_sym_RBRACE] = ACTIONS(4909), + [anon_sym_EQ] = ACTIONS(4911), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4911), + [anon_sym_COLON_QMARK] = ACTIONS(4911), + [anon_sym_COLON_DASH] = ACTIONS(4911), + [anon_sym_PERCENT] = ACTIONS(4911), + [anon_sym_DASH] = ACTIONS(4911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [1913] = { + [1806] = { + [sym_file_descriptor] = ACTIONS(3965), + [sym__concat] = ACTIONS(3965), + [sym_variable_name] = ACTIONS(3965), + [anon_sym_esac] = ACTIONS(3967), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_RPAREN] = ACTIONS(3967), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_GT] = ACTIONS(3967), + [anon_sym_GT_GT] = ACTIONS(3967), + [anon_sym_AMP_GT] = ACTIONS(3967), + [anon_sym_AMP_GT_GT] = ACTIONS(3967), + [anon_sym_LT_AMP] = ACTIONS(3967), + [anon_sym_GT_AMP] = ACTIONS(3967), + [sym__special_characters] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3967), + [anon_sym_BQUOTE] = ACTIONS(3967), + [anon_sym_LT_LPAREN] = ACTIONS(3967), + [anon_sym_GT_LPAREN] = ACTIONS(3967), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5334), + [sym_word] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), }, - [1914] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5314), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1807] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [1915] = { - [sym_concatenation] = STATE(2305), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2305), - [anon_sym_RBRACE] = ACTIONS(5336), - [anon_sym_EQ] = ACTIONS(5338), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5338), - [anon_sym_COLON_QMARK] = ACTIONS(5338), - [anon_sym_COLON_DASH] = ACTIONS(5338), - [anon_sym_PERCENT] = ACTIONS(5338), - [anon_sym_DASH] = ACTIONS(5338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1808] = { + [sym_file_descriptor] = ACTIONS(3971), + [sym__concat] = ACTIONS(3971), + [sym_variable_name] = ACTIONS(3971), + [anon_sym_esac] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3973), + [anon_sym_RPAREN] = ACTIONS(3973), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3973), + [anon_sym_GT] = ACTIONS(3973), + [anon_sym_GT_GT] = ACTIONS(3973), + [anon_sym_AMP_GT] = ACTIONS(3973), + [anon_sym_AMP_GT_GT] = ACTIONS(3973), + [anon_sym_LT_AMP] = ACTIONS(3973), + [anon_sym_GT_AMP] = ACTIONS(3973), + [sym__special_characters] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3973), + [anon_sym_BQUOTE] = ACTIONS(3973), + [anon_sym_LT_LPAREN] = ACTIONS(3973), + [anon_sym_GT_LPAREN] = ACTIONS(3973), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_LF] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3973), }, - [1916] = { - [sym__concat] = ACTIONS(3083), - [sym_variable_name] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_PIPE_AMP] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [sym__special_characters] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), - [anon_sym_BQUOTE] = ACTIONS(3083), - [anon_sym_LT_LPAREN] = ACTIONS(3083), - [anon_sym_GT_LPAREN] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), - [sym_word] = ACTIONS(3085), - }, - [1917] = { - [sym_concatenation] = STATE(2307), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2307), - [anon_sym_RBRACE] = ACTIONS(5342), - [anon_sym_EQ] = ACTIONS(5344), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5344), - [anon_sym_COLON_QMARK] = ACTIONS(5344), - [anon_sym_COLON_DASH] = ACTIONS(5344), - [anon_sym_PERCENT] = ACTIONS(5344), - [anon_sym_DASH] = ACTIONS(5344), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1809] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4917), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [1918] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2920), - [anon_sym_PIPE_AMP] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [sym__special_characters] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), - [anon_sym_BQUOTE] = ACTIONS(2920), - [anon_sym_LT_LPAREN] = ACTIONS(2920), - [anon_sym_GT_LPAREN] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), - [sym_word] = ACTIONS(2922), - }, - [1919] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - }, - [1920] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5348), - [sym_comment] = ACTIONS(53), - }, - [1921] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5350), - [sym_comment] = ACTIONS(53), - }, - [1922] = { - [anon_sym_RBRACE] = ACTIONS(5350), - [sym_comment] = ACTIONS(53), - }, - [1923] = { - [sym_concatenation] = STATE(2311), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2311), - [anon_sym_RBRACE] = ACTIONS(5352), - [anon_sym_EQ] = ACTIONS(5354), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5354), - [anon_sym_COLON_QMARK] = ACTIONS(5354), - [anon_sym_COLON_DASH] = ACTIONS(5354), - [anon_sym_PERCENT] = ACTIONS(5354), - [anon_sym_DASH] = ACTIONS(5354), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1810] = { + [sym_file_descriptor] = ACTIONS(3977), + [sym__concat] = ACTIONS(3977), + [sym_variable_name] = ACTIONS(3977), + [anon_sym_esac] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_RPAREN] = ACTIONS(3979), + [anon_sym_SEMI_SEMI] = ACTIONS(3979), + [anon_sym_PIPE_AMP] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_AMP_GT] = ACTIONS(3979), + [anon_sym_AMP_GT_GT] = ACTIONS(3979), + [anon_sym_LT_AMP] = ACTIONS(3979), + [anon_sym_GT_AMP] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [anon_sym_LT_LPAREN] = ACTIONS(3979), + [anon_sym_GT_LPAREN] = ACTIONS(3979), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_LF] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3979), }, - [1924] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_PIPE_AMP] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [sym__special_characters] = ACTIONS(3016), - [anon_sym_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), - [anon_sym_BQUOTE] = ACTIONS(3016), - [anon_sym_LT_LPAREN] = ACTIONS(3016), - [anon_sym_GT_LPAREN] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), - [sym_word] = ACTIONS(3018), - }, - [1925] = { - [sym_concatenation] = STATE(2314), - [sym_string] = STATE(2313), - [sym_simple_expansion] = STATE(2313), - [sym_string_expansion] = STATE(2313), - [sym_expansion] = STATE(2313), - [sym_command_substitution] = STATE(2313), - [sym_process_substitution] = STATE(2313), - [anon_sym_RBRACE] = ACTIONS(5350), - [sym__special_characters] = ACTIONS(5358), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(5360), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5360), - }, - [1926] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3059), - [anon_sym_PIPE_AMP] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [sym__special_characters] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), - [anon_sym_BQUOTE] = ACTIONS(3059), - [anon_sym_LT_LPAREN] = ACTIONS(3059), - [anon_sym_GT_LPAREN] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(3061), - }, - [1927] = { + [1811] = { + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4003), + [anon_sym_PIPE_AMP] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_PIPE_PIPE] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4003), + [anon_sym_LT_AMP] = ACTIONS(4003), + [anon_sym_GT_AMP] = ACTIONS(4003), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4003), + [anon_sym_BQUOTE] = ACTIONS(4003), + [anon_sym_LT_LPAREN] = ACTIONS(4003), + [anon_sym_GT_LPAREN] = ACTIONS(4003), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5362), + [sym_word] = ACTIONS(4003), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), }, - [1928] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5364), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1812] = { + [anon_sym_esac] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2314), + [anon_sym_SEMI_SEMI] = ACTIONS(2314), + [anon_sym_PIPE_AMP] = ACTIONS(2314), + [anon_sym_AMP_AMP] = ACTIONS(2314), + [anon_sym_PIPE_PIPE] = ACTIONS(2314), + [anon_sym_BQUOTE] = ACTIONS(2314), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1929] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_PIPE_AMP] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [sym__special_characters] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), - [anon_sym_BQUOTE] = ACTIONS(3067), - [anon_sym_LT_LPAREN] = ACTIONS(3067), - [anon_sym_GT_LPAREN] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), - [sym_word] = ACTIONS(3069), - }, - [1930] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5366), - }, - [1931] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5368), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1932] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5370), - }, - [1933] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5350), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1934] = { - [sym_concatenation] = STATE(2321), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2321), - [anon_sym_RBRACE] = ACTIONS(5372), - [anon_sym_EQ] = ACTIONS(5374), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5376), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5374), - [anon_sym_COLON_QMARK] = ACTIONS(5374), - [anon_sym_COLON_DASH] = ACTIONS(5374), - [anon_sym_PERCENT] = ACTIONS(5374), - [anon_sym_DASH] = ACTIONS(5374), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1935] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_PIPE_AMP] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [sym__special_characters] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), - [anon_sym_BQUOTE] = ACTIONS(3083), - [anon_sym_LT_LPAREN] = ACTIONS(3083), - [anon_sym_GT_LPAREN] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), - [sym_word] = ACTIONS(3085), - }, - [1936] = { - [sym_concatenation] = STATE(2323), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2323), - [anon_sym_RBRACE] = ACTIONS(5378), - [anon_sym_EQ] = ACTIONS(5380), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5380), - [anon_sym_COLON_QMARK] = ACTIONS(5380), - [anon_sym_COLON_DASH] = ACTIONS(5380), - [anon_sym_PERCENT] = ACTIONS(5380), - [anon_sym_DASH] = ACTIONS(5380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1937] = { - [sym__simple_heredoc_body] = ACTIONS(4164), - [sym__heredoc_body_beginning] = ACTIONS(4164), - [sym_file_descriptor] = ACTIONS(4164), - [sym__concat] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4164), - [anon_sym_PIPE_AMP] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4164), - [anon_sym_PIPE_PIPE] = ACTIONS(4164), - [anon_sym_EQ_TILDE] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4166), - [anon_sym_GT] = ACTIONS(4166), - [anon_sym_GT_GT] = ACTIONS(4164), - [anon_sym_AMP_GT] = ACTIONS(4166), - [anon_sym_AMP_GT_GT] = ACTIONS(4164), - [anon_sym_LT_AMP] = ACTIONS(4164), - [anon_sym_GT_AMP] = ACTIONS(4164), - [anon_sym_LT_LT] = ACTIONS(4166), - [anon_sym_LT_LT_DASH] = ACTIONS(4164), - [anon_sym_LT_LT_LT] = ACTIONS(4164), - [sym__special_characters] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(4164), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), - [anon_sym_BQUOTE] = ACTIONS(4164), - [anon_sym_LT_LPAREN] = ACTIONS(4164), - [anon_sym_GT_LPAREN] = ACTIONS(4164), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4166), - }, - [1938] = { - [sym__simple_heredoc_body] = ACTIONS(4172), - [sym__heredoc_body_beginning] = ACTIONS(4172), - [sym_file_descriptor] = ACTIONS(4172), - [sym__concat] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4172), - [anon_sym_PIPE_AMP] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_EQ_TILDE] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4174), - [anon_sym_LT] = ACTIONS(4174), - [anon_sym_GT] = ACTIONS(4174), - [anon_sym_GT_GT] = ACTIONS(4172), - [anon_sym_AMP_GT] = ACTIONS(4174), - [anon_sym_AMP_GT_GT] = ACTIONS(4172), - [anon_sym_LT_AMP] = ACTIONS(4172), - [anon_sym_GT_AMP] = ACTIONS(4172), - [anon_sym_LT_LT] = ACTIONS(4174), - [anon_sym_LT_LT_DASH] = ACTIONS(4172), - [anon_sym_LT_LT_LT] = ACTIONS(4172), - [sym__special_characters] = ACTIONS(4172), - [anon_sym_DQUOTE] = ACTIONS(4172), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), - [anon_sym_BQUOTE] = ACTIONS(4172), - [anon_sym_LT_LPAREN] = ACTIONS(4172), - [anon_sym_GT_LPAREN] = ACTIONS(4172), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4174), - }, - [1939] = { - [sym__simple_heredoc_body] = ACTIONS(4259), - [sym__heredoc_body_beginning] = ACTIONS(4259), - [sym_file_descriptor] = ACTIONS(4259), - [sym__concat] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4259), - [anon_sym_PIPE_AMP] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [anon_sym_EQ_TILDE] = ACTIONS(4261), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_LT] = ACTIONS(4261), - [anon_sym_GT] = ACTIONS(4261), - [anon_sym_GT_GT] = ACTIONS(4259), - [anon_sym_AMP_GT] = ACTIONS(4261), - [anon_sym_AMP_GT_GT] = ACTIONS(4259), - [anon_sym_LT_AMP] = ACTIONS(4259), - [anon_sym_GT_AMP] = ACTIONS(4259), - [anon_sym_LT_LT] = ACTIONS(4261), - [anon_sym_LT_LT_DASH] = ACTIONS(4259), - [anon_sym_LT_LT_LT] = ACTIONS(4259), - [sym__special_characters] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4259), - [anon_sym_LT_LPAREN] = ACTIONS(4259), - [anon_sym_GT_LPAREN] = ACTIONS(4259), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4261), - }, - [1940] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1941] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5386), - [sym_comment] = ACTIONS(53), - }, - [1942] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5388), - [sym_comment] = ACTIONS(53), - }, - [1943] = { - [anon_sym_RBRACE] = ACTIONS(5388), - [sym_comment] = ACTIONS(53), - }, - [1944] = { - [sym_concatenation] = STATE(2328), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2328), - [anon_sym_RBRACE] = ACTIONS(5390), - [anon_sym_EQ] = ACTIONS(5392), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5392), - [anon_sym_COLON_QMARK] = ACTIONS(5392), - [anon_sym_COLON_DASH] = ACTIONS(5392), - [anon_sym_PERCENT] = ACTIONS(5392), - [anon_sym_DASH] = ACTIONS(5392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1945] = { - [sym__simple_heredoc_body] = ACTIONS(4275), - [sym__heredoc_body_beginning] = ACTIONS(4275), - [sym_file_descriptor] = ACTIONS(4275), - [sym__concat] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_EQ_TILDE] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_GT] = ACTIONS(4275), - [anon_sym_AMP_GT] = ACTIONS(4277), - [anon_sym_AMP_GT_GT] = ACTIONS(4275), - [anon_sym_LT_AMP] = ACTIONS(4275), - [anon_sym_GT_AMP] = ACTIONS(4275), - [anon_sym_LT_LT] = ACTIONS(4277), - [anon_sym_LT_LT_DASH] = ACTIONS(4275), - [anon_sym_LT_LT_LT] = ACTIONS(4275), - [sym__special_characters] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LT_LPAREN] = ACTIONS(4275), - [anon_sym_GT_LPAREN] = ACTIONS(4275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4277), - }, - [1946] = { - [sym_concatenation] = STATE(2330), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2330), - [anon_sym_RBRACE] = ACTIONS(5396), - [anon_sym_EQ] = ACTIONS(5398), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5398), - [anon_sym_COLON_QMARK] = ACTIONS(5398), - [anon_sym_COLON_DASH] = ACTIONS(5398), - [anon_sym_PERCENT] = ACTIONS(5398), - [anon_sym_DASH] = ACTIONS(5398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1947] = { - [sym__simple_heredoc_body] = ACTIONS(4285), - [sym__heredoc_body_beginning] = ACTIONS(4285), - [sym_file_descriptor] = ACTIONS(4285), - [sym__concat] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_PIPE_AMP] = ACTIONS(4285), - [anon_sym_AMP_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4285), - [anon_sym_EQ_TILDE] = ACTIONS(4287), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4285), - [anon_sym_AMP_GT] = ACTIONS(4287), - [anon_sym_AMP_GT_GT] = ACTIONS(4285), - [anon_sym_LT_AMP] = ACTIONS(4285), - [anon_sym_GT_AMP] = ACTIONS(4285), - [anon_sym_LT_LT] = ACTIONS(4287), - [anon_sym_LT_LT_DASH] = ACTIONS(4285), - [anon_sym_LT_LT_LT] = ACTIONS(4285), - [sym__special_characters] = ACTIONS(4285), - [anon_sym_DQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), - [anon_sym_BQUOTE] = ACTIONS(4285), - [anon_sym_LT_LPAREN] = ACTIONS(4285), - [anon_sym_GT_LPAREN] = ACTIONS(4285), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4287), - }, - [1948] = { - [sym_concatenation] = STATE(2332), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2332), - [anon_sym_RBRACE] = ACTIONS(5402), - [anon_sym_EQ] = ACTIONS(5404), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5404), - [anon_sym_COLON_QMARK] = ACTIONS(5404), - [anon_sym_COLON_DASH] = ACTIONS(5404), - [anon_sym_PERCENT] = ACTIONS(5404), - [anon_sym_DASH] = ACTIONS(5404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1949] = { - [sym__simple_heredoc_body] = ACTIONS(4295), - [sym__heredoc_body_beginning] = ACTIONS(4295), - [sym_file_descriptor] = ACTIONS(4295), - [sym__concat] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_PIPE_AMP] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_EQ_TILDE] = ACTIONS(4297), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_GT_GT] = ACTIONS(4295), - [anon_sym_AMP_GT] = ACTIONS(4297), - [anon_sym_AMP_GT_GT] = ACTIONS(4295), - [anon_sym_LT_AMP] = ACTIONS(4295), - [anon_sym_GT_AMP] = ACTIONS(4295), - [anon_sym_LT_LT] = ACTIONS(4297), - [anon_sym_LT_LT_DASH] = ACTIONS(4295), - [anon_sym_LT_LT_LT] = ACTIONS(4295), - [sym__special_characters] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4295), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), - [anon_sym_BQUOTE] = ACTIONS(4295), - [anon_sym_LT_LPAREN] = ACTIONS(4295), - [anon_sym_GT_LPAREN] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4297), - }, - [1950] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5408), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1951] = { - [sym__simple_heredoc_body] = ACTIONS(4301), - [sym__heredoc_body_beginning] = ACTIONS(4301), - [sym_file_descriptor] = ACTIONS(4301), - [sym__concat] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_PIPE_AMP] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4303), - [anon_sym_GT] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4301), - [anon_sym_AMP_GT] = ACTIONS(4303), - [anon_sym_AMP_GT_GT] = ACTIONS(4301), - [anon_sym_LT_AMP] = ACTIONS(4301), - [anon_sym_GT_AMP] = ACTIONS(4301), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_LT_LT_DASH] = ACTIONS(4301), - [anon_sym_LT_LT_LT] = ACTIONS(4301), - [sym__special_characters] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4301), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), - [anon_sym_BQUOTE] = ACTIONS(4301), - [anon_sym_LT_LPAREN] = ACTIONS(4301), - [anon_sym_GT_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4303), - }, - [1952] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5410), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1953] = { - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3856), - [anon_sym_PIPE_AMP] = ACTIONS(3856), - [anon_sym_AMP_AMP] = ACTIONS(3856), - [anon_sym_PIPE_PIPE] = ACTIONS(3856), - [anon_sym_BQUOTE] = ACTIONS(3856), - [sym_comment] = ACTIONS(53), - }, - [1954] = { - [aux_sym_concatenation_repeat1] = STATE(1954), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(3308), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1754), - [anon_sym_LT_LT_LT] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [1955] = { - [anon_sym_PIPE] = ACTIONS(4563), - [anon_sym_RPAREN] = ACTIONS(4565), - [anon_sym_PIPE_AMP] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4565), - [anon_sym_PIPE_PIPE] = ACTIONS(4565), - [anon_sym_BQUOTE] = ACTIONS(4565), - [sym_comment] = ACTIONS(53), - }, - [1956] = { - [aux_sym_concatenation_repeat1] = STATE(1956), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(2831), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1754), - }, - [1957] = { - [sym_file_redirect] = STATE(2264), - [sym_file_descriptor] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_PIPE_AMP] = ACTIONS(3856), - [anon_sym_AMP_AMP] = ACTIONS(3856), - [anon_sym_PIPE_PIPE] = ACTIONS(3856), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_AMP_GT] = ACTIONS(3411), - [anon_sym_AMP_GT_GT] = ACTIONS(3413), - [anon_sym_LT_AMP] = ACTIONS(3413), - [anon_sym_GT_AMP] = ACTIONS(3413), - [anon_sym_BQUOTE] = ACTIONS(3856), - [sym_comment] = ACTIONS(53), - }, - [1958] = { - [sym_concatenation] = STATE(2267), - [sym_string] = STATE(2336), - [sym_simple_expansion] = STATE(2336), - [sym_string_expansion] = STATE(2336), - [sym_expansion] = STATE(2336), - [sym_command_substitution] = STATE(2336), - [sym_process_substitution] = STATE(2336), - [sym__special_characters] = ACTIONS(5412), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(871), - [sym_raw_string] = ACTIONS(5414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LT_LPAREN] = ACTIONS(881), - [anon_sym_GT_LPAREN] = ACTIONS(881), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5414), - }, - [1959] = { - [aux_sym_concatenation_repeat1] = STATE(2337), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - }, - [1960] = { - [aux_sym_concatenation_repeat1] = STATE(2337), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - }, - [1961] = { - [sym_concatenation] = STATE(2271), - [sym_string] = STATE(2339), - [sym_simple_expansion] = STATE(2339), - [sym_string_expansion] = STATE(2339), - [sym_expansion] = STATE(2339), - [sym_command_substitution] = STATE(2339), - [sym_process_substitution] = STATE(2339), - [sym__special_characters] = ACTIONS(5416), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_DOLLAR] = ACTIONS(4357), - [sym_raw_string] = ACTIONS(5418), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), - [anon_sym_BQUOTE] = ACTIONS(4365), - [anon_sym_LT_LPAREN] = ACTIONS(4367), - [anon_sym_GT_LPAREN] = ACTIONS(4367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5418), - }, - [1962] = { - [aux_sym_concatenation_repeat1] = STATE(2340), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(697), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(697), - [anon_sym_LT_AMP] = ACTIONS(697), - [anon_sym_GT_AMP] = ACTIONS(697), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [sym_comment] = ACTIONS(53), - }, - [1963] = { - [aux_sym_concatenation_repeat1] = STATE(2340), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(715), - [anon_sym_LT_LT_LT] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [sym_comment] = ACTIONS(53), - }, - [1964] = { - [aux_sym_concatenation_repeat1] = STATE(2340), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2184), - [anon_sym_LT_AMP] = ACTIONS(2184), - [anon_sym_GT_AMP] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2184), - [anon_sym_LT_LT_LT] = ACTIONS(2184), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_comment] = ACTIONS(53), - }, - [1965] = { - [aux_sym_concatenation_repeat1] = STATE(2340), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2188), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2188), - [anon_sym_LT_AMP] = ACTIONS(2188), - [anon_sym_GT_AMP] = ACTIONS(2188), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2188), - [anon_sym_LT_LT_LT] = ACTIONS(2188), - [anon_sym_BQUOTE] = ACTIONS(2188), - [sym_comment] = ACTIONS(53), - }, - [1966] = { - [sym_file_redirect] = STATE(1966), - [sym_heredoc_redirect] = STATE(1966), - [sym_herestring_redirect] = STATE(1966), - [aux_sym_while_statement_repeat1] = STATE(1966), - [sym_file_descriptor] = ACTIONS(5420), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(5423), - [anon_sym_GT] = ACTIONS(5423), - [anon_sym_GT_GT] = ACTIONS(5426), - [anon_sym_AMP_GT] = ACTIONS(5423), - [anon_sym_AMP_GT_GT] = ACTIONS(5426), - [anon_sym_LT_AMP] = ACTIONS(5426), - [anon_sym_GT_AMP] = ACTIONS(5426), - [anon_sym_LT_LT] = ACTIONS(5301), - [anon_sym_LT_LT_DASH] = ACTIONS(5304), - [anon_sym_LT_LT_LT] = ACTIONS(5429), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_comment] = ACTIONS(53), - }, - [1967] = { - [aux_sym_concatenation_repeat1] = STATE(1967), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(3308), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1754), - [anon_sym_LT_LT_LT] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [1968] = { - [sym__heredoc_body_middle] = ACTIONS(2934), - [sym__heredoc_body_end] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - }, - [1969] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5432), - [sym_comment] = ACTIONS(53), - }, - [1970] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5434), - [sym_comment] = ACTIONS(53), - }, - [1971] = { - [anon_sym_RBRACE] = ACTIONS(5434), - [sym_comment] = ACTIONS(53), - }, - [1972] = { - [sym_concatenation] = STATE(2344), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2344), - [anon_sym_RBRACE] = ACTIONS(5436), - [anon_sym_EQ] = ACTIONS(5438), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5440), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5438), - [anon_sym_COLON_QMARK] = ACTIONS(5438), - [anon_sym_COLON_DASH] = ACTIONS(5438), - [anon_sym_PERCENT] = ACTIONS(5438), - [anon_sym_DASH] = ACTIONS(5438), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1973] = { - [sym__heredoc_body_middle] = ACTIONS(3016), - [sym__heredoc_body_end] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - }, - [1974] = { - [sym_concatenation] = STATE(2347), - [sym_string] = STATE(2346), - [sym_simple_expansion] = STATE(2346), - [sym_string_expansion] = STATE(2346), - [sym_expansion] = STATE(2346), - [sym_command_substitution] = STATE(2346), - [sym_process_substitution] = STATE(2346), - [anon_sym_RBRACE] = ACTIONS(5434), - [sym__special_characters] = ACTIONS(5442), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(5444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5444), - }, - [1975] = { - [sym__heredoc_body_middle] = ACTIONS(3059), - [sym__heredoc_body_end] = ACTIONS(3059), - [anon_sym_DOLLAR] = ACTIONS(3061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - }, - [1976] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5446), - }, - [1977] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5448), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1978] = { - [sym__heredoc_body_middle] = ACTIONS(3067), - [sym__heredoc_body_end] = ACTIONS(3067), - [anon_sym_DOLLAR] = ACTIONS(3069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - }, - [1979] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5450), - }, - [1980] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1981] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5454), - }, - [1982] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5434), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1983] = { - [sym_concatenation] = STATE(2354), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2354), - [anon_sym_RBRACE] = ACTIONS(5456), - [anon_sym_EQ] = ACTIONS(5458), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5460), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5458), - [anon_sym_COLON_QMARK] = ACTIONS(5458), - [anon_sym_COLON_DASH] = ACTIONS(5458), - [anon_sym_PERCENT] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1984] = { - [sym__heredoc_body_middle] = ACTIONS(3083), - [sym__heredoc_body_end] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - }, - [1985] = { - [sym_concatenation] = STATE(2356), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2356), - [anon_sym_RBRACE] = ACTIONS(5462), - [anon_sym_EQ] = ACTIONS(5464), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5464), - [anon_sym_COLON_QMARK] = ACTIONS(5464), - [anon_sym_COLON_DASH] = ACTIONS(5464), - [anon_sym_PERCENT] = ACTIONS(5464), - [anon_sym_DASH] = ACTIONS(5464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1986] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_RPAREN] = ACTIONS(2920), - [sym__special_characters] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2920), - [anon_sym_BQUOTE] = ACTIONS(2920), - [anon_sym_LT_LPAREN] = ACTIONS(2920), - [anon_sym_GT_LPAREN] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2920), - }, - [1987] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [sym__special_characters] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_LT_LPAREN] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2934), - }, - [1988] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5468), - [sym_comment] = ACTIONS(53), - }, - [1989] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5470), - [sym_comment] = ACTIONS(53), - }, - [1990] = { - [anon_sym_RBRACE] = ACTIONS(5470), - [sym_comment] = ACTIONS(53), - }, - [1991] = { - [sym_concatenation] = STATE(2360), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2360), - [anon_sym_RBRACE] = ACTIONS(5472), - [anon_sym_EQ] = ACTIONS(5474), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5474), - [anon_sym_COLON_QMARK] = ACTIONS(5474), - [anon_sym_COLON_DASH] = ACTIONS(5474), - [anon_sym_PERCENT] = ACTIONS(5474), - [anon_sym_DASH] = ACTIONS(5474), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1992] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_RPAREN] = ACTIONS(3016), - [sym__special_characters] = ACTIONS(3016), - [anon_sym_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3016), - [anon_sym_BQUOTE] = ACTIONS(3016), - [anon_sym_LT_LPAREN] = ACTIONS(3016), - [anon_sym_GT_LPAREN] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3016), - }, - [1993] = { - [sym_concatenation] = STATE(2363), - [sym_string] = STATE(2362), - [sym_simple_expansion] = STATE(2362), - [sym_string_expansion] = STATE(2362), - [sym_expansion] = STATE(2362), - [sym_command_substitution] = STATE(2362), - [sym_process_substitution] = STATE(2362), - [anon_sym_RBRACE] = ACTIONS(5470), - [sym__special_characters] = ACTIONS(5478), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(5480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5480), - }, - [1994] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(3059), - [sym__special_characters] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3059), - [anon_sym_BQUOTE] = ACTIONS(3059), - [anon_sym_LT_LPAREN] = ACTIONS(3059), - [anon_sym_GT_LPAREN] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3059), - }, - [1995] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5482), - }, - [1996] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5484), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [1997] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3067), - [sym__special_characters] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), - [anon_sym_BQUOTE] = ACTIONS(3067), - [anon_sym_LT_LPAREN] = ACTIONS(3067), - [anon_sym_GT_LPAREN] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3067), - }, - [1998] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5486), - }, - [1999] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5488), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2000] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5490), - }, - [2001] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5470), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2002] = { - [sym_concatenation] = STATE(2370), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2370), - [anon_sym_RBRACE] = ACTIONS(5492), - [anon_sym_EQ] = ACTIONS(5494), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5496), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5494), - [anon_sym_COLON_QMARK] = ACTIONS(5494), - [anon_sym_COLON_DASH] = ACTIONS(5494), - [anon_sym_PERCENT] = ACTIONS(5494), - [anon_sym_DASH] = ACTIONS(5494), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2003] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3083), - [sym__special_characters] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3083), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3083), - [anon_sym_BQUOTE] = ACTIONS(3083), - [anon_sym_LT_LPAREN] = ACTIONS(3083), - [anon_sym_GT_LPAREN] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3083), - }, - [2004] = { - [sym_concatenation] = STATE(2372), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2372), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_EQ] = ACTIONS(5500), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5502), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5500), - [anon_sym_COLON_QMARK] = ACTIONS(5500), - [anon_sym_COLON_DASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5500), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2005] = { - [sym_file_descriptor] = ACTIONS(4164), - [sym__concat] = ACTIONS(4164), - [sym_variable_name] = ACTIONS(4164), - [anon_sym_esac] = ACTIONS(4166), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_SEMI_SEMI] = ACTIONS(4166), - [anon_sym_PIPE_AMP] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4166), - [anon_sym_GT] = ACTIONS(4166), - [anon_sym_GT_GT] = ACTIONS(4166), - [anon_sym_AMP_GT] = ACTIONS(4166), - [anon_sym_AMP_GT_GT] = ACTIONS(4166), - [anon_sym_LT_AMP] = ACTIONS(4166), - [anon_sym_GT_AMP] = ACTIONS(4166), - [sym__special_characters] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), - [anon_sym_BQUOTE] = ACTIONS(4166), - [anon_sym_LT_LPAREN] = ACTIONS(4166), - [anon_sym_GT_LPAREN] = ACTIONS(4166), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4166), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4166), - }, - [2006] = { - [sym_file_descriptor] = ACTIONS(4172), - [sym__concat] = ACTIONS(4172), - [sym_variable_name] = ACTIONS(4172), - [anon_sym_esac] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4174), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE_PIPE] = ACTIONS(4174), - [anon_sym_LT] = ACTIONS(4174), - [anon_sym_GT] = ACTIONS(4174), - [anon_sym_GT_GT] = ACTIONS(4174), - [anon_sym_AMP_GT] = ACTIONS(4174), - [anon_sym_AMP_GT_GT] = ACTIONS(4174), - [anon_sym_LT_AMP] = ACTIONS(4174), - [anon_sym_GT_AMP] = ACTIONS(4174), - [sym__special_characters] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), - [anon_sym_BQUOTE] = ACTIONS(4174), - [anon_sym_LT_LPAREN] = ACTIONS(4174), - [anon_sym_GT_LPAREN] = ACTIONS(4174), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4174), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4174), - }, - [2007] = { - [sym_file_descriptor] = ACTIONS(4259), - [sym__concat] = ACTIONS(4259), - [sym_variable_name] = ACTIONS(4259), - [anon_sym_esac] = ACTIONS(4261), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4261), - [anon_sym_SEMI_SEMI] = ACTIONS(4261), - [anon_sym_PIPE_AMP] = ACTIONS(4261), - [anon_sym_AMP_AMP] = ACTIONS(4261), - [anon_sym_PIPE_PIPE] = ACTIONS(4261), - [anon_sym_LT] = ACTIONS(4261), - [anon_sym_GT] = ACTIONS(4261), - [anon_sym_GT_GT] = ACTIONS(4261), - [anon_sym_AMP_GT] = ACTIONS(4261), - [anon_sym_AMP_GT_GT] = ACTIONS(4261), - [anon_sym_LT_AMP] = ACTIONS(4261), - [anon_sym_GT_AMP] = ACTIONS(4261), - [sym__special_characters] = ACTIONS(4261), - [anon_sym_DQUOTE] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), - [anon_sym_BQUOTE] = ACTIONS(4261), - [anon_sym_LT_LPAREN] = ACTIONS(4261), - [anon_sym_GT_LPAREN] = ACTIONS(4261), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4261), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), - }, - [2008] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5504), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2009] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5506), - [sym_comment] = ACTIONS(53), - }, - [2010] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5508), - [sym_comment] = ACTIONS(53), - }, - [2011] = { - [anon_sym_RBRACE] = ACTIONS(5508), - [sym_comment] = ACTIONS(53), - }, - [2012] = { - [sym_concatenation] = STATE(2377), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2377), - [anon_sym_RBRACE] = ACTIONS(5510), - [anon_sym_EQ] = ACTIONS(5512), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5514), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5512), - [anon_sym_COLON_QMARK] = ACTIONS(5512), - [anon_sym_COLON_DASH] = ACTIONS(5512), - [anon_sym_PERCENT] = ACTIONS(5512), - [anon_sym_DASH] = ACTIONS(5512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2013] = { - [sym_file_descriptor] = ACTIONS(4275), - [sym__concat] = ACTIONS(4275), - [sym_variable_name] = ACTIONS(4275), - [anon_sym_esac] = ACTIONS(4277), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_SEMI_SEMI] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_GT] = ACTIONS(4277), - [anon_sym_AMP_GT] = ACTIONS(4277), - [anon_sym_AMP_GT_GT] = ACTIONS(4277), - [anon_sym_LT_AMP] = ACTIONS(4277), - [anon_sym_GT_AMP] = ACTIONS(4277), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4277), - [anon_sym_GT_LPAREN] = ACTIONS(4277), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - }, - [2014] = { - [sym_concatenation] = STATE(2379), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2379), - [anon_sym_RBRACE] = ACTIONS(5516), - [anon_sym_EQ] = ACTIONS(5518), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5518), - [anon_sym_COLON_QMARK] = ACTIONS(5518), - [anon_sym_COLON_DASH] = ACTIONS(5518), - [anon_sym_PERCENT] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2015] = { - [sym_file_descriptor] = ACTIONS(4285), - [sym__concat] = ACTIONS(4285), - [sym_variable_name] = ACTIONS(4285), - [anon_sym_esac] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4287), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [anon_sym_PIPE_AMP] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4287), - [anon_sym_AMP_GT] = ACTIONS(4287), - [anon_sym_AMP_GT_GT] = ACTIONS(4287), - [anon_sym_LT_AMP] = ACTIONS(4287), - [anon_sym_GT_AMP] = ACTIONS(4287), - [sym__special_characters] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(4287), - [anon_sym_LT_LPAREN] = ACTIONS(4287), - [anon_sym_GT_LPAREN] = ACTIONS(4287), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(4287), - }, - [2016] = { - [sym_concatenation] = STATE(2381), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2381), - [anon_sym_RBRACE] = ACTIONS(5522), - [anon_sym_EQ] = ACTIONS(5524), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5526), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5524), - [anon_sym_COLON_QMARK] = ACTIONS(5524), - [anon_sym_COLON_DASH] = ACTIONS(5524), - [anon_sym_PERCENT] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2017] = { - [sym_file_descriptor] = ACTIONS(4295), - [sym__concat] = ACTIONS(4295), - [sym_variable_name] = ACTIONS(4295), - [anon_sym_esac] = ACTIONS(4297), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_GT_GT] = ACTIONS(4297), - [anon_sym_AMP_GT] = ACTIONS(4297), - [anon_sym_AMP_GT_GT] = ACTIONS(4297), - [anon_sym_LT_AMP] = ACTIONS(4297), - [anon_sym_GT_AMP] = ACTIONS(4297), - [sym__special_characters] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), - [anon_sym_BQUOTE] = ACTIONS(4297), - [anon_sym_LT_LPAREN] = ACTIONS(4297), - [anon_sym_GT_LPAREN] = ACTIONS(4297), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4297), - }, - [2018] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5528), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2019] = { - [sym_file_descriptor] = ACTIONS(4301), - [sym__concat] = ACTIONS(4301), - [sym_variable_name] = ACTIONS(4301), - [anon_sym_esac] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4303), - [anon_sym_GT] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_AMP_GT] = ACTIONS(4303), - [anon_sym_AMP_GT_GT] = ACTIONS(4303), - [anon_sym_LT_AMP] = ACTIONS(4303), - [anon_sym_GT_AMP] = ACTIONS(4303), - [sym__special_characters] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LT_LPAREN] = ACTIONS(4303), - [anon_sym_GT_LPAREN] = ACTIONS(4303), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4303), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4303), - }, - [2020] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5530), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2021] = { - [anon_sym_esac] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_SEMI_SEMI] = ACTIONS(2528), - [anon_sym_PIPE_AMP] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_LF] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - }, - [2022] = { - [sym__terminated_statement] = STATE(1182), - [sym_for_statement] = STATE(680), - [sym_c_style_for_statement] = STATE(680), - [sym_while_statement] = STATE(680), - [sym_if_statement] = STATE(680), - [sym_case_statement] = STATE(680), - [sym_function_definition] = STATE(680), - [sym_subshell] = STATE(680), - [sym_pipeline] = STATE(680), - [sym_list] = STATE(680), - [sym_negated_command] = STATE(680), - [sym_test_command] = STATE(680), - [sym_declaration_command] = STATE(680), - [sym_unset_command] = STATE(680), - [sym_command] = STATE(680), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_LF] = ACTIONS(2312), + [anon_sym_AMP] = ACTIONS(2314), + }, + [1813] = { + [sym__terminated_statement] = STATE(1083), + [sym_for_statement] = STATE(613), + [sym_c_style_for_statement] = STATE(613), + [sym_while_statement] = STATE(613), + [sym_if_statement] = STATE(613), + [sym_case_statement] = STATE(613), + [sym_function_definition] = STATE(613), + [sym_subshell] = STATE(613), + [sym_pipeline] = STATE(613), + [sym_list] = STATE(613), + [sym_negated_command] = STATE(613), + [sym_test_command] = STATE(613), + [sym_declaration_command] = STATE(613), + [sym_unset_command] = STATE(613), + [sym_command] = STATE(613), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(681), + [sym_variable_assignment] = STATE(614), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1182), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(1083), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -53774,7 +51578,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(5532), + [anon_sym_RBRACE] = ACTIONS(4919), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -53804,752 +51608,1037 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2023] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_EQ_TILDE] = ACTIONS(2609), - [anon_sym_EQ_EQ] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_GT] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2609), + [1814] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2395), + [anon_sym_AMP_AMP] = ACTIONS(2395), + [anon_sym_PIPE_PIPE] = ACTIONS(2395), + [anon_sym_EQ_TILDE] = ACTIONS(2395), + [anon_sym_EQ_EQ] = ACTIONS(2395), + [anon_sym_EQ] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), + [anon_sym_BANG_EQ] = ACTIONS(2395), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2609), + [sym_test_operator] = ACTIONS(2395), }, - [2024] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), + [1815] = { + [sym__concat] = ACTIONS(1648), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1648), + [anon_sym_AMP_AMP] = ACTIONS(1648), + [anon_sym_PIPE_PIPE] = ACTIONS(1648), + [anon_sym_EQ_TILDE] = ACTIONS(1648), + [anon_sym_EQ_EQ] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_BANG_EQ] = ACTIONS(1648), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1754), + [sym_test_operator] = ACTIONS(1648), }, - [2025] = { - [aux_sym_concatenation_repeat1] = STATE(2025), - [sym__concat] = ACTIONS(5534), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), + [1816] = { + [aux_sym_concatenation_repeat1] = STATE(1816), + [sym__concat] = ACTIONS(4921), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1648), + [anon_sym_AMP_AMP] = ACTIONS(1648), + [anon_sym_PIPE_PIPE] = ACTIONS(1648), + [anon_sym_EQ_TILDE] = ACTIONS(1648), + [anon_sym_EQ_EQ] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_BANG_EQ] = ACTIONS(1648), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1754), + [sym_test_operator] = ACTIONS(1648), }, - [2026] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [anon_sym_EQ_TILDE] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1761), - [anon_sym_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_BANG_EQ] = ACTIONS(1761), + [1817] = { + [sym__concat] = ACTIONS(1655), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_EQ_TILDE] = ACTIONS(1655), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_BANG_EQ] = ACTIONS(1655), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1761), + [sym_test_operator] = ACTIONS(1655), }, - [2027] = { - [anon_sym_DQUOTE] = ACTIONS(5537), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [1818] = { + [anon_sym_DQUOTE] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, - [2028] = { - [sym_concatenation] = STATE(2389), - [sym_string] = STATE(2388), - [sym_simple_expansion] = STATE(2388), - [sym_string_expansion] = STATE(2388), - [sym_expansion] = STATE(2388), - [sym_command_substitution] = STATE(2388), - [sym_process_substitution] = STATE(2388), - [anon_sym_RBRACE] = ACTIONS(5539), - [sym__special_characters] = ACTIONS(5541), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(5543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), + [1819] = { + [sym_concatenation] = STATE(2121), + [sym_string] = STATE(2120), + [sym_simple_expansion] = STATE(2120), + [sym_string_expansion] = STATE(2120), + [sym_expansion] = STATE(2120), + [sym_command_substitution] = STATE(2120), + [sym_process_substitution] = STATE(2120), + [anon_sym_RBRACE] = ACTIONS(4926), + [sym__special_characters] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(4930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5543), + [sym_word] = ACTIONS(4930), }, - [2029] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_EQ_TILDE] = ACTIONS(1846), - [anon_sym_EQ_EQ] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [anon_sym_BANG_EQ] = ACTIONS(1846), + [1820] = { + [sym__concat] = ACTIONS(1748), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1748), + [anon_sym_AMP_AMP] = ACTIONS(1748), + [anon_sym_PIPE_PIPE] = ACTIONS(1748), + [anon_sym_EQ_TILDE] = ACTIONS(1748), + [anon_sym_EQ_EQ] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_GT] = ACTIONS(1748), + [anon_sym_BANG_EQ] = ACTIONS(1748), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1846), + [sym_test_operator] = ACTIONS(1748), }, - [2030] = { + [1821] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5545), + [sym_regex_without_right_brace] = ACTIONS(4932), }, - [2031] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5547), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1822] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2032] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(5549), + [1823] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(4936), [sym_comment] = ACTIONS(53), }, - [2033] = { - [sym_concatenation] = STATE(2395), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2395), - [anon_sym_RBRACE] = ACTIONS(5551), - [anon_sym_EQ] = ACTIONS(5553), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5555), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5557), - [anon_sym_COLON] = ACTIONS(5553), - [anon_sym_COLON_QMARK] = ACTIONS(5553), - [anon_sym_COLON_DASH] = ACTIONS(5553), - [anon_sym_PERCENT] = ACTIONS(5553), - [anon_sym_DASH] = ACTIONS(5553), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1824] = { + [sym_concatenation] = STATE(2127), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2127), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4940), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_COLON_QMARK] = ACTIONS(4940), + [anon_sym_COLON_DASH] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2034] = { - [sym_concatenation] = STATE(2398), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2398), - [anon_sym_RBRACE] = ACTIONS(5559), - [anon_sym_EQ] = ACTIONS(5561), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5565), - [anon_sym_COLON] = ACTIONS(5561), - [anon_sym_COLON_QMARK] = ACTIONS(5561), - [anon_sym_COLON_DASH] = ACTIONS(5561), - [anon_sym_PERCENT] = ACTIONS(5561), - [anon_sym_DASH] = ACTIONS(5561), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1825] = { + [sym_concatenation] = STATE(2130), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2130), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4948), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_COLON_QMARK] = ACTIONS(4948), + [anon_sym_COLON_DASH] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2035] = { - [sym_concatenation] = STATE(2400), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2400), - [anon_sym_RBRACE] = ACTIONS(5539), - [anon_sym_EQ] = ACTIONS(5567), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5569), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5571), - [anon_sym_COLON] = ACTIONS(5567), - [anon_sym_COLON_QMARK] = ACTIONS(5567), - [anon_sym_COLON_DASH] = ACTIONS(5567), - [anon_sym_PERCENT] = ACTIONS(5567), - [anon_sym_DASH] = ACTIONS(5567), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1826] = { + [sym_concatenation] = STATE(2132), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2132), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4954), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(4956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4954), + [anon_sym_COLON_QMARK] = ACTIONS(4954), + [anon_sym_COLON_DASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2036] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_EQ_TILDE] = ACTIONS(1914), - [anon_sym_EQ_EQ] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_GT] = ACTIONS(1914), - [anon_sym_BANG_EQ] = ACTIONS(1914), + [1827] = { + [sym__concat] = ACTIONS(1816), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_EQ_TILDE] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_GT] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1816), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1914), + [sym_test_operator] = ACTIONS(1816), }, - [2037] = { + [1828] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5573), + [sym_regex_without_right_brace] = ACTIONS(4960), }, - [2038] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5575), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1829] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2039] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1922), - [anon_sym_AMP_AMP] = ACTIONS(1922), - [anon_sym_PIPE_PIPE] = ACTIONS(1922), - [anon_sym_EQ_TILDE] = ACTIONS(1922), - [anon_sym_EQ_EQ] = ACTIONS(1922), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG_EQ] = ACTIONS(1922), + [1830] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_EQ_TILDE] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_GT] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1824), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1922), + [sym_test_operator] = ACTIONS(1824), }, - [2040] = { + [1831] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5577), + [sym_regex_without_right_brace] = ACTIONS(4964), }, - [2041] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5539), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1832] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2042] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_EQ_TILDE] = ACTIONS(2066), - [anon_sym_EQ_EQ] = ACTIONS(2066), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_BANG_EQ] = ACTIONS(2066), + [1833] = { + [sym__concat] = ACTIONS(1830), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1830), + [anon_sym_AMP_AMP] = ACTIONS(1830), + [anon_sym_PIPE_PIPE] = ACTIONS(1830), + [anon_sym_EQ_TILDE] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_GT] = ACTIONS(1830), + [anon_sym_BANG_EQ] = ACTIONS(1830), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2066), + [sym_test_operator] = ACTIONS(1830), }, - [2043] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [anon_sym_EQ_TILDE] = ACTIONS(2132), - [anon_sym_EQ_EQ] = ACTIONS(2132), - [anon_sym_EQ] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2132), - [anon_sym_GT] = ACTIONS(2132), - [anon_sym_BANG_EQ] = ACTIONS(2132), + [1834] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4966), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2132), + [sym_word] = ACTIONS(819), }, - [2044] = { - [anon_sym_esac] = ACTIONS(5579), - [anon_sym_PIPE] = ACTIONS(5579), - [anon_sym_RPAREN] = ACTIONS(5579), - [anon_sym_SEMI_SEMI] = ACTIONS(5579), - [anon_sym_PIPE_AMP] = ACTIONS(5579), - [anon_sym_AMP_AMP] = ACTIONS(5579), - [anon_sym_PIPE_PIPE] = ACTIONS(5579), + [1835] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_SEMI_SEMI] = ACTIONS(4970), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5579), - [anon_sym_LF] = ACTIONS(5581), - [anon_sym_AMP] = ACTIONS(5579), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_LF] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4970), }, - [2045] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_EQ_TILDE] = ACTIONS(2660), - [anon_sym_EQ_EQ] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2660), - [anon_sym_GT] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2660), + [1836] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_SEMI_SEMI] = ACTIONS(4970), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_LF] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4970), + }, + [1837] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(4966), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2660), + [sym_word] = ACTIONS(819), }, - [2046] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_EQ_TILDE] = ACTIONS(2660), - [anon_sym_EQ_EQ] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2660), - [anon_sym_GT] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2660), + [1838] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4974), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(4968), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_LF] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4974), + }, + [1839] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(4974), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_LF] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4974), + }, + [1840] = { + [sym__concat] = ACTIONS(1864), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_EQ_TILDE] = ACTIONS(1864), + [anon_sym_EQ_EQ] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1864), + [anon_sym_BANG_EQ] = ACTIONS(1864), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2660), + [sym_test_operator] = ACTIONS(1864), }, - [2047] = { - [sym_do_group] = STATE(2404), - [sym_compound_statement] = STATE(2404), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(3656), + [1841] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1842] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4980), + [anon_sym_SEMI_SEMI] = ACTIONS(4982), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_LF] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4982), + }, + [1843] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(4980), + [anon_sym_SEMI_SEMI] = ACTIONS(4982), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_LF] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4982), + }, + [1844] = { + [anon_sym_esac] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_SEMI_SEMI] = ACTIONS(4986), + [anon_sym_PIPE_AMP] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_BQUOTE] = ACTIONS(4986), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_LF] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + }, + [1845] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_EQ_TILDE] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2466), + }, + [1846] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_EQ_TILDE] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2466), + }, + [1847] = { + [sym_do_group] = STATE(2141), + [sym_compound_statement] = STATE(2141), + [anon_sym_do] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(3252), [sym_comment] = ACTIONS(53), }, - [2048] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_esac] = ACTIONS(4166), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_SEMI_SEMI] = ACTIONS(4166), - [anon_sym_PIPE_AMP] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_EQ_TILDE] = ACTIONS(4166), - [anon_sym_EQ_EQ] = ACTIONS(4166), - [anon_sym_EQ] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4166), - [anon_sym_GT] = ACTIONS(4166), - [anon_sym_BANG_EQ] = ACTIONS(4166), + [1848] = { + [sym__concat] = ACTIONS(3802), + [anon_sym_esac] = ACTIONS(3804), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_SEMI_SEMI] = ACTIONS(3804), + [anon_sym_PIPE_AMP] = ACTIONS(3804), + [anon_sym_AMP_AMP] = ACTIONS(3804), + [anon_sym_PIPE_PIPE] = ACTIONS(3804), + [anon_sym_EQ_TILDE] = ACTIONS(3804), + [anon_sym_EQ_EQ] = ACTIONS(3804), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_GT] = ACTIONS(3804), + [anon_sym_BANG_EQ] = ACTIONS(3804), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4166), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4166), + [sym_test_operator] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3804), }, - [2049] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_esac] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE_PIPE] = ACTIONS(4174), - [anon_sym_EQ_TILDE] = ACTIONS(4174), - [anon_sym_EQ_EQ] = ACTIONS(4174), - [anon_sym_EQ] = ACTIONS(4174), - [anon_sym_LT] = ACTIONS(4174), - [anon_sym_GT] = ACTIONS(4174), - [anon_sym_BANG_EQ] = ACTIONS(4174), + [1849] = { + [sym__concat] = ACTIONS(3810), + [anon_sym_esac] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3812), + [anon_sym_SEMI_SEMI] = ACTIONS(3812), + [anon_sym_PIPE_AMP] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3812), + [anon_sym_EQ_TILDE] = ACTIONS(3812), + [anon_sym_EQ_EQ] = ACTIONS(3812), + [anon_sym_EQ] = ACTIONS(3812), + [anon_sym_LT] = ACTIONS(3812), + [anon_sym_GT] = ACTIONS(3812), + [anon_sym_BANG_EQ] = ACTIONS(3812), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4174), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4174), + [sym_test_operator] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_LF] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3812), }, - [2050] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_esac] = ACTIONS(4261), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_SEMI_SEMI] = ACTIONS(4261), - [anon_sym_PIPE_AMP] = ACTIONS(4261), - [anon_sym_AMP_AMP] = ACTIONS(4261), - [anon_sym_PIPE_PIPE] = ACTIONS(4261), - [anon_sym_EQ_TILDE] = ACTIONS(4261), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_EQ] = ACTIONS(4261), - [anon_sym_LT] = ACTIONS(4261), - [anon_sym_GT] = ACTIONS(4261), - [anon_sym_BANG_EQ] = ACTIONS(4261), + [1850] = { + [sym__concat] = ACTIONS(3909), + [anon_sym_esac] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [anon_sym_PIPE_AMP] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_EQ_TILDE] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4261), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), + [sym_test_operator] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), }, - [2051] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5583), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1851] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2052] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5585), + [1852] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4992), [sym_comment] = ACTIONS(53), }, - [2053] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5587), + [1853] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4994), [sym_comment] = ACTIONS(53), }, - [2054] = { - [anon_sym_RBRACE] = ACTIONS(5587), + [1854] = { + [anon_sym_RBRACE] = ACTIONS(4994), [sym_comment] = ACTIONS(53), }, - [2055] = { - [sym_concatenation] = STATE(2409), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2409), - [anon_sym_RBRACE] = ACTIONS(5589), - [anon_sym_EQ] = ACTIONS(5591), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5593), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5591), - [anon_sym_COLON_QMARK] = ACTIONS(5591), - [anon_sym_COLON_DASH] = ACTIONS(5591), - [anon_sym_PERCENT] = ACTIONS(5591), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1855] = { + [sym_concatenation] = STATE(2146), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2146), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4998), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_COLON_QMARK] = ACTIONS(4998), + [anon_sym_COLON_DASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2056] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_esac] = ACTIONS(4277), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_SEMI_SEMI] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_EQ_TILDE] = ACTIONS(4277), - [anon_sym_EQ_EQ] = ACTIONS(4277), - [anon_sym_EQ] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_BANG_EQ] = ACTIONS(4277), + [1856] = { + [sym__concat] = ACTIONS(3945), + [anon_sym_esac] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3947), + [anon_sym_PIPE_AMP] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_EQ_TILDE] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), + [sym_test_operator] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3947), }, - [2057] = { - [sym_concatenation] = STATE(2411), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2411), - [anon_sym_RBRACE] = ACTIONS(5595), - [anon_sym_EQ] = ACTIONS(5597), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5599), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5597), - [anon_sym_COLON_QMARK] = ACTIONS(5597), - [anon_sym_COLON_DASH] = ACTIONS(5597), - [anon_sym_PERCENT] = ACTIONS(5597), - [anon_sym_DASH] = ACTIONS(5597), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1857] = { + [sym_concatenation] = STATE(2148), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2148), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5004), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_COLON_QMARK] = ACTIONS(5004), + [anon_sym_COLON_DASH] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2058] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_esac] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [anon_sym_PIPE_AMP] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [anon_sym_EQ_TILDE] = ACTIONS(4287), - [anon_sym_EQ_EQ] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_BANG_EQ] = ACTIONS(4287), + [1858] = { + [sym__concat] = ACTIONS(3955), + [anon_sym_esac] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3957), + [anon_sym_SEMI_SEMI] = ACTIONS(3957), + [anon_sym_PIPE_AMP] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_EQ_TILDE] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3957), + [anon_sym_GT] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(4287), + [sym_test_operator] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), }, - [2059] = { - [sym_concatenation] = STATE(2413), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2413), - [anon_sym_RBRACE] = ACTIONS(5601), - [anon_sym_EQ] = ACTIONS(5603), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5605), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5603), - [anon_sym_COLON_QMARK] = ACTIONS(5603), - [anon_sym_COLON_DASH] = ACTIONS(5603), - [anon_sym_PERCENT] = ACTIONS(5603), - [anon_sym_DASH] = ACTIONS(5603), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1859] = { + [sym_concatenation] = STATE(2150), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2150), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5010), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5010), + [anon_sym_COLON_QMARK] = ACTIONS(5010), + [anon_sym_COLON_DASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2060] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_esac] = ACTIONS(4297), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [anon_sym_EQ_TILDE] = ACTIONS(4297), - [anon_sym_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_BANG_EQ] = ACTIONS(4297), + [1860] = { + [sym__concat] = ACTIONS(3965), + [anon_sym_esac] = ACTIONS(3967), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3967), + [anon_sym_EQ_TILDE] = ACTIONS(3967), + [anon_sym_EQ_EQ] = ACTIONS(3967), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_GT] = ACTIONS(3967), + [anon_sym_BANG_EQ] = ACTIONS(3967), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4297), + [sym_test_operator] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), }, - [2061] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5607), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1861] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2062] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_esac] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4303), - [anon_sym_EQ] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4303), - [anon_sym_GT] = ACTIONS(4303), - [anon_sym_BANG_EQ] = ACTIONS(4303), + [1862] = { + [sym__concat] = ACTIONS(3971), + [anon_sym_esac] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3973), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_EQ_TILDE] = ACTIONS(3973), + [anon_sym_EQ_EQ] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3973), + [anon_sym_GT] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4303), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4303), + [sym_test_operator] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_LF] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3973), }, - [2063] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5609), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [1863] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2064] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(5611), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_EQ_TILDE] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_BANG_EQ] = ACTIONS(3684), + [1864] = { + [sym__concat] = ACTIONS(3977), + [anon_sym_esac] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_SEMI_SEMI] = ACTIONS(3979), + [anon_sym_PIPE_AMP] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_EQ_TILDE] = ACTIONS(3979), + [anon_sym_EQ_EQ] = ACTIONS(3979), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_BANG_EQ] = ACTIONS(3979), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_LF] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3979), + }, + [1865] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4003), + [anon_sym_PIPE_AMP] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_PIPE_PIPE] = ACTIONS(4003), + [anon_sym_EQ_TILDE] = ACTIONS(4003), + [anon_sym_EQ_EQ] = ACTIONS(4003), + [anon_sym_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_BANG_EQ] = ACTIONS(4003), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4003), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [1866] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(5018), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_EQ_TILDE] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3282), + [anon_sym_EQ] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_BANG_EQ] = ACTIONS(3280), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3684), + [sym_test_operator] = ACTIONS(3280), }, - [2065] = { - [sym__terminated_statement] = STATE(1145), + [1867] = { + [sym__terminated_statement] = STATE(1042), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -54567,24 +52656,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1145), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(1042), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(5613), - [anon_sym_elif] = ACTIONS(5613), - [anon_sym_else] = ACTIONS(5613), + [anon_sym_fi] = ACTIONS(5020), + [anon_sym_elif] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -54617,72 +52706,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2066] = { - [anon_sym_esac] = ACTIONS(5615), - [anon_sym_PIPE] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_SEMI_SEMI] = ACTIONS(5615), - [anon_sym_PIPE_AMP] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(5615), - [anon_sym_PIPE_PIPE] = ACTIONS(5615), + [1868] = { + [anon_sym_esac] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_RPAREN] = ACTIONS(5022), + [anon_sym_SEMI_SEMI] = ACTIONS(5022), + [anon_sym_PIPE_AMP] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5022), + [anon_sym_BQUOTE] = ACTIONS(5022), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5615), - [anon_sym_LF] = ACTIONS(5617), - [anon_sym_AMP] = ACTIONS(5615), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_LF] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5022), }, - [2067] = { - [aux_sym_concatenation_repeat1] = STATE(1635), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), + [1869] = { + [aux_sym_concatenation_repeat1] = STATE(1492), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), [sym_comment] = ACTIONS(53), }, - [2068] = { - [aux_sym_concatenation_repeat1] = STATE(1635), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_RPAREN] = ACTIONS(5621), + [1870] = { + [aux_sym_concatenation_repeat1] = STATE(1492), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), [sym_comment] = ACTIONS(53), }, - [2069] = { - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_RPAREN] = ACTIONS(5621), + [1871] = { + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), [sym_comment] = ACTIONS(53), }, - [2070] = { + [1872] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(5623), - [anon_sym_PLUS_EQ] = ACTIONS(5623), + [anon_sym_EQ] = ACTIONS(5030), + [anon_sym_PLUS_EQ] = ACTIONS(5030), [sym_comment] = ACTIONS(53), }, - [2071] = { - [sym__terminated_statement] = STATE(2418), - [sym_for_statement] = STATE(39), - [sym_c_style_for_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_subshell] = STATE(39), - [sym_pipeline] = STATE(39), - [sym_list] = STATE(39), - [sym_negated_command] = STATE(39), - [sym_test_command] = STATE(39), - [sym_declaration_command] = STATE(39), - [sym_unset_command] = STATE(39), - [sym_command] = STATE(39), + [1873] = { + [sym__terminated_statement] = STATE(2155), + [sym_for_statement] = STATE(40), + [sym_c_style_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_negated_command] = STATE(40), + [sym_test_command] = STATE(40), + [sym_declaration_command] = STATE(40), + [sym_unset_command] = STATE(40), + [sym_command] = STATE(40), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(40), + [sym_variable_assignment] = STATE(41), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -54720,45 +52810,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2072] = { - [anon_sym_esac] = ACTIONS(5625), - [sym__special_characters] = ACTIONS(5627), - [anon_sym_DQUOTE] = ACTIONS(5627), - [anon_sym_DOLLAR] = ACTIONS(5629), - [sym_raw_string] = ACTIONS(5627), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5627), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5627), - [anon_sym_BQUOTE] = ACTIONS(5627), - [anon_sym_LT_LPAREN] = ACTIONS(5627), - [anon_sym_GT_LPAREN] = ACTIONS(5627), + [1874] = { + [anon_sym_esac] = ACTIONS(5032), + [sym__special_characters] = ACTIONS(5034), + [anon_sym_DQUOTE] = ACTIONS(5034), + [anon_sym_DOLLAR] = ACTIONS(5036), + [sym_raw_string] = ACTIONS(5034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5034), + [anon_sym_BQUOTE] = ACTIONS(5034), + [anon_sym_LT_LPAREN] = ACTIONS(5034), + [anon_sym_GT_LPAREN] = ACTIONS(5034), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5629), + [sym_word] = ACTIONS(5036), }, - [2073] = { + [1875] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5631), + [sym_word] = ACTIONS(5038), }, - [2074] = { - [sym_subshell] = STATE(70), - [sym_test_command] = STATE(70), - [sym_command] = STATE(70), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2087), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_command_repeat1] = STATE(2087), + [1876] = { + [sym_subshell] = STATE(71), + [sym_test_command] = STATE(71), + [sym_command] = STATE(71), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_command_repeat1] = STATE(1889), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -54766,30 +52856,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), + [sym__special_characters] = ACTIONS(4316), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4318), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4796), + [sym_word] = ACTIONS(4318), }, - [2075] = { - [sym__expression] = STATE(2420), - [sym_binary_expression] = STATE(2420), - [sym_unary_expression] = STATE(2420), - [sym_parenthesized_expression] = STATE(2420), - [sym_concatenation] = STATE(2420), - [sym_string] = STATE(77), - [sym_simple_expansion] = STATE(77), - [sym_string_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [sym_process_substitution] = STATE(77), + [1877] = { + [sym__expression] = STATE(2157), + [sym_binary_expression] = STATE(2157), + [sym_unary_expression] = STATE(2157), + [sym_parenthesized_expression] = STATE(2157), + [sym_concatenation] = STATE(2157), + [sym_string] = STATE(78), + [sym_simple_expansion] = STATE(78), + [sym_string_expansion] = STATE(78), + [sym_expansion] = STATE(78), + [sym_command_substitution] = STATE(78), + [sym_process_substitution] = STATE(78), [anon_sym_LPAREN] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(113), [sym__special_characters] = ACTIONS(115), @@ -54805,18 +52895,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(131), [sym_test_operator] = ACTIONS(133), }, - [2076] = { - [sym__expression] = STATE(2421), - [sym_binary_expression] = STATE(2421), - [sym_unary_expression] = STATE(2421), - [sym_parenthesized_expression] = STATE(2421), - [sym_concatenation] = STATE(2421), - [sym_string] = STATE(88), - [sym_simple_expansion] = STATE(88), - [sym_string_expansion] = STATE(88), - [sym_expansion] = STATE(88), - [sym_command_substitution] = STATE(88), - [sym_process_substitution] = STATE(88), + [1878] = { + [sym__expression] = STATE(2158), + [sym_binary_expression] = STATE(2158), + [sym_unary_expression] = STATE(2158), + [sym_parenthesized_expression] = STATE(2158), + [sym_concatenation] = STATE(2158), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), [anon_sym_LPAREN] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(137), [sym__special_characters] = ACTIONS(139), @@ -54832,73 +52922,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(155), [sym_test_operator] = ACTIONS(157), }, - [2077] = { - [sym_variable_assignment] = STATE(2432), - [sym_subscript] = STATE(2433), - [sym_concatenation] = STATE(2432), - [sym_string] = STATE(2426), - [sym_simple_expansion] = STATE(2426), - [sym_string_expansion] = STATE(2426), - [sym_expansion] = STATE(2426), - [sym_command_substitution] = STATE(2426), - [sym_process_substitution] = STATE(2426), - [aux_sym_declaration_command_repeat1] = STATE(2434), - [sym_variable_name] = ACTIONS(5633), + [1879] = { + [sym_variable_assignment] = STATE(2170), + [sym_subscript] = STATE(2169), + [sym_concatenation] = STATE(2170), + [sym_string] = STATE(2163), + [sym_simple_expansion] = STATE(2163), + [sym_string_expansion] = STATE(2163), + [sym_expansion] = STATE(2163), + [sym_command_substitution] = STATE(2163), + [sym_process_substitution] = STATE(2163), + [aux_sym_declaration_command_repeat1] = STATE(2170), + [sym_variable_name] = ACTIONS(5040), [anon_sym_esac] = ACTIONS(161), [anon_sym_PIPE] = ACTIONS(161), [anon_sym_SEMI_SEMI] = ACTIONS(161), [anon_sym_PIPE_AMP] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(161), [anon_sym_PIPE_PIPE] = ACTIONS(161), - [sym__special_characters] = ACTIONS(5635), - [anon_sym_DQUOTE] = ACTIONS(5637), - [anon_sym_DOLLAR] = ACTIONS(5639), - [sym_raw_string] = ACTIONS(5641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5643), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5645), - [anon_sym_BQUOTE] = ACTIONS(5647), - [anon_sym_LT_LPAREN] = ACTIONS(5649), - [anon_sym_GT_LPAREN] = ACTIONS(5649), + [sym__special_characters] = ACTIONS(5042), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5046), + [sym_raw_string] = ACTIONS(5048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5054), + [anon_sym_LT_LPAREN] = ACTIONS(5056), + [anon_sym_GT_LPAREN] = ACTIONS(5056), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5651), - [sym_word] = ACTIONS(5641), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5058), + [sym_word] = ACTIONS(5048), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_LF] = ACTIONS(183), [anon_sym_AMP] = ACTIONS(161), }, - [2078] = { - [sym_concatenation] = STATE(2444), - [sym_string] = STATE(2438), - [sym_simple_expansion] = STATE(2438), - [sym_string_expansion] = STATE(2438), - [sym_expansion] = STATE(2438), - [sym_command_substitution] = STATE(2438), - [sym_process_substitution] = STATE(2438), - [aux_sym_unset_command_repeat1] = STATE(2444), + [1880] = { + [sym_concatenation] = STATE(2180), + [sym_string] = STATE(2174), + [sym_simple_expansion] = STATE(2174), + [sym_string_expansion] = STATE(2174), + [sym_expansion] = STATE(2174), + [sym_command_substitution] = STATE(2174), + [sym_process_substitution] = STATE(2174), + [aux_sym_unset_command_repeat1] = STATE(2180), [anon_sym_esac] = ACTIONS(185), [anon_sym_PIPE] = ACTIONS(185), [anon_sym_SEMI_SEMI] = ACTIONS(185), [anon_sym_PIPE_AMP] = ACTIONS(185), [anon_sym_AMP_AMP] = ACTIONS(185), [anon_sym_PIPE_PIPE] = ACTIONS(185), - [sym__special_characters] = ACTIONS(5653), - [anon_sym_DQUOTE] = ACTIONS(5655), - [anon_sym_DOLLAR] = ACTIONS(5657), - [sym_raw_string] = ACTIONS(5659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5663), - [anon_sym_BQUOTE] = ACTIONS(5665), - [anon_sym_LT_LPAREN] = ACTIONS(5667), - [anon_sym_GT_LPAREN] = ACTIONS(5667), + [sym__special_characters] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR] = ACTIONS(5064), + [sym_raw_string] = ACTIONS(5066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5070), + [anon_sym_BQUOTE] = ACTIONS(5072), + [anon_sym_LT_LPAREN] = ACTIONS(5074), + [anon_sym_GT_LPAREN] = ACTIONS(5074), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5669), - [sym_word] = ACTIONS(5659), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5076), + [sym_word] = ACTIONS(5066), [anon_sym_SEMI] = ACTIONS(185), [anon_sym_LF] = ACTIONS(205), [anon_sym_AMP] = ACTIONS(185), }, - [2079] = { - [aux_sym_concatenation_repeat1] = STATE(2445), + [1881] = { + [aux_sym_concatenation_repeat1] = STATE(2181), [sym__simple_heredoc_body] = ACTIONS(223), [sym__heredoc_body_beginning] = ACTIONS(223), [sym_file_descriptor] = ACTIONS(223), @@ -54936,8 +53026,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(227), }, - [2080] = { - [aux_sym_concatenation_repeat1] = STATE(2445), + [1882] = { + [aux_sym_concatenation_repeat1] = STATE(2181), [sym__simple_heredoc_body] = ACTIONS(249), [sym__heredoc_body_beginning] = ACTIONS(249), [sym_file_descriptor] = ACTIONS(249), @@ -54975,8 +53065,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(249), [anon_sym_AMP] = ACTIONS(251), }, - [2081] = { - [aux_sym_concatenation_repeat1] = STATE(2445), + [1883] = { + [aux_sym_concatenation_repeat1] = STATE(2181), [sym__simple_heredoc_body] = ACTIONS(249), [sym__heredoc_body_beginning] = ACTIONS(249), [sym_file_descriptor] = ACTIONS(249), @@ -54984,7 +53074,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_esac] = ACTIONS(251), [anon_sym_PIPE] = ACTIONS(251), [anon_sym_SEMI_SEMI] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(5671), + [anon_sym_LPAREN] = ACTIONS(5078), [anon_sym_PIPE_AMP] = ACTIONS(251), [anon_sym_AMP_AMP] = ACTIONS(251), [anon_sym_PIPE_PIPE] = ACTIONS(251), @@ -55015,153 +53105,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(249), [anon_sym_AMP] = ACTIONS(251), }, - [2082] = { - [anon_sym_esac] = ACTIONS(5625), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(5675), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [1884] = { + [anon_sym_esac] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5082), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2083] = { - [sym_file_redirect] = STATE(2456), - [sym_heredoc_redirect] = STATE(2456), - [sym_heredoc_body] = STATE(201), - [sym_herestring_redirect] = STATE(2456), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(2455), - [sym_simple_expansion] = STATE(2455), - [sym_string_expansion] = STATE(2455), - [sym_expansion] = STATE(2455), - [sym_command_substitution] = STATE(2455), - [sym_process_substitution] = STATE(2455), - [aux_sym_while_statement_repeat1] = STATE(2456), - [aux_sym_command_repeat2] = STATE(2457), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5679), - [anon_sym_esac] = ACTIONS(345), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_EQ_TILDE] = ACTIONS(5681), - [anon_sym_EQ_EQ] = ACTIONS(5681), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_AMP_GT] = ACTIONS(5683), - [anon_sym_AMP_GT_GT] = ACTIONS(5683), - [anon_sym_LT_AMP] = ACTIONS(5683), - [anon_sym_GT_AMP] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(5685), - [sym__special_characters] = ACTIONS(5687), - [anon_sym_DQUOTE] = ACTIONS(357), + [1885] = { + [sym_file_redirect] = STATE(2192), + [sym_heredoc_redirect] = STATE(2192), + [sym_heredoc_body] = STATE(175), + [sym_herestring_redirect] = STATE(2192), + [sym_concatenation] = STATE(2193), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_while_statement_repeat1] = STATE(2192), + [aux_sym_command_repeat2] = STATE(2193), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(5086), + [anon_sym_esac] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(297), + [anon_sym_SEMI_SEMI] = ACTIONS(297), + [anon_sym_PIPE_AMP] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_PIPE_PIPE] = ACTIONS(297), + [anon_sym_EQ_TILDE] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5090), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(5092), + [sym__special_characters] = ACTIONS(5094), + [anon_sym_DQUOTE] = ACTIONS(309), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_raw_string] = ACTIONS(5096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5689), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym_LF] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(345), + [sym_word] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(297), + [anon_sym_LF] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(297), }, - [2084] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_esac] = ACTIONS(5625), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(5675), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), + [1886] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_esac] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5082), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2085] = { - [anon_sym_EQ] = ACTIONS(5623), - [anon_sym_PLUS_EQ] = ACTIONS(5623), + [1887] = { + [anon_sym_EQ] = ACTIONS(5030), + [anon_sym_PLUS_EQ] = ACTIONS(5030), [sym_comment] = ACTIONS(53), }, - [2086] = { - [sym__terminated_statement] = STATE(2461), - [sym_for_statement] = STATE(2459), - [sym_c_style_for_statement] = STATE(2459), - [sym_while_statement] = STATE(2459), - [sym_if_statement] = STATE(2459), - [sym_case_statement] = STATE(2459), - [sym_function_definition] = STATE(2459), - [sym_subshell] = STATE(2459), - [sym_pipeline] = STATE(2459), - [sym_list] = STATE(2459), - [sym_negated_command] = STATE(2459), - [sym_test_command] = STATE(2459), - [sym_declaration_command] = STATE(2459), - [sym_unset_command] = STATE(2459), - [sym_command] = STATE(2459), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2460), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_program_repeat1] = STATE(2461), - [aux_sym_command_repeat1] = STATE(2087), + [1888] = { + [sym__terminated_statement] = STATE(2197), + [sym_for_statement] = STATE(2195), + [sym_c_style_for_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_case_statement] = STATE(2195), + [sym_function_definition] = STATE(2195), + [sym_subshell] = STATE(2195), + [sym_pipeline] = STATE(2195), + [sym_list] = STATE(2195), + [sym_negated_command] = STATE(2195), + [sym_test_command] = STATE(2195), + [sym_declaration_command] = STATE(2195), + [sym_unset_command] = STATE(2195), + [sym_command] = STATE(2195), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(2196), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_program_repeat1] = STATE(2197), + [aux_sym_command_repeat1] = STATE(1889), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), + [sym_variable_name] = ACTIONS(4296), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), + [anon_sym_while] = ACTIONS(4298), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5625), - [anon_sym_SEMI_SEMI] = ACTIONS(5691), - [anon_sym_function] = ACTIONS(4782), + [anon_sym_esac] = ACTIONS(5032), + [anon_sym_SEMI_SEMI] = ACTIONS(5098), + [anon_sym_function] = ACTIONS(4304), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -55169,31 +53259,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), + [sym__special_characters] = ACTIONS(4316), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4318), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), + [sym_word] = ACTIONS(4320), }, - [2087] = { - [sym_command_name] = STATE(2462), - [sym_variable_assignment] = STATE(207), - [sym_subscript] = STATE(71), - [sym_file_redirect] = STATE(207), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_command_repeat1] = STATE(207), + [1889] = { + [sym_command_name] = STATE(2198), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_command_repeat1] = STATE(180), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(109), [anon_sym_LT] = ACTIONS(33), @@ -55203,273 +53293,5716 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(5693), + [sym__special_characters] = ACTIONS(5100), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4318), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4318), + }, + [1890] = { + [sym__terminated_statement] = STATE(2199), + [sym_for_statement] = STATE(2195), + [sym_c_style_for_statement] = STATE(2195), + [sym_while_statement] = STATE(2195), + [sym_if_statement] = STATE(2195), + [sym_case_statement] = STATE(2195), + [sym_function_definition] = STATE(2195), + [sym_subshell] = STATE(2195), + [sym_pipeline] = STATE(2195), + [sym_list] = STATE(2195), + [sym_negated_command] = STATE(2195), + [sym_test_command] = STATE(2195), + [sym_declaration_command] = STATE(2195), + [sym_unset_command] = STATE(2195), + [sym_command] = STATE(2195), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(2196), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_program_repeat1] = STATE(2199), + [aux_sym_command_repeat1] = STATE(1889), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5032), + [anon_sym_SEMI_SEMI] = ACTIONS(5098), + [anon_sym_function] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4320), + }, + [1891] = { + [aux_sym_case_item_repeat1] = STATE(1891), + [anon_sym_PIPE] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym_comment] = ACTIONS(53), + }, + [1892] = { + [aux_sym_concatenation_repeat1] = STATE(1892), + [sym__concat] = ACTIONS(2500), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + }, + [1893] = { + [anon_sym_esac] = ACTIONS(5105), + [sym__special_characters] = ACTIONS(5107), + [anon_sym_DQUOTE] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [sym_raw_string] = ACTIONS(5107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5107), + [anon_sym_BQUOTE] = ACTIONS(5107), + [anon_sym_LT_LPAREN] = ACTIONS(5107), + [anon_sym_GT_LPAREN] = ACTIONS(5107), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5109), + }, + [1894] = { + [anon_sym_esac] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5111), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [1895] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_esac] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5111), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [1896] = { + [sym__terminated_statement] = STATE(2197), + [sym_for_statement] = STATE(2202), + [sym_c_style_for_statement] = STATE(2202), + [sym_while_statement] = STATE(2202), + [sym_if_statement] = STATE(2202), + [sym_case_statement] = STATE(2202), + [sym_function_definition] = STATE(2202), + [sym_subshell] = STATE(2202), + [sym_pipeline] = STATE(2202), + [sym_list] = STATE(2202), + [sym_negated_command] = STATE(2202), + [sym_test_command] = STATE(2202), + [sym_declaration_command] = STATE(2202), + [sym_unset_command] = STATE(2202), + [sym_command] = STATE(2202), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(2203), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_program_repeat1] = STATE(2197), + [aux_sym_command_repeat1] = STATE(1889), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5105), + [anon_sym_SEMI_SEMI] = ACTIONS(5113), + [anon_sym_function] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4320), + }, + [1897] = { + [sym__terminated_statement] = STATE(2204), + [sym_for_statement] = STATE(2202), + [sym_c_style_for_statement] = STATE(2202), + [sym_while_statement] = STATE(2202), + [sym_if_statement] = STATE(2202), + [sym_case_statement] = STATE(2202), + [sym_function_definition] = STATE(2202), + [sym_subshell] = STATE(2202), + [sym_pipeline] = STATE(2202), + [sym_list] = STATE(2202), + [sym_negated_command] = STATE(2202), + [sym_test_command] = STATE(2202), + [sym_declaration_command] = STATE(2202), + [sym_unset_command] = STATE(2202), + [sym_command] = STATE(2202), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(2203), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_program_repeat1] = STATE(2204), + [aux_sym_command_repeat1] = STATE(1889), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5105), + [anon_sym_SEMI_SEMI] = ACTIONS(5113), + [anon_sym_function] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4320), + }, + [1898] = { + [anon_sym_esac] = ACTIONS(5115), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_RPAREN] = ACTIONS(5115), + [anon_sym_SEMI_SEMI] = ACTIONS(5115), + [anon_sym_PIPE_AMP] = ACTIONS(5115), + [anon_sym_AMP_AMP] = ACTIONS(5115), + [anon_sym_PIPE_PIPE] = ACTIONS(5115), + [anon_sym_BQUOTE] = ACTIONS(5115), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5115), + [anon_sym_LF] = ACTIONS(5117), + [anon_sym_AMP] = ACTIONS(5115), + }, + [1899] = { + [aux_sym_case_item_repeat1] = STATE(2206), + [aux_sym_concatenation_repeat1] = STATE(1492), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(5119), + [sym_comment] = ACTIONS(53), + }, + [1900] = { + [aux_sym_case_item_repeat1] = STATE(2208), + [aux_sym_concatenation_repeat1] = STATE(1492), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(5121), + [sym_comment] = ACTIONS(53), + }, + [1901] = { + [aux_sym_case_item_repeat1] = STATE(2208), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(5121), + [sym_comment] = ACTIONS(53), + }, + [1902] = { + [anon_sym_esac] = ACTIONS(5123), + [sym_comment] = ACTIONS(53), + }, + [1903] = { + [anon_sym_esac] = ACTIONS(5125), + [anon_sym_PIPE] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_SEMI_SEMI] = ACTIONS(5125), + [anon_sym_PIPE_AMP] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_BQUOTE] = ACTIONS(5125), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym_LF] = ACTIONS(5127), + [anon_sym_AMP] = ACTIONS(5125), + }, + [1904] = { + [anon_sym_esac] = ACTIONS(5129), + [sym_comment] = ACTIONS(53), + }, + [1905] = { + [sym__concat] = ACTIONS(4756), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_SEMI_SEMI] = ACTIONS(4758), + [sym__special_characters] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4758), + [anon_sym_LT_LPAREN] = ACTIONS(4758), + [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_LF] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4758), + }, + [1906] = { + [sym__concat] = ACTIONS(4764), + [anon_sym_in] = ACTIONS(4766), + [anon_sym_SEMI_SEMI] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), + [anon_sym_LT_LPAREN] = ACTIONS(4766), + [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_LF] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4766), + }, + [1907] = { + [sym__concat] = ACTIONS(4768), + [anon_sym_in] = ACTIONS(4770), + [anon_sym_SEMI_SEMI] = ACTIONS(4770), + [sym__special_characters] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), + [anon_sym_BQUOTE] = ACTIONS(4770), + [anon_sym_LT_LPAREN] = ACTIONS(4770), + [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_LF] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4770), + }, + [1908] = { + [sym__concat] = ACTIONS(4772), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_SEMI_SEMI] = ACTIONS(4774), + [sym__special_characters] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), + [anon_sym_BQUOTE] = ACTIONS(4774), + [anon_sym_LT_LPAREN] = ACTIONS(4774), + [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_LF] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4774), + }, + [1909] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1910] = { + [sym__concat] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4780), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [sym__special_characters] = ACTIONS(4780), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), + [anon_sym_BQUOTE] = ACTIONS(4780), + [anon_sym_LT_LPAREN] = ACTIONS(4780), + [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_LF] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + }, + [1911] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1912] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_in] = ACTIONS(4786), + [anon_sym_SEMI_SEMI] = ACTIONS(4786), + [sym__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), + [anon_sym_BQUOTE] = ACTIONS(4786), + [anon_sym_LT_LPAREN] = ACTIONS(4786), + [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_LF] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4786), + }, + [1913] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1914] = { + [sym__concat] = ACTIONS(4790), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + }, + [1915] = { + [sym__concat] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LF] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + }, + [1916] = { + [aux_sym_concatenation_repeat1] = STATE(1916), + [sym__concat] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1917] = { + [aux_sym_concatenation_repeat1] = STATE(1919), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [1918] = { + [aux_sym_concatenation_repeat1] = STATE(1919), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [1919] = { + [aux_sym_concatenation_repeat1] = STATE(2214), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [1920] = { + [aux_sym_concatenation_repeat1] = STATE(1922), + [sym_file_descriptor] = ACTIONS(955), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [1921] = { + [aux_sym_concatenation_repeat1] = STATE(1922), + [sym_file_descriptor] = ACTIONS(959), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [1922] = { + [aux_sym_concatenation_repeat1] = STATE(2215), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_RPAREN] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [1923] = { + [sym__concat] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_RBRACK] = ACTIONS(4756), + [anon_sym_EQ_TILDE] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4756), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4756), + }, + [1924] = { + [sym__concat] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_RBRACK] = ACTIONS(4764), + [anon_sym_EQ_TILDE] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4764), + [anon_sym_GT] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4764), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4764), + }, + [1925] = { + [sym__concat] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_EQ_TILDE] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4768), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4768), + }, + [1926] = { + [sym__concat] = ACTIONS(4772), + [anon_sym_AMP_AMP] = ACTIONS(4772), + [anon_sym_PIPE_PIPE] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4772), + [anon_sym_EQ_TILDE] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4772), + [anon_sym_GT] = ACTIONS(4772), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4772), + }, + [1927] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1928] = { + [sym__concat] = ACTIONS(4778), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE_PIPE] = ACTIONS(4778), + [anon_sym_RBRACK] = ACTIONS(4778), + [anon_sym_EQ_TILDE] = ACTIONS(4778), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4778), + }, + [1929] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1930] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_RBRACK] = ACTIONS(4784), + [anon_sym_EQ_TILDE] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4784), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4784), + }, + [1931] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1932] = { + [sym__concat] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_RBRACK] = ACTIONS(4790), + [anon_sym_EQ_TILDE] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4790), + }, + [1933] = { + [sym__concat] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_RBRACK] = ACTIONS(4794), + [anon_sym_EQ_TILDE] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4794), + }, + [1934] = { + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1648), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1935] = { + [aux_sym_concatenation_repeat1] = STATE(1935), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(5143), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [1936] = { + [sym_file_descriptor] = ACTIONS(1655), + [sym__concat] = ACTIONS(1655), + [anon_sym_esac] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [anon_sym_PIPE_AMP] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym_AMP_GT] = ACTIONS(1657), + [anon_sym_AMP_GT_GT] = ACTIONS(1657), + [anon_sym_LT_AMP] = ACTIONS(1657), + [anon_sym_GT_AMP] = ACTIONS(1657), + [anon_sym_LT_LT] = ACTIONS(1657), + [anon_sym_LT_LT_DASH] = ACTIONS(1657), + [anon_sym_LT_LT_LT] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + }, + [1937] = { + [anon_sym_DQUOTE] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [1938] = { + [sym_concatenation] = STATE(2223), + [sym_string] = STATE(2222), + [sym_simple_expansion] = STATE(2222), + [sym_string_expansion] = STATE(2222), + [sym_expansion] = STATE(2222), + [sym_command_substitution] = STATE(2222), + [sym_process_substitution] = STATE(2222), + [anon_sym_RBRACE] = ACTIONS(5148), + [sym__special_characters] = ACTIONS(5150), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(5152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5152), + }, + [1939] = { + [sym_file_descriptor] = ACTIONS(1748), + [sym__concat] = ACTIONS(1748), + [anon_sym_esac] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_SEMI_SEMI] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(1750), + [anon_sym_AMP_GT] = ACTIONS(1750), + [anon_sym_AMP_GT_GT] = ACTIONS(1750), + [anon_sym_LT_AMP] = ACTIONS(1750), + [anon_sym_GT_AMP] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1750), + [anon_sym_LT_LT_DASH] = ACTIONS(1750), + [anon_sym_LT_LT_LT] = ACTIONS(1750), + [anon_sym_BQUOTE] = ACTIONS(1750), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LF] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1750), + }, + [1940] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5154), + }, + [1941] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1942] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(5158), + [sym_comment] = ACTIONS(53), + }, + [1943] = { + [sym_concatenation] = STATE(2229), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2229), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_EQ] = ACTIONS(5162), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(5166), + [anon_sym_COLON] = ACTIONS(5162), + [anon_sym_COLON_QMARK] = ACTIONS(5162), + [anon_sym_COLON_DASH] = ACTIONS(5162), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_DASH] = ACTIONS(5162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1944] = { + [sym_concatenation] = STATE(2232), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2232), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5170), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_COLON] = ACTIONS(5170), + [anon_sym_COLON_QMARK] = ACTIONS(5170), + [anon_sym_COLON_DASH] = ACTIONS(5170), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1945] = { + [sym_concatenation] = STATE(2234), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2234), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_EQ] = ACTIONS(5176), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_COLON_QMARK] = ACTIONS(5176), + [anon_sym_COLON_DASH] = ACTIONS(5176), + [anon_sym_PERCENT] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1946] = { + [sym_file_descriptor] = ACTIONS(1816), + [sym__concat] = ACTIONS(1816), + [anon_sym_esac] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_GT] = ACTIONS(1818), + [anon_sym_GT_GT] = ACTIONS(1818), + [anon_sym_AMP_GT] = ACTIONS(1818), + [anon_sym_AMP_GT_GT] = ACTIONS(1818), + [anon_sym_LT_AMP] = ACTIONS(1818), + [anon_sym_GT_AMP] = ACTIONS(1818), + [anon_sym_LT_LT] = ACTIONS(1818), + [anon_sym_LT_LT_DASH] = ACTIONS(1818), + [anon_sym_LT_LT_LT] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), + }, + [1947] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5182), + }, + [1948] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1949] = { + [sym_file_descriptor] = ACTIONS(1824), + [sym__concat] = ACTIONS(1824), + [anon_sym_esac] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_GT_GT] = ACTIONS(1826), + [anon_sym_AMP_GT] = ACTIONS(1826), + [anon_sym_AMP_GT_GT] = ACTIONS(1826), + [anon_sym_LT_AMP] = ACTIONS(1826), + [anon_sym_GT_AMP] = ACTIONS(1826), + [anon_sym_LT_LT] = ACTIONS(1826), + [anon_sym_LT_LT_DASH] = ACTIONS(1826), + [anon_sym_LT_LT_LT] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), + }, + [1950] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5186), + }, + [1951] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1952] = { + [sym_file_descriptor] = ACTIONS(1830), + [sym__concat] = ACTIONS(1830), + [anon_sym_esac] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1832), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [anon_sym_LT_LT] = ACTIONS(1832), + [anon_sym_LT_LT_DASH] = ACTIONS(1832), + [anon_sym_LT_LT_LT] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1832), + }, + [1953] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(5188), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1954] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5190), + [anon_sym_SEMI_SEMI] = ACTIONS(5192), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5192), + [anon_sym_LF] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5192), + }, + [1955] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5190), + [anon_sym_SEMI_SEMI] = ACTIONS(5192), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(5192), + [anon_sym_LF] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5192), + }, + [1956] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1957] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(5196), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(5190), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym_LF] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5196), + }, + [1958] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(5196), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(5190), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym_LF] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(5196), + }, + [1959] = { + [sym_file_descriptor] = ACTIONS(1864), + [sym__concat] = ACTIONS(1864), + [anon_sym_esac] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [anon_sym_PIPE_AMP] = ACTIONS(1866), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_GT] = ACTIONS(1866), + [anon_sym_AMP_GT] = ACTIONS(1866), + [anon_sym_AMP_GT_GT] = ACTIONS(1866), + [anon_sym_LT_AMP] = ACTIONS(1866), + [anon_sym_GT_AMP] = ACTIONS(1866), + [anon_sym_LT_LT] = ACTIONS(1866), + [anon_sym_LT_LT_DASH] = ACTIONS(1866), + [anon_sym_LT_LT_LT] = ACTIONS(1866), + [anon_sym_BQUOTE] = ACTIONS(1866), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), + }, + [1960] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(5200), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [1961] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + }, + [1962] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_SEMI_SEMI] = ACTIONS(5204), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + }, + [1963] = { + [sym__concat] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4756), + [anon_sym_EQ_TILDE] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4756), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4756), + }, + [1964] = { + [sym__concat] = ACTIONS(4764), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_RPAREN] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4764), + [anon_sym_EQ_TILDE] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4764), + [anon_sym_GT] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4764), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4764), + }, + [1965] = { + [sym__concat] = ACTIONS(4768), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4768), + [anon_sym_EQ_TILDE] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4768), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4768), + }, + [1966] = { + [sym__concat] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_RPAREN] = ACTIONS(4772), + [anon_sym_AMP_AMP] = ACTIONS(4772), + [anon_sym_PIPE_PIPE] = ACTIONS(4772), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4772), + [anon_sym_EQ_TILDE] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4772), + [anon_sym_GT] = ACTIONS(4772), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4772), + }, + [1967] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1968] = { + [sym__concat] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4778), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE_PIPE] = ACTIONS(4778), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4778), + [anon_sym_EQ_TILDE] = ACTIONS(4778), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4778), + }, + [1969] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1970] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_RPAREN] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4784), + [anon_sym_EQ_TILDE] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4784), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4784), + }, + [1971] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1972] = { + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4790), + [anon_sym_EQ_TILDE] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4790), + }, + [1973] = { + [sym__concat] = ACTIONS(4794), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4794), + [anon_sym_EQ_TILDE] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4794), + }, + [1974] = { + [sym__concat] = ACTIONS(4756), + [sym_variable_name] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4758), + [anon_sym_SEMI_SEMI] = ACTIONS(4758), + [anon_sym_PIPE_AMP] = ACTIONS(4758), + [anon_sym_AMP_AMP] = ACTIONS(4758), + [anon_sym_PIPE_PIPE] = ACTIONS(4758), + [sym__special_characters] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4758), + [anon_sym_LT_LPAREN] = ACTIONS(4758), + [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4758), + [sym_word] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_LF] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4758), + }, + [1975] = { + [sym__concat] = ACTIONS(4764), + [sym_variable_name] = ACTIONS(4764), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_RPAREN] = ACTIONS(4766), + [anon_sym_SEMI_SEMI] = ACTIONS(4766), + [anon_sym_PIPE_AMP] = ACTIONS(4766), + [anon_sym_AMP_AMP] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), + [anon_sym_LT_LPAREN] = ACTIONS(4766), + [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4766), + [sym_word] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_LF] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4766), + }, + [1976] = { + [sym__concat] = ACTIONS(4768), + [sym_variable_name] = ACTIONS(4768), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_RPAREN] = ACTIONS(4770), + [anon_sym_SEMI_SEMI] = ACTIONS(4770), + [anon_sym_PIPE_AMP] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [sym__special_characters] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), + [anon_sym_BQUOTE] = ACTIONS(4770), + [anon_sym_LT_LPAREN] = ACTIONS(4770), + [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4770), + [sym_word] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_LF] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4770), + }, + [1977] = { + [sym__concat] = ACTIONS(4772), + [sym_variable_name] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_RPAREN] = ACTIONS(4774), + [anon_sym_SEMI_SEMI] = ACTIONS(4774), + [anon_sym_PIPE_AMP] = ACTIONS(4774), + [anon_sym_AMP_AMP] = ACTIONS(4774), + [anon_sym_PIPE_PIPE] = ACTIONS(4774), + [sym__special_characters] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), + [anon_sym_BQUOTE] = ACTIONS(4774), + [anon_sym_LT_LPAREN] = ACTIONS(4774), + [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4774), + [sym_word] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_LF] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4774), + }, + [1978] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1979] = { + [sym__concat] = ACTIONS(4778), + [sym_variable_name] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [anon_sym_PIPE_AMP] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [sym__special_characters] = ACTIONS(4780), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), + [anon_sym_BQUOTE] = ACTIONS(4780), + [anon_sym_LT_LPAREN] = ACTIONS(4780), + [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4780), + [sym_word] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_LF] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + }, + [1980] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1981] = { + [sym__concat] = ACTIONS(4784), + [sym_variable_name] = ACTIONS(4784), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_RPAREN] = ACTIONS(4786), + [anon_sym_SEMI_SEMI] = ACTIONS(4786), + [anon_sym_PIPE_AMP] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [sym__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), + [anon_sym_BQUOTE] = ACTIONS(4786), + [anon_sym_LT_LPAREN] = ACTIONS(4786), + [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4786), + [sym_word] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_LF] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4786), + }, + [1982] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1983] = { + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + }, + [1984] = { + [sym__concat] = ACTIONS(4794), + [sym_variable_name] = ACTIONS(4794), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4796), + [sym_word] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LF] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + }, + [1985] = { + [sym__concat] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4758), + [anon_sym_SEMI_SEMI] = ACTIONS(4758), + [anon_sym_PIPE_AMP] = ACTIONS(4758), + [anon_sym_AMP_AMP] = ACTIONS(4758), + [anon_sym_PIPE_PIPE] = ACTIONS(4758), + [sym__special_characters] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4758), + [anon_sym_LT_LPAREN] = ACTIONS(4758), + [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4758), + [sym_word] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_LF] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4758), + }, + [1986] = { + [sym__concat] = ACTIONS(4764), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_RPAREN] = ACTIONS(4766), + [anon_sym_SEMI_SEMI] = ACTIONS(4766), + [anon_sym_PIPE_AMP] = ACTIONS(4766), + [anon_sym_AMP_AMP] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), + [anon_sym_LT_LPAREN] = ACTIONS(4766), + [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4766), + [sym_word] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_LF] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4766), + }, + [1987] = { + [sym__concat] = ACTIONS(4768), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_RPAREN] = ACTIONS(4770), + [anon_sym_SEMI_SEMI] = ACTIONS(4770), + [anon_sym_PIPE_AMP] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [sym__special_characters] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), + [anon_sym_BQUOTE] = ACTIONS(4770), + [anon_sym_LT_LPAREN] = ACTIONS(4770), + [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4770), + [sym_word] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_LF] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4770), + }, + [1988] = { + [sym__concat] = ACTIONS(4772), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_RPAREN] = ACTIONS(4774), + [anon_sym_SEMI_SEMI] = ACTIONS(4774), + [anon_sym_PIPE_AMP] = ACTIONS(4774), + [anon_sym_AMP_AMP] = ACTIONS(4774), + [anon_sym_PIPE_PIPE] = ACTIONS(4774), + [sym__special_characters] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), + [anon_sym_BQUOTE] = ACTIONS(4774), + [anon_sym_LT_LPAREN] = ACTIONS(4774), + [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4774), + [sym_word] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_LF] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4774), + }, + [1989] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1990] = { + [sym__concat] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [anon_sym_PIPE_AMP] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [sym__special_characters] = ACTIONS(4780), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), + [anon_sym_BQUOTE] = ACTIONS(4780), + [anon_sym_LT_LPAREN] = ACTIONS(4780), + [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4780), + [sym_word] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_LF] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + }, + [1991] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1992] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_RPAREN] = ACTIONS(4786), + [anon_sym_SEMI_SEMI] = ACTIONS(4786), + [anon_sym_PIPE_AMP] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [sym__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), + [anon_sym_BQUOTE] = ACTIONS(4786), + [anon_sym_LT_LPAREN] = ACTIONS(4786), + [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4786), + [sym_word] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_LF] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4786), + }, + [1993] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [1994] = { + [sym__concat] = ACTIONS(4790), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + }, + [1995] = { + [sym__concat] = ACTIONS(4794), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4796), + [sym_word] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LF] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + }, + [1996] = { + [sym_file_descriptor] = ACTIONS(4756), + [sym__concat] = ACTIONS(4756), + [sym_variable_name] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_GT_GT] = ACTIONS(4756), + [anon_sym_AMP_GT] = ACTIONS(4758), + [anon_sym_AMP_GT_GT] = ACTIONS(4756), + [anon_sym_LT_AMP] = ACTIONS(4756), + [anon_sym_GT_AMP] = ACTIONS(4756), + [sym__special_characters] = ACTIONS(4756), + [anon_sym_DQUOTE] = ACTIONS(4756), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4756), + [anon_sym_BQUOTE] = ACTIONS(4756), + [anon_sym_LT_LPAREN] = ACTIONS(4756), + [anon_sym_GT_LPAREN] = ACTIONS(4756), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4756), + }, + [1997] = { + [sym_file_descriptor] = ACTIONS(4764), + [sym__concat] = ACTIONS(4764), + [sym_variable_name] = ACTIONS(4764), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_GT_GT] = ACTIONS(4764), + [anon_sym_AMP_GT] = ACTIONS(4766), + [anon_sym_AMP_GT_GT] = ACTIONS(4764), + [anon_sym_LT_AMP] = ACTIONS(4764), + [anon_sym_GT_AMP] = ACTIONS(4764), + [sym__special_characters] = ACTIONS(4764), + [anon_sym_DQUOTE] = ACTIONS(4764), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4764), + [anon_sym_BQUOTE] = ACTIONS(4764), + [anon_sym_LT_LPAREN] = ACTIONS(4764), + [anon_sym_GT_LPAREN] = ACTIONS(4764), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4764), + }, + [1998] = { + [sym_file_descriptor] = ACTIONS(4768), + [sym__concat] = ACTIONS(4768), + [sym_variable_name] = ACTIONS(4768), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_GT_GT] = ACTIONS(4768), + [anon_sym_AMP_GT] = ACTIONS(4770), + [anon_sym_AMP_GT_GT] = ACTIONS(4768), + [anon_sym_LT_AMP] = ACTIONS(4768), + [anon_sym_GT_AMP] = ACTIONS(4768), + [sym__special_characters] = ACTIONS(4768), + [anon_sym_DQUOTE] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4768), + [anon_sym_BQUOTE] = ACTIONS(4768), + [anon_sym_LT_LPAREN] = ACTIONS(4768), + [anon_sym_GT_LPAREN] = ACTIONS(4768), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4768), + }, + [1999] = { + [sym_file_descriptor] = ACTIONS(4772), + [sym__concat] = ACTIONS(4772), + [sym_variable_name] = ACTIONS(4772), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_GT_GT] = ACTIONS(4772), + [anon_sym_AMP_GT] = ACTIONS(4774), + [anon_sym_AMP_GT_GT] = ACTIONS(4772), + [anon_sym_LT_AMP] = ACTIONS(4772), + [anon_sym_GT_AMP] = ACTIONS(4772), + [sym__special_characters] = ACTIONS(4772), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4772), + [anon_sym_BQUOTE] = ACTIONS(4772), + [anon_sym_LT_LPAREN] = ACTIONS(4772), + [anon_sym_GT_LPAREN] = ACTIONS(4772), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4772), + }, + [2000] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2001] = { + [sym_file_descriptor] = ACTIONS(4778), + [sym__concat] = ACTIONS(4778), + [sym_variable_name] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_GT_GT] = ACTIONS(4778), + [anon_sym_AMP_GT] = ACTIONS(4780), + [anon_sym_AMP_GT_GT] = ACTIONS(4778), + [anon_sym_LT_AMP] = ACTIONS(4778), + [anon_sym_GT_AMP] = ACTIONS(4778), + [sym__special_characters] = ACTIONS(4778), + [anon_sym_DQUOTE] = ACTIONS(4778), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4778), + [anon_sym_BQUOTE] = ACTIONS(4778), + [anon_sym_LT_LPAREN] = ACTIONS(4778), + [anon_sym_GT_LPAREN] = ACTIONS(4778), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4778), + }, + [2002] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2003] = { + [sym_file_descriptor] = ACTIONS(4784), + [sym__concat] = ACTIONS(4784), + [sym_variable_name] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_GT_GT] = ACTIONS(4784), + [anon_sym_AMP_GT] = ACTIONS(4786), + [anon_sym_AMP_GT_GT] = ACTIONS(4784), + [anon_sym_LT_AMP] = ACTIONS(4784), + [anon_sym_GT_AMP] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4784), + }, + [2004] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2005] = { + [sym_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4790), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4790), + [anon_sym_LT_AMP] = ACTIONS(4790), + [anon_sym_GT_AMP] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4790), + }, + [2006] = { + [sym_file_descriptor] = ACTIONS(4794), + [sym__concat] = ACTIONS(4794), + [sym_variable_name] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_GT_GT] = ACTIONS(4794), + [anon_sym_AMP_GT] = ACTIONS(4796), + [anon_sym_AMP_GT_GT] = ACTIONS(4794), + [anon_sym_LT_AMP] = ACTIONS(4794), + [anon_sym_GT_AMP] = ACTIONS(4794), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(4794), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4794), + [anon_sym_BQUOTE] = ACTIONS(4794), + [anon_sym_LT_LPAREN] = ACTIONS(4794), + [anon_sym_GT_LPAREN] = ACTIONS(4794), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4794), + }, + [2007] = { + [sym__concat] = ACTIONS(4756), + [anon_sym_DQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym__string_content] = ACTIONS(4756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4758), + [sym_comment] = ACTIONS(179), + }, + [2008] = { + [sym__concat] = ACTIONS(4764), + [anon_sym_DQUOTE] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym__string_content] = ACTIONS(4764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), + [sym_comment] = ACTIONS(179), + }, + [2009] = { + [sym__concat] = ACTIONS(4768), + [anon_sym_DQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym__string_content] = ACTIONS(4768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), + [anon_sym_BQUOTE] = ACTIONS(4770), + [sym_comment] = ACTIONS(179), + }, + [2010] = { + [sym__concat] = ACTIONS(4772), + [anon_sym_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym__string_content] = ACTIONS(4772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), + [anon_sym_BQUOTE] = ACTIONS(4774), + [sym_comment] = ACTIONS(179), + }, + [2011] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2012] = { + [sym__concat] = ACTIONS(4778), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym__string_content] = ACTIONS(4778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), + [anon_sym_BQUOTE] = ACTIONS(4780), + [sym_comment] = ACTIONS(179), + }, + [2013] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2014] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym__string_content] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), + [anon_sym_BQUOTE] = ACTIONS(4786), + [sym_comment] = ACTIONS(179), + }, + [2015] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2016] = { + [sym__concat] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym__string_content] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [sym_comment] = ACTIONS(179), + }, + [2017] = { + [sym__concat] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym__string_content] = ACTIONS(4794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [sym_comment] = ACTIONS(179), + }, + [2018] = { + [anon_sym_RBRACE] = ACTIONS(4049), + [anon_sym_EQ] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(4049), + [anon_sym_DOLLAR] = ACTIONS(5238), + [sym_raw_string] = ACTIONS(4049), + [anon_sym_POUND] = ACTIONS(4049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4049), + [anon_sym_SLASH] = ACTIONS(4049), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_COLON_QMARK] = ACTIONS(5238), + [anon_sym_COLON_DASH] = ACTIONS(5238), + [anon_sym_PERCENT] = ACTIONS(5238), + [anon_sym_DASH] = ACTIONS(5238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4049), + [anon_sym_BQUOTE] = ACTIONS(4049), + [anon_sym_LT_LPAREN] = ACTIONS(4049), + [anon_sym_GT_LPAREN] = ACTIONS(4049), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5238), + }, + [2019] = { + [anon_sym_RBRACE] = ACTIONS(4051), + [anon_sym_EQ] = ACTIONS(5240), + [sym__special_characters] = ACTIONS(5240), + [anon_sym_DQUOTE] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(5240), + [sym_raw_string] = ACTIONS(4051), + [anon_sym_POUND] = ACTIONS(4051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4051), + [anon_sym_SLASH] = ACTIONS(4051), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_COLON_QMARK] = ACTIONS(5240), + [anon_sym_COLON_DASH] = ACTIONS(5240), + [anon_sym_PERCENT] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(4051), + [anon_sym_LT_LPAREN] = ACTIONS(4051), + [anon_sym_GT_LPAREN] = ACTIONS(4051), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5240), + }, + [2020] = { + [sym__concat] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [sym_comment] = ACTIONS(53), + }, + [2021] = { + [sym__concat] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [sym_comment] = ACTIONS(53), + }, + [2022] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5242), + [sym_comment] = ACTIONS(53), + }, + [2023] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5244), + [sym_comment] = ACTIONS(53), + }, + [2024] = { + [anon_sym_RBRACE] = ACTIONS(5244), + [sym_comment] = ACTIONS(53), + }, + [2025] = { + [sym_concatenation] = STATE(2261), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2261), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5248), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_COLON_QMARK] = ACTIONS(5248), + [anon_sym_COLON_DASH] = ACTIONS(5248), + [anon_sym_PERCENT] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2026] = { + [sym__concat] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [sym_comment] = ACTIONS(53), + }, + [2027] = { + [sym_concatenation] = STATE(2264), + [sym_string] = STATE(2263), + [sym_simple_expansion] = STATE(2263), + [sym_string_expansion] = STATE(2263), + [sym_expansion] = STATE(2263), + [sym_command_substitution] = STATE(2263), + [sym_process_substitution] = STATE(2263), + [anon_sym_RBRACE] = ACTIONS(5244), + [sym__special_characters] = ACTIONS(5252), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(5254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5254), + }, + [2028] = { + [sym__concat] = ACTIONS(2969), + [anon_sym_RBRACE] = ACTIONS(2969), + [sym_comment] = ACTIONS(53), + }, + [2029] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5256), + }, + [2030] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2031] = { + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [sym_comment] = ACTIONS(53), + }, + [2032] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5260), + }, + [2033] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5262), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2034] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5264), + }, + [2035] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5244), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2036] = { + [sym_concatenation] = STATE(2271), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2271), + [anon_sym_RBRACE] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5268), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_COLON_QMARK] = ACTIONS(5268), + [anon_sym_COLON_DASH] = ACTIONS(5268), + [anon_sym_PERCENT] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2037] = { + [sym__concat] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2993), + [sym_comment] = ACTIONS(53), + }, + [2038] = { + [sym_concatenation] = STATE(2273), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2273), + [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(5274), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5274), + [anon_sym_COLON_QMARK] = ACTIONS(5274), + [anon_sym_COLON_DASH] = ACTIONS(5274), + [anon_sym_PERCENT] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2039] = { + [sym__concat] = ACTIONS(3003), + [anon_sym_RBRACE] = ACTIONS(3003), + [sym_comment] = ACTIONS(53), + }, + [2040] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(5278), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2041] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(5278), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2042] = { + [sym__concat] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3034), + [sym_comment] = ACTIONS(53), + }, + [2043] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(5280), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2044] = { + [sym__concat] = ACTIONS(3802), + [anon_sym_RBRACE] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [sym__special_characters] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3802), + [anon_sym_POUND] = ACTIONS(3802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3802), + [anon_sym_COLON] = ACTIONS(3804), + [anon_sym_COLON_QMARK] = ACTIONS(3804), + [anon_sym_COLON_DASH] = ACTIONS(3804), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3802), + [anon_sym_BQUOTE] = ACTIONS(3802), + [anon_sym_LT_LPAREN] = ACTIONS(3802), + [anon_sym_GT_LPAREN] = ACTIONS(3802), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3804), + }, + [2045] = { + [sym__concat] = ACTIONS(3810), + [anon_sym_RBRACE] = ACTIONS(3810), + [anon_sym_EQ] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(3810), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3810), + [anon_sym_POUND] = ACTIONS(3810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3810), + [anon_sym_COLON] = ACTIONS(3812), + [anon_sym_COLON_QMARK] = ACTIONS(3812), + [anon_sym_COLON_DASH] = ACTIONS(3812), + [anon_sym_PERCENT] = ACTIONS(3812), + [anon_sym_DASH] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3810), + [anon_sym_BQUOTE] = ACTIONS(3810), + [anon_sym_LT_LPAREN] = ACTIONS(3810), + [anon_sym_GT_LPAREN] = ACTIONS(3810), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3812), + }, + [2046] = { + [sym__concat] = ACTIONS(3909), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3909), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3909), + [anon_sym_POUND] = ACTIONS(3909), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3909), + [anon_sym_COLON] = ACTIONS(3911), + [anon_sym_COLON_QMARK] = ACTIONS(3911), + [anon_sym_COLON_DASH] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3909), + [anon_sym_BQUOTE] = ACTIONS(3909), + [anon_sym_LT_LPAREN] = ACTIONS(3909), + [anon_sym_GT_LPAREN] = ACTIONS(3909), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3911), + }, + [2047] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2048] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5284), + [sym_comment] = ACTIONS(53), + }, + [2049] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5286), + [sym_comment] = ACTIONS(53), + }, + [2050] = { + [anon_sym_RBRACE] = ACTIONS(5286), + [sym_comment] = ACTIONS(53), + }, + [2051] = { + [sym_concatenation] = STATE(2280), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2280), + [anon_sym_RBRACE] = ACTIONS(5288), + [anon_sym_EQ] = ACTIONS(5290), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5290), + [anon_sym_COLON_QMARK] = ACTIONS(5290), + [anon_sym_COLON_DASH] = ACTIONS(5290), + [anon_sym_PERCENT] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2052] = { + [sym__concat] = ACTIONS(3945), + [anon_sym_RBRACE] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [sym__special_characters] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3945), + [anon_sym_POUND] = ACTIONS(3945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3945), + [anon_sym_COLON] = ACTIONS(3947), + [anon_sym_COLON_QMARK] = ACTIONS(3947), + [anon_sym_COLON_DASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3945), + [anon_sym_BQUOTE] = ACTIONS(3945), + [anon_sym_LT_LPAREN] = ACTIONS(3945), + [anon_sym_GT_LPAREN] = ACTIONS(3945), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3947), + }, + [2053] = { + [sym_concatenation] = STATE(2282), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2282), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5296), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_COLON_QMARK] = ACTIONS(5296), + [anon_sym_COLON_DASH] = ACTIONS(5296), + [anon_sym_PERCENT] = ACTIONS(5296), + [anon_sym_DASH] = ACTIONS(5296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2054] = { + [sym__concat] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3957), + [sym__special_characters] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3955), + [anon_sym_POUND] = ACTIONS(3955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_DASH] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3955), + [anon_sym_BQUOTE] = ACTIONS(3955), + [anon_sym_LT_LPAREN] = ACTIONS(3955), + [anon_sym_GT_LPAREN] = ACTIONS(3955), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3957), + }, + [2055] = { + [sym_concatenation] = STATE(2284), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2284), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_EQ] = ACTIONS(5302), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5302), + [anon_sym_COLON_QMARK] = ACTIONS(5302), + [anon_sym_COLON_DASH] = ACTIONS(5302), + [anon_sym_PERCENT] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2056] = { + [sym__concat] = ACTIONS(3965), + [anon_sym_RBRACE] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [sym__special_characters] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3965), + [anon_sym_POUND] = ACTIONS(3965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3965), + [anon_sym_COLON] = ACTIONS(3967), + [anon_sym_COLON_QMARK] = ACTIONS(3967), + [anon_sym_COLON_DASH] = ACTIONS(3967), + [anon_sym_PERCENT] = ACTIONS(3967), + [anon_sym_DASH] = ACTIONS(3967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3965), + [anon_sym_BQUOTE] = ACTIONS(3965), + [anon_sym_LT_LPAREN] = ACTIONS(3965), + [anon_sym_GT_LPAREN] = ACTIONS(3965), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3967), + }, + [2057] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2058] = { + [sym__concat] = ACTIONS(3971), + [anon_sym_RBRACE] = ACTIONS(3971), + [anon_sym_EQ] = ACTIONS(3973), + [sym__special_characters] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3971), + [anon_sym_POUND] = ACTIONS(3971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_DASH] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3971), + [anon_sym_BQUOTE] = ACTIONS(3971), + [anon_sym_LT_LPAREN] = ACTIONS(3971), + [anon_sym_GT_LPAREN] = ACTIONS(3971), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3973), + }, + [2059] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2060] = { + [sym__concat] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3977), + [anon_sym_POUND] = ACTIONS(3977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3977), + [anon_sym_COLON] = ACTIONS(3979), + [anon_sym_COLON_QMARK] = ACTIONS(3979), + [anon_sym_COLON_DASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3977), + [anon_sym_BQUOTE] = ACTIONS(3977), + [anon_sym_LT_LPAREN] = ACTIONS(3977), + [anon_sym_GT_LPAREN] = ACTIONS(3977), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3979), + }, + [2061] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4003), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_POUND] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_COLON] = ACTIONS(4003), + [anon_sym_COLON_QMARK] = ACTIONS(4003), + [anon_sym_COLON_DASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4003), + }, + [2062] = { + [sym__simple_heredoc_body] = ACTIONS(5310), + [sym__heredoc_body_beginning] = ACTIONS(5310), + [sym_file_descriptor] = ACTIONS(5310), + [sym__concat] = ACTIONS(5310), + [anon_sym_esac] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(5312), + [anon_sym_SEMI_SEMI] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(5312), + [anon_sym_AMP_AMP] = ACTIONS(5312), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_EQ_TILDE] = ACTIONS(5312), + [anon_sym_EQ_EQ] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(5312), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(5312), + [anon_sym_LT_AMP] = ACTIONS(5312), + [anon_sym_GT_AMP] = ACTIONS(5312), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_LT_LT_DASH] = ACTIONS(5312), + [anon_sym_LT_LT_LT] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(5312), + [anon_sym_LT_LPAREN] = ACTIONS(5312), + [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym_LF] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), + }, + [2063] = { + [sym__simple_heredoc_body] = ACTIONS(5314), + [sym__heredoc_body_beginning] = ACTIONS(5314), + [sym_file_descriptor] = ACTIONS(5314), + [sym__concat] = ACTIONS(5314), + [anon_sym_esac] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(5316), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5316), + [anon_sym_AMP_AMP] = ACTIONS(5316), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [anon_sym_EQ_TILDE] = ACTIONS(5316), + [anon_sym_EQ_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(5316), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(5316), + [anon_sym_LT_AMP] = ACTIONS(5316), + [anon_sym_GT_AMP] = ACTIONS(5316), + [anon_sym_LT_LT] = ACTIONS(5316), + [anon_sym_LT_LT_DASH] = ACTIONS(5316), + [anon_sym_LT_LT_LT] = ACTIONS(5316), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(5316), + [anon_sym_LT_LPAREN] = ACTIONS(5316), + [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_LF] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + }, + [2064] = { + [sym__simple_heredoc_body] = ACTIONS(5318), + [sym__heredoc_body_beginning] = ACTIONS(5318), + [sym_file_descriptor] = ACTIONS(5318), + [sym__concat] = ACTIONS(5318), + [anon_sym_esac] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(5320), + [anon_sym_SEMI_SEMI] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_EQ_TILDE] = ACTIONS(5320), + [anon_sym_EQ_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(5320), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(5320), + [anon_sym_LT_AMP] = ACTIONS(5320), + [anon_sym_GT_AMP] = ACTIONS(5320), + [anon_sym_LT_LT] = ACTIONS(5320), + [anon_sym_LT_LT_DASH] = ACTIONS(5320), + [anon_sym_LT_LT_LT] = ACTIONS(5320), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(5320), + [anon_sym_LT_LPAREN] = ACTIONS(5320), + [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_LF] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5320), + }, + [2065] = { + [aux_sym_concatenation_repeat1] = STATE(2067), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [2066] = { + [aux_sym_concatenation_repeat1] = STATE(2067), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [2067] = { + [aux_sym_concatenation_repeat1] = STATE(2287), + [sym__concat] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [2068] = { + [aux_sym_concatenation_repeat1] = STATE(2070), + [sym_file_descriptor] = ACTIONS(955), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [2069] = { + [aux_sym_concatenation_repeat1] = STATE(2070), + [sym_file_descriptor] = ACTIONS(959), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [2070] = { + [aux_sym_concatenation_repeat1] = STATE(2288), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(3552), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [2071] = { + [sym__heredoc_body_middle] = ACTIONS(3802), + [sym__heredoc_body_end] = ACTIONS(3802), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3802), + [sym_comment] = ACTIONS(53), + }, + [2072] = { + [sym__heredoc_body_middle] = ACTIONS(3810), + [sym__heredoc_body_end] = ACTIONS(3810), + [anon_sym_DOLLAR] = ACTIONS(3812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3810), + [sym_comment] = ACTIONS(53), + }, + [2073] = { + [sym__heredoc_body_middle] = ACTIONS(3909), + [sym__heredoc_body_end] = ACTIONS(3909), + [anon_sym_DOLLAR] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3909), + [sym_comment] = ACTIONS(53), + }, + [2074] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2075] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5324), + [sym_comment] = ACTIONS(53), + }, + [2076] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5326), + [sym_comment] = ACTIONS(53), + }, + [2077] = { + [anon_sym_RBRACE] = ACTIONS(5326), + [sym_comment] = ACTIONS(53), + }, + [2078] = { + [sym_concatenation] = STATE(2293), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2293), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_EQ] = ACTIONS(5330), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5330), + [anon_sym_COLON_QMARK] = ACTIONS(5330), + [anon_sym_COLON_DASH] = ACTIONS(5330), + [anon_sym_PERCENT] = ACTIONS(5330), + [anon_sym_DASH] = ACTIONS(5330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2079] = { + [sym__heredoc_body_middle] = ACTIONS(3945), + [sym__heredoc_body_end] = ACTIONS(3945), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3945), + [sym_comment] = ACTIONS(53), + }, + [2080] = { + [sym_concatenation] = STATE(2295), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2295), + [anon_sym_RBRACE] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5336), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COLON_QMARK] = ACTIONS(5336), + [anon_sym_COLON_DASH] = ACTIONS(5336), + [anon_sym_PERCENT] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2081] = { + [sym__heredoc_body_middle] = ACTIONS(3955), + [sym__heredoc_body_end] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3955), + [sym_comment] = ACTIONS(53), + }, + [2082] = { + [sym_concatenation] = STATE(2297), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2297), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_EQ] = ACTIONS(5342), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5342), + [anon_sym_COLON_QMARK] = ACTIONS(5342), + [anon_sym_COLON_DASH] = ACTIONS(5342), + [anon_sym_PERCENT] = ACTIONS(5342), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2083] = { + [sym__heredoc_body_middle] = ACTIONS(3965), + [sym__heredoc_body_end] = ACTIONS(3965), + [anon_sym_DOLLAR] = ACTIONS(3967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3965), + [sym_comment] = ACTIONS(53), + }, + [2084] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2085] = { + [sym__heredoc_body_middle] = ACTIONS(3971), + [sym__heredoc_body_end] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3971), + [sym_comment] = ACTIONS(53), + }, + [2086] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2087] = { + [sym__concat] = ACTIONS(3802), + [anon_sym_RPAREN] = ACTIONS(3802), + [sym__special_characters] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3802), + [anon_sym_BQUOTE] = ACTIONS(3802), + [anon_sym_LT_LPAREN] = ACTIONS(3802), + [anon_sym_GT_LPAREN] = ACTIONS(3802), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3802), }, [2088] = { - [sym__terminated_statement] = STATE(2463), - [sym_for_statement] = STATE(2459), - [sym_c_style_for_statement] = STATE(2459), - [sym_while_statement] = STATE(2459), - [sym_if_statement] = STATE(2459), - [sym_case_statement] = STATE(2459), - [sym_function_definition] = STATE(2459), - [sym_subshell] = STATE(2459), - [sym_pipeline] = STATE(2459), - [sym_list] = STATE(2459), - [sym_negated_command] = STATE(2459), - [sym_test_command] = STATE(2459), - [sym_declaration_command] = STATE(2459), - [sym_unset_command] = STATE(2459), - [sym_command] = STATE(2459), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2460), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_program_repeat1] = STATE(2463), - [aux_sym_command_repeat1] = STATE(2087), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5625), - [anon_sym_SEMI_SEMI] = ACTIONS(5691), - [anon_sym_function] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym__concat] = ACTIONS(3810), + [anon_sym_RPAREN] = ACTIONS(3810), + [sym__special_characters] = ACTIONS(3810), + [anon_sym_DQUOTE] = ACTIONS(3810), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3810), + [anon_sym_BQUOTE] = ACTIONS(3810), + [anon_sym_LT_LPAREN] = ACTIONS(3810), + [anon_sym_GT_LPAREN] = ACTIONS(3810), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), + [sym_word] = ACTIONS(3810), }, [2089] = { - [aux_sym_case_item_repeat1] = STATE(2089), - [anon_sym_PIPE] = ACTIONS(5695), - [anon_sym_RPAREN] = ACTIONS(5621), + [sym__concat] = ACTIONS(3909), + [anon_sym_RPAREN] = ACTIONS(3909), + [sym__special_characters] = ACTIONS(3909), + [anon_sym_DQUOTE] = ACTIONS(3909), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3909), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3909), + [anon_sym_BQUOTE] = ACTIONS(3909), + [anon_sym_LT_LPAREN] = ACTIONS(3909), + [anon_sym_GT_LPAREN] = ACTIONS(3909), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3909), }, [2090] = { - [aux_sym_concatenation_repeat1] = STATE(2090), - [sym__concat] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2091] = { - [anon_sym_esac] = ACTIONS(5698), - [sym__special_characters] = ACTIONS(5700), - [anon_sym_DQUOTE] = ACTIONS(5700), - [anon_sym_DOLLAR] = ACTIONS(5702), - [sym_raw_string] = ACTIONS(5700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5700), - [anon_sym_BQUOTE] = ACTIONS(5700), - [anon_sym_LT_LPAREN] = ACTIONS(5700), - [anon_sym_GT_LPAREN] = ACTIONS(5700), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5352), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5702), }, [2092] = { - [anon_sym_esac] = ACTIONS(5698), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(5704), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5354), + [sym_comment] = ACTIONS(53), }, [2093] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_esac] = ACTIONS(5698), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(5704), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5354), + [sym_comment] = ACTIONS(53), }, [2094] = { - [sym__terminated_statement] = STATE(2461), - [sym_for_statement] = STATE(2466), - [sym_c_style_for_statement] = STATE(2466), - [sym_while_statement] = STATE(2466), - [sym_if_statement] = STATE(2466), - [sym_case_statement] = STATE(2466), - [sym_function_definition] = STATE(2466), - [sym_subshell] = STATE(2466), - [sym_pipeline] = STATE(2466), - [sym_list] = STATE(2466), - [sym_negated_command] = STATE(2466), - [sym_test_command] = STATE(2466), - [sym_declaration_command] = STATE(2466), - [sym_unset_command] = STATE(2466), - [sym_command] = STATE(2466), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2467), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_program_repeat1] = STATE(2461), - [aux_sym_command_repeat1] = STATE(2087), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5698), - [anon_sym_SEMI_SEMI] = ACTIONS(5706), - [anon_sym_function] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), + [sym_concatenation] = STATE(2304), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2304), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_EQ] = ACTIONS(5358), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5358), + [anon_sym_COLON_QMARK] = ACTIONS(5358), + [anon_sym_COLON_DASH] = ACTIONS(5358), + [anon_sym_PERCENT] = ACTIONS(5358), + [anon_sym_DASH] = ACTIONS(5358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2095] = { - [sym__terminated_statement] = STATE(2468), - [sym_for_statement] = STATE(2466), - [sym_c_style_for_statement] = STATE(2466), - [sym_while_statement] = STATE(2466), - [sym_if_statement] = STATE(2466), - [sym_case_statement] = STATE(2466), - [sym_function_definition] = STATE(2466), - [sym_subshell] = STATE(2466), - [sym_pipeline] = STATE(2466), - [sym_list] = STATE(2466), - [sym_negated_command] = STATE(2466), - [sym_test_command] = STATE(2466), - [sym_declaration_command] = STATE(2466), - [sym_unset_command] = STATE(2466), - [sym_command] = STATE(2466), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2467), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_program_repeat1] = STATE(2468), - [aux_sym_command_repeat1] = STATE(2087), + [sym__concat] = ACTIONS(3945), + [anon_sym_RPAREN] = ACTIONS(3945), + [sym__special_characters] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3945), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3945), + [anon_sym_BQUOTE] = ACTIONS(3945), + [anon_sym_LT_LPAREN] = ACTIONS(3945), + [anon_sym_GT_LPAREN] = ACTIONS(3945), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3945), + }, + [2096] = { + [sym_concatenation] = STATE(2306), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2306), + [anon_sym_RBRACE] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(5364), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5364), + [anon_sym_COLON_QMARK] = ACTIONS(5364), + [anon_sym_COLON_DASH] = ACTIONS(5364), + [anon_sym_PERCENT] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2097] = { + [sym__concat] = ACTIONS(3955), + [anon_sym_RPAREN] = ACTIONS(3955), + [sym__special_characters] = ACTIONS(3955), + [anon_sym_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3955), + [anon_sym_BQUOTE] = ACTIONS(3955), + [anon_sym_LT_LPAREN] = ACTIONS(3955), + [anon_sym_GT_LPAREN] = ACTIONS(3955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3955), + }, + [2098] = { + [sym_concatenation] = STATE(2308), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2308), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_EQ] = ACTIONS(5370), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5370), + [anon_sym_COLON_QMARK] = ACTIONS(5370), + [anon_sym_COLON_DASH] = ACTIONS(5370), + [anon_sym_PERCENT] = ACTIONS(5370), + [anon_sym_DASH] = ACTIONS(5370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2099] = { + [sym__concat] = ACTIONS(3965), + [anon_sym_RPAREN] = ACTIONS(3965), + [sym__special_characters] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3965), + [anon_sym_BQUOTE] = ACTIONS(3965), + [anon_sym_LT_LPAREN] = ACTIONS(3965), + [anon_sym_GT_LPAREN] = ACTIONS(3965), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3965), + }, + [2100] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2101] = { + [sym__concat] = ACTIONS(3971), + [anon_sym_RPAREN] = ACTIONS(3971), + [sym__special_characters] = ACTIONS(3971), + [anon_sym_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3971), + [anon_sym_BQUOTE] = ACTIONS(3971), + [anon_sym_LT_LPAREN] = ACTIONS(3971), + [anon_sym_GT_LPAREN] = ACTIONS(3971), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3971), + }, + [2102] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5376), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2103] = { + [sym__concat] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3977), + [sym__special_characters] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3977), + [anon_sym_BQUOTE] = ACTIONS(3977), + [anon_sym_LT_LPAREN] = ACTIONS(3977), + [anon_sym_GT_LPAREN] = ACTIONS(3977), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3977), + }, + [2104] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_RPAREN] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(4001), + [anon_sym_LT_LPAREN] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(4001), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4001), + }, + [2105] = { + [sym_file_descriptor] = ACTIONS(4756), + [sym__concat] = ACTIONS(4756), + [sym_variable_name] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4758), + [anon_sym_SEMI_SEMI] = ACTIONS(4758), + [anon_sym_PIPE_AMP] = ACTIONS(4758), + [anon_sym_AMP_AMP] = ACTIONS(4758), + [anon_sym_PIPE_PIPE] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_GT_GT] = ACTIONS(4758), + [anon_sym_AMP_GT] = ACTIONS(4758), + [anon_sym_AMP_GT_GT] = ACTIONS(4758), + [anon_sym_LT_AMP] = ACTIONS(4758), + [anon_sym_GT_AMP] = ACTIONS(4758), + [sym__special_characters] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4758), + [anon_sym_LT_LPAREN] = ACTIONS(4758), + [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_LF] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4758), + }, + [2106] = { + [sym_file_descriptor] = ACTIONS(4764), + [sym__concat] = ACTIONS(4764), + [sym_variable_name] = ACTIONS(4764), + [anon_sym_esac] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_RPAREN] = ACTIONS(4766), + [anon_sym_SEMI_SEMI] = ACTIONS(4766), + [anon_sym_PIPE_AMP] = ACTIONS(4766), + [anon_sym_AMP_AMP] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_GT_GT] = ACTIONS(4766), + [anon_sym_AMP_GT] = ACTIONS(4766), + [anon_sym_AMP_GT_GT] = ACTIONS(4766), + [anon_sym_LT_AMP] = ACTIONS(4766), + [anon_sym_GT_AMP] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), + [anon_sym_LT_LPAREN] = ACTIONS(4766), + [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_LF] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4766), + }, + [2107] = { + [sym_file_descriptor] = ACTIONS(4768), + [sym__concat] = ACTIONS(4768), + [sym_variable_name] = ACTIONS(4768), + [anon_sym_esac] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_RPAREN] = ACTIONS(4770), + [anon_sym_SEMI_SEMI] = ACTIONS(4770), + [anon_sym_PIPE_AMP] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_GT_GT] = ACTIONS(4770), + [anon_sym_AMP_GT] = ACTIONS(4770), + [anon_sym_AMP_GT_GT] = ACTIONS(4770), + [anon_sym_LT_AMP] = ACTIONS(4770), + [anon_sym_GT_AMP] = ACTIONS(4770), + [sym__special_characters] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), + [anon_sym_BQUOTE] = ACTIONS(4770), + [anon_sym_LT_LPAREN] = ACTIONS(4770), + [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_LF] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4770), + }, + [2108] = { + [sym_file_descriptor] = ACTIONS(4772), + [sym__concat] = ACTIONS(4772), + [sym_variable_name] = ACTIONS(4772), + [anon_sym_esac] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_RPAREN] = ACTIONS(4774), + [anon_sym_SEMI_SEMI] = ACTIONS(4774), + [anon_sym_PIPE_AMP] = ACTIONS(4774), + [anon_sym_AMP_AMP] = ACTIONS(4774), + [anon_sym_PIPE_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_GT_GT] = ACTIONS(4774), + [anon_sym_AMP_GT] = ACTIONS(4774), + [anon_sym_AMP_GT_GT] = ACTIONS(4774), + [anon_sym_LT_AMP] = ACTIONS(4774), + [anon_sym_GT_AMP] = ACTIONS(4774), + [sym__special_characters] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), + [anon_sym_BQUOTE] = ACTIONS(4774), + [anon_sym_LT_LPAREN] = ACTIONS(4774), + [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_LF] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4774), + }, + [2109] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2110] = { + [sym_file_descriptor] = ACTIONS(4778), + [sym__concat] = ACTIONS(4778), + [sym_variable_name] = ACTIONS(4778), + [anon_sym_esac] = ACTIONS(4780), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [anon_sym_PIPE_AMP] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_GT_GT] = ACTIONS(4780), + [anon_sym_AMP_GT] = ACTIONS(4780), + [anon_sym_AMP_GT_GT] = ACTIONS(4780), + [anon_sym_LT_AMP] = ACTIONS(4780), + [anon_sym_GT_AMP] = ACTIONS(4780), + [sym__special_characters] = ACTIONS(4780), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), + [anon_sym_BQUOTE] = ACTIONS(4780), + [anon_sym_LT_LPAREN] = ACTIONS(4780), + [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_LF] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + }, + [2111] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2112] = { + [sym_file_descriptor] = ACTIONS(4784), + [sym__concat] = ACTIONS(4784), + [sym_variable_name] = ACTIONS(4784), + [anon_sym_esac] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_RPAREN] = ACTIONS(4786), + [anon_sym_SEMI_SEMI] = ACTIONS(4786), + [anon_sym_PIPE_AMP] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_GT_GT] = ACTIONS(4786), + [anon_sym_AMP_GT] = ACTIONS(4786), + [anon_sym_AMP_GT_GT] = ACTIONS(4786), + [anon_sym_LT_AMP] = ACTIONS(4786), + [anon_sym_GT_AMP] = ACTIONS(4786), + [sym__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), + [anon_sym_BQUOTE] = ACTIONS(4786), + [anon_sym_LT_LPAREN] = ACTIONS(4786), + [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_LF] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4786), + }, + [2113] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2114] = { + [sym_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + }, + [2115] = { + [sym_file_descriptor] = ACTIONS(4794), + [sym__concat] = ACTIONS(4794), + [sym_variable_name] = ACTIONS(4794), + [anon_sym_esac] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(4796), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LF] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + }, + [2116] = { + [anon_sym_esac] = ACTIONS(3476), + [anon_sym_PIPE] = ACTIONS(3476), + [anon_sym_RPAREN] = ACTIONS(3476), + [anon_sym_SEMI_SEMI] = ACTIONS(3476), + [anon_sym_PIPE_AMP] = ACTIONS(3476), + [anon_sym_AMP_AMP] = ACTIONS(3476), + [anon_sym_PIPE_PIPE] = ACTIONS(3476), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_LF] = ACTIONS(3474), + [anon_sym_AMP] = ACTIONS(3476), + }, + [2117] = { + [sym__concat] = ACTIONS(2818), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_EQ_TILDE] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2818), + }, + [2118] = { + [sym__concat] = ACTIONS(2832), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_PIPE_PIPE] = ACTIONS(2832), + [anon_sym_EQ_TILDE] = ACTIONS(2832), + [anon_sym_EQ_EQ] = ACTIONS(2832), + [anon_sym_EQ] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_GT] = ACTIONS(2832), + [anon_sym_BANG_EQ] = ACTIONS(2832), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2832), + }, + [2119] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5384), + [sym_comment] = ACTIONS(53), + }, + [2120] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5386), + [sym_comment] = ACTIONS(53), + }, + [2121] = { + [anon_sym_RBRACE] = ACTIONS(5386), + [sym_comment] = ACTIONS(53), + }, + [2122] = { + [sym_concatenation] = STATE(2317), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2317), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_EQ] = ACTIONS(5390), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5390), + [anon_sym_COLON_QMARK] = ACTIONS(5390), + [anon_sym_COLON_DASH] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5390), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2123] = { + [sym__concat] = ACTIONS(2926), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_PIPE_PIPE] = ACTIONS(2926), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2926), + [anon_sym_EQ] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_BANG_EQ] = ACTIONS(2926), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2926), + }, + [2124] = { + [sym_concatenation] = STATE(2320), + [sym_string] = STATE(2319), + [sym_simple_expansion] = STATE(2319), + [sym_string_expansion] = STATE(2319), + [sym_expansion] = STATE(2319), + [sym_command_substitution] = STATE(2319), + [sym_process_substitution] = STATE(2319), + [anon_sym_RBRACE] = ACTIONS(5386), + [sym__special_characters] = ACTIONS(5394), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(5396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5396), + }, + [2125] = { + [sym__concat] = ACTIONS(2969), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_PIPE_PIPE] = ACTIONS(2969), + [anon_sym_EQ_TILDE] = ACTIONS(2969), + [anon_sym_EQ_EQ] = ACTIONS(2969), + [anon_sym_EQ] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_BANG_EQ] = ACTIONS(2969), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2969), + }, + [2126] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5398), + }, + [2127] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2128] = { + [sym__concat] = ACTIONS(2977), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_PIPE_PIPE] = ACTIONS(2977), + [anon_sym_EQ_TILDE] = ACTIONS(2977), + [anon_sym_EQ_EQ] = ACTIONS(2977), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_BANG_EQ] = ACTIONS(2977), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2977), + }, + [2129] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5402), + }, + [2130] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2131] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5406), + }, + [2132] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2133] = { + [sym_concatenation] = STATE(2327), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2327), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_EQ] = ACTIONS(5410), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5410), + [anon_sym_COLON_QMARK] = ACTIONS(5410), + [anon_sym_COLON_DASH] = ACTIONS(5410), + [anon_sym_PERCENT] = ACTIONS(5410), + [anon_sym_DASH] = ACTIONS(5410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2134] = { + [sym__concat] = ACTIONS(2993), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_EQ_TILDE] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2993), + }, + [2135] = { + [sym_concatenation] = STATE(2329), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2329), + [anon_sym_RBRACE] = ACTIONS(5414), + [anon_sym_EQ] = ACTIONS(5416), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5418), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5416), + [anon_sym_COLON_QMARK] = ACTIONS(5416), + [anon_sym_COLON_DASH] = ACTIONS(5416), + [anon_sym_PERCENT] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2136] = { + [sym__concat] = ACTIONS(3003), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(3003), + [anon_sym_EQ_TILDE] = ACTIONS(3003), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3003), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3003), + }, + [2137] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(5420), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2138] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(5420), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2139] = { + [sym__concat] = ACTIONS(3034), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_PIPE_PIPE] = ACTIONS(3034), + [anon_sym_EQ_TILDE] = ACTIONS(3034), + [anon_sym_EQ_EQ] = ACTIONS(3034), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_BANG_EQ] = ACTIONS(3034), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3034), + }, + [2140] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(5422), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2141] = { + [anon_sym_esac] = ACTIONS(5424), + [anon_sym_PIPE] = ACTIONS(5424), + [anon_sym_RPAREN] = ACTIONS(5424), + [anon_sym_SEMI_SEMI] = ACTIONS(5424), + [anon_sym_PIPE_AMP] = ACTIONS(5424), + [anon_sym_AMP_AMP] = ACTIONS(5424), + [anon_sym_PIPE_PIPE] = ACTIONS(5424), + [anon_sym_BQUOTE] = ACTIONS(5424), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5424), + [anon_sym_LF] = ACTIONS(5426), + [anon_sym_AMP] = ACTIONS(5424), + }, + [2142] = { + [sym__concat] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_SEMI_SEMI] = ACTIONS(4758), + [anon_sym_PIPE_AMP] = ACTIONS(4758), + [anon_sym_AMP_AMP] = ACTIONS(4758), + [anon_sym_PIPE_PIPE] = ACTIONS(4758), + [anon_sym_EQ_TILDE] = ACTIONS(4758), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_LF] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4758), + }, + [2143] = { + [sym__concat] = ACTIONS(4764), + [anon_sym_esac] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_SEMI_SEMI] = ACTIONS(4766), + [anon_sym_PIPE_AMP] = ACTIONS(4766), + [anon_sym_AMP_AMP] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4766), + [anon_sym_EQ_TILDE] = ACTIONS(4766), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_LF] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4766), + }, + [2144] = { + [sym__concat] = ACTIONS(4768), + [anon_sym_esac] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_SEMI_SEMI] = ACTIONS(4770), + [anon_sym_PIPE_AMP] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [anon_sym_EQ_TILDE] = ACTIONS(4770), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_LF] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4770), + }, + [2145] = { + [sym__concat] = ACTIONS(4772), + [anon_sym_esac] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_SEMI_SEMI] = ACTIONS(4774), + [anon_sym_PIPE_AMP] = ACTIONS(4774), + [anon_sym_AMP_AMP] = ACTIONS(4774), + [anon_sym_PIPE_PIPE] = ACTIONS(4774), + [anon_sym_EQ_TILDE] = ACTIONS(4774), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_LF] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4774), + }, + [2146] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5428), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2147] = { + [sym__concat] = ACTIONS(4778), + [anon_sym_esac] = ACTIONS(4780), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [anon_sym_PIPE_AMP] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_EQ_TILDE] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4780), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_LF] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + }, + [2148] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5430), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2149] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_esac] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_SEMI_SEMI] = ACTIONS(4786), + [anon_sym_PIPE_AMP] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [anon_sym_EQ_TILDE] = ACTIONS(4786), + [anon_sym_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4786), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_LF] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4786), + }, + [2150] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5432), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2151] = { + [sym__concat] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_EQ_TILDE] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_BANG_EQ] = ACTIONS(4792), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + }, + [2152] = { + [sym__concat] = ACTIONS(4794), + [anon_sym_esac] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_EQ_TILDE] = ACTIONS(4796), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LF] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + }, + [2153] = { + [sym_do_group] = STATE(2335), + [sym_compound_statement] = STATE(2335), + [anon_sym_do] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(3252), + [sym_comment] = ACTIONS(53), + }, + [2154] = { + [sym_concatenation] = STATE(187), + [sym_string] = STATE(2337), + [sym_array] = STATE(187), + [sym_simple_expansion] = STATE(2337), + [sym_string_expansion] = STATE(2337), + [sym_expansion] = STATE(2337), + [sym_command_substitution] = STATE(2337), + [sym_process_substitution] = STATE(2337), + [sym__empty_value] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(341), + [sym__special_characters] = ACTIONS(5434), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(347), + [sym_raw_string] = ACTIONS(5436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(353), + [anon_sym_BQUOTE] = ACTIONS(355), + [anon_sym_LT_LPAREN] = ACTIONS(357), + [anon_sym_GT_LPAREN] = ACTIONS(357), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5436), + }, + [2155] = { + [sym_do_group] = STATE(2338), + [anon_sym_do] = ACTIONS(389), + [sym_comment] = ACTIONS(53), + }, + [2156] = { + [sym_compound_statement] = STATE(2340), + [anon_sym_LPAREN] = ACTIONS(5438), + [anon_sym_LBRACE] = ACTIONS(435), + [sym_comment] = ACTIONS(53), + }, + [2157] = { + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(5440), + [anon_sym_EQ_TILDE] = ACTIONS(529), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(525), + }, + [2158] = { + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5440), + [anon_sym_EQ_TILDE] = ACTIONS(559), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(557), + }, + [2159] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(5442), + [anon_sym_PLUS_EQ] = ACTIONS(5442), + [sym_comment] = ACTIONS(53), + }, + [2160] = { + [aux_sym_concatenation_repeat1] = STATE(2344), + [sym__concat] = ACTIONS(5444), + [sym_variable_name] = ACTIONS(567), + [anon_sym_esac] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_SEMI_SEMI] = ACTIONS(569), + [anon_sym_PIPE_AMP] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [sym__special_characters] = ACTIONS(569), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(569), + [sym_raw_string] = ACTIONS(569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(569), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(569), + [anon_sym_BQUOTE] = ACTIONS(569), + [anon_sym_LT_LPAREN] = ACTIONS(569), + [anon_sym_GT_LPAREN] = ACTIONS(569), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(569), + [sym_word] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(569), + }, + [2161] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(2347), + [anon_sym_DQUOTE] = ACTIONS(5446), + [anon_sym_DOLLAR] = ACTIONS(5448), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [2162] = { + [sym_string] = STATE(2349), + [anon_sym_DQUOTE] = ACTIONS(5450), + [anon_sym_DOLLAR] = ACTIONS(5452), + [sym_raw_string] = ACTIONS(5454), + [anon_sym_POUND] = ACTIONS(5452), + [anon_sym_DASH] = ACTIONS(5452), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5456), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_AT] = ACTIONS(5452), + [anon_sym_QMARK] = ACTIONS(5452), + [anon_sym_0] = ACTIONS(5458), + [anon_sym__] = ACTIONS(5458), + }, + [2163] = { + [aux_sym_concatenation_repeat1] = STATE(2344), + [sym__concat] = ACTIONS(5444), + [sym_variable_name] = ACTIONS(585), + [anon_sym_esac] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_SEMI_SEMI] = ACTIONS(587), + [anon_sym_PIPE_AMP] = ACTIONS(587), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [sym__special_characters] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(587), + [sym_raw_string] = ACTIONS(587), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(587), + [anon_sym_LT_LPAREN] = ACTIONS(587), + [anon_sym_GT_LPAREN] = ACTIONS(587), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(587), + [sym_word] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(587), + }, + [2164] = { + [sym_subscript] = STATE(2355), + [sym_variable_name] = ACTIONS(5460), + [anon_sym_DOLLAR] = ACTIONS(5462), + [anon_sym_POUND] = ACTIONS(5464), + [anon_sym_DASH] = ACTIONS(5462), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5466), + [anon_sym_STAR] = ACTIONS(5462), + [anon_sym_AT] = ACTIONS(5462), + [anon_sym_QMARK] = ACTIONS(5462), + [anon_sym_0] = ACTIONS(5468), + [anon_sym__] = ACTIONS(5468), + }, + [2165] = { + [sym__terminated_statement] = STATE(2358), + [sym_for_statement] = STATE(2356), + [sym_c_style_for_statement] = STATE(2356), + [sym_while_statement] = STATE(2356), + [sym_if_statement] = STATE(2356), + [sym_case_statement] = STATE(2356), + [sym_function_definition] = STATE(2356), + [sym_subshell] = STATE(2356), + [sym_pipeline] = STATE(2356), + [sym_list] = STATE(2356), + [sym_negated_command] = STATE(2356), + [sym_test_command] = STATE(2356), + [sym_declaration_command] = STATE(2356), + [sym_unset_command] = STATE(2356), + [sym_command] = STATE(2356), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2357), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(2358), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), + [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), + [anon_sym_while] = ACTIONS(89), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5698), - [anon_sym_SEMI_SEMI] = ACTIONS(5706), - [anon_sym_function] = ACTIONS(4782), + [anon_sym_function] = ACTIONS(91), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -55477,3125 +59010,1443 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), + [sym__special_characters] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(105), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), - }, - [2096] = { - [anon_sym_esac] = ACTIONS(5708), - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_RPAREN] = ACTIONS(5708), - [anon_sym_SEMI_SEMI] = ACTIONS(5708), - [anon_sym_PIPE_AMP] = ACTIONS(5708), - [anon_sym_AMP_AMP] = ACTIONS(5708), - [anon_sym_PIPE_PIPE] = ACTIONS(5708), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5708), - [anon_sym_LF] = ACTIONS(5710), - [anon_sym_AMP] = ACTIONS(5708), - }, - [2097] = { - [aux_sym_case_item_repeat1] = STATE(2470), - [aux_sym_concatenation_repeat1] = STATE(1635), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(5712), - [sym_comment] = ACTIONS(53), - }, - [2098] = { - [aux_sym_case_item_repeat1] = STATE(2472), - [aux_sym_concatenation_repeat1] = STATE(1635), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(5714), - [sym_comment] = ACTIONS(53), - }, - [2099] = { - [aux_sym_case_item_repeat1] = STATE(2472), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(5714), - [sym_comment] = ACTIONS(53), - }, - [2100] = { - [anon_sym_esac] = ACTIONS(5716), - [sym_comment] = ACTIONS(53), - }, - [2101] = { - [anon_sym_esac] = ACTIONS(5718), - [anon_sym_PIPE] = ACTIONS(5718), - [anon_sym_RPAREN] = ACTIONS(5718), - [anon_sym_SEMI_SEMI] = ACTIONS(5718), - [anon_sym_PIPE_AMP] = ACTIONS(5718), - [anon_sym_AMP_AMP] = ACTIONS(5718), - [anon_sym_PIPE_PIPE] = ACTIONS(5718), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5718), - [anon_sym_LF] = ACTIONS(5720), - [anon_sym_AMP] = ACTIONS(5718), - }, - [2102] = { - [anon_sym_esac] = ACTIONS(5722), - [sym_comment] = ACTIONS(53), - }, - [2103] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_in] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [sym__special_characters] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), - [anon_sym_BQUOTE] = ACTIONS(5204), - [anon_sym_LT_LPAREN] = ACTIONS(5204), - [anon_sym_GT_LPAREN] = ACTIONS(5204), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2104] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_in] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5208), - [anon_sym_LT_LPAREN] = ACTIONS(5208), - [anon_sym_GT_LPAREN] = ACTIONS(5208), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5208), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2105] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_in] = ACTIONS(5212), - [anon_sym_SEMI_SEMI] = ACTIONS(5212), - [sym__special_characters] = ACTIONS(5212), - [anon_sym_DQUOTE] = ACTIONS(5212), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), - [anon_sym_BQUOTE] = ACTIONS(5212), - [anon_sym_LT_LPAREN] = ACTIONS(5212), - [anon_sym_GT_LPAREN] = ACTIONS(5212), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5212), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LF] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), - }, - [2106] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_in] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), - }, - [2107] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5724), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2108] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_in] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5222), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(5222), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), - [anon_sym_BQUOTE] = ACTIONS(5222), - [anon_sym_LT_LPAREN] = ACTIONS(5222), - [anon_sym_GT_LPAREN] = ACTIONS(5222), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2109] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5726), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2110] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_in] = ACTIONS(5228), - [anon_sym_SEMI_SEMI] = ACTIONS(5228), - [sym__special_characters] = ACTIONS(5228), - [anon_sym_DQUOTE] = ACTIONS(5228), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), - [anon_sym_BQUOTE] = ACTIONS(5228), - [anon_sym_LT_LPAREN] = ACTIONS(5228), - [anon_sym_GT_LPAREN] = ACTIONS(5228), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5228), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LF] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), - }, - [2111] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5728), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2112] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_in] = ACTIONS(5234), - [anon_sym_SEMI_SEMI] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(5234), - [anon_sym_DQUOTE] = ACTIONS(5234), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), - [anon_sym_BQUOTE] = ACTIONS(5234), - [anon_sym_LT_LPAREN] = ACTIONS(5234), - [anon_sym_GT_LPAREN] = ACTIONS(5234), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5234), - [anon_sym_SEMI] = ACTIONS(5234), - [anon_sym_LF] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(5234), - }, - [2113] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_in] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5238), - [sym__special_characters] = ACTIONS(5238), - [anon_sym_DQUOTE] = ACTIONS(5238), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), - [anon_sym_BQUOTE] = ACTIONS(5238), - [anon_sym_LT_LPAREN] = ACTIONS(5238), - [anon_sym_GT_LPAREN] = ACTIONS(5238), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5238), - [anon_sym_SEMI] = ACTIONS(5238), - [anon_sym_LF] = ACTIONS(5236), - [anon_sym_AMP] = ACTIONS(5238), - }, - [2114] = { - [aux_sym_concatenation_repeat1] = STATE(2114), - [sym__concat] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2115] = { - [aux_sym_concatenation_repeat1] = STATE(2117), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LF] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), - }, - [2116] = { - [aux_sym_concatenation_repeat1] = STATE(2117), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [2117] = { - [aux_sym_concatenation_repeat1] = STATE(2478), - [sym__concat] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2118] = { - [aux_sym_concatenation_repeat1] = STATE(2120), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1135), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1135), - [anon_sym_LT_AMP] = ACTIONS(1135), - [anon_sym_GT_AMP] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1135), - [anon_sym_LT_LT_LT] = ACTIONS(1135), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LF] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), - }, - [2119] = { - [aux_sym_concatenation_repeat1] = STATE(2120), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1139), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1139), - [anon_sym_LT_AMP] = ACTIONS(1139), - [anon_sym_GT_AMP] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [2120] = { - [aux_sym_concatenation_repeat1] = STATE(2479), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2121] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5202), - [anon_sym_EQ_EQ] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5202), - [anon_sym_GT] = ACTIONS(5202), - [anon_sym_BANG_EQ] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5202), - }, - [2122] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_RBRACK] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5206), - [anon_sym_EQ_EQ] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5206), - [anon_sym_GT] = ACTIONS(5206), - [anon_sym_BANG_EQ] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5206), - }, - [2123] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [anon_sym_RBRACK] = ACTIONS(5210), - [anon_sym_EQ_TILDE] = ACTIONS(5210), - [anon_sym_EQ_EQ] = ACTIONS(5210), - [anon_sym_EQ] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5210), - [anon_sym_GT] = ACTIONS(5210), - [anon_sym_BANG_EQ] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5210), - }, - [2124] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_RBRACK] = ACTIONS(5214), - [anon_sym_EQ_TILDE] = ACTIONS(5214), - [anon_sym_EQ_EQ] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5214), - [anon_sym_BANG_EQ] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5214), - }, - [2125] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5730), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2126] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_RBRACK] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5220), - [anon_sym_GT] = ACTIONS(5220), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5220), - }, - [2127] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5732), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2128] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_PIPE_PIPE] = ACTIONS(5226), - [anon_sym_RBRACK] = ACTIONS(5226), - [anon_sym_EQ_TILDE] = ACTIONS(5226), - [anon_sym_EQ_EQ] = ACTIONS(5226), - [anon_sym_EQ] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5226), - [anon_sym_GT] = ACTIONS(5226), - [anon_sym_BANG_EQ] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5226), - }, - [2129] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5734), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2130] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_RBRACK] = ACTIONS(5232), - [anon_sym_EQ_TILDE] = ACTIONS(5232), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(5234), - [anon_sym_LT] = ACTIONS(5232), - [anon_sym_GT] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5232), - }, - [2131] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_RBRACK] = ACTIONS(5236), - [anon_sym_EQ_TILDE] = ACTIONS(5236), - [anon_sym_EQ_EQ] = ACTIONS(5236), - [anon_sym_EQ] = ACTIONS(5238), - [anon_sym_LT] = ACTIONS(5236), - [anon_sym_GT] = ACTIONS(5236), - [anon_sym_BANG_EQ] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5236), - }, - [2132] = { - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1754), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2133] = { - [aux_sym_concatenation_repeat1] = STATE(2133), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(5736), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2134] = { - [sym_file_descriptor] = ACTIONS(1761), - [sym__concat] = ACTIONS(1761), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1763), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1763), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), - }, - [2135] = { - [anon_sym_DQUOTE] = ACTIONS(5739), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [2136] = { - [sym_concatenation] = STATE(2487), - [sym_string] = STATE(2486), - [sym_simple_expansion] = STATE(2486), - [sym_string_expansion] = STATE(2486), - [sym_expansion] = STATE(2486), - [sym_command_substitution] = STATE(2486), - [sym_process_substitution] = STATE(2486), - [anon_sym_RBRACE] = ACTIONS(5741), - [sym__special_characters] = ACTIONS(5743), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(5745), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5745), - }, - [2137] = { - [sym_file_descriptor] = ACTIONS(1846), - [sym__concat] = ACTIONS(1846), - [anon_sym_esac] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_SEMI_SEMI] = ACTIONS(1848), - [anon_sym_PIPE_AMP] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_GT_GT] = ACTIONS(1848), - [anon_sym_AMP_GT] = ACTIONS(1848), - [anon_sym_AMP_GT_GT] = ACTIONS(1848), - [anon_sym_LT_AMP] = ACTIONS(1848), - [anon_sym_GT_AMP] = ACTIONS(1848), - [anon_sym_LT_LT] = ACTIONS(1848), - [anon_sym_LT_LT_DASH] = ACTIONS(1848), - [anon_sym_LT_LT_LT] = ACTIONS(1848), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), - }, - [2138] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5747), - }, - [2139] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5749), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2140] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(5751), - [sym_comment] = ACTIONS(53), - }, - [2141] = { - [sym_concatenation] = STATE(2493), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2493), - [anon_sym_RBRACE] = ACTIONS(5753), - [anon_sym_EQ] = ACTIONS(5755), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5759), - [anon_sym_COLON] = ACTIONS(5755), - [anon_sym_COLON_QMARK] = ACTIONS(5755), - [anon_sym_COLON_DASH] = ACTIONS(5755), - [anon_sym_PERCENT] = ACTIONS(5755), - [anon_sym_DASH] = ACTIONS(5755), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2142] = { - [sym_concatenation] = STATE(2496), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2496), - [anon_sym_RBRACE] = ACTIONS(5761), - [anon_sym_EQ] = ACTIONS(5763), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5767), - [anon_sym_COLON] = ACTIONS(5763), - [anon_sym_COLON_QMARK] = ACTIONS(5763), - [anon_sym_COLON_DASH] = ACTIONS(5763), - [anon_sym_PERCENT] = ACTIONS(5763), - [anon_sym_DASH] = ACTIONS(5763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2143] = { - [sym_concatenation] = STATE(2498), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2498), - [anon_sym_RBRACE] = ACTIONS(5741), - [anon_sym_EQ] = ACTIONS(5769), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5773), - [anon_sym_COLON] = ACTIONS(5769), - [anon_sym_COLON_QMARK] = ACTIONS(5769), - [anon_sym_COLON_DASH] = ACTIONS(5769), - [anon_sym_PERCENT] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(5769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2144] = { - [sym_file_descriptor] = ACTIONS(1914), - [sym__concat] = ACTIONS(1914), - [anon_sym_esac] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1916), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(1916), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), - }, - [2145] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5775), - }, - [2146] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5777), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2147] = { - [sym_file_descriptor] = ACTIONS(1922), - [sym__concat] = ACTIONS(1922), - [anon_sym_esac] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_GT_GT] = ACTIONS(1924), - [anon_sym_AMP_GT] = ACTIONS(1924), - [anon_sym_AMP_GT_GT] = ACTIONS(1924), - [anon_sym_LT_AMP] = ACTIONS(1924), - [anon_sym_GT_AMP] = ACTIONS(1924), - [anon_sym_LT_LT] = ACTIONS(1924), - [anon_sym_LT_LT_DASH] = ACTIONS(1924), - [anon_sym_LT_LT_LT] = ACTIONS(1924), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1924), - }, - [2148] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5779), - }, - [2149] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5741), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2150] = { - [sym_file_descriptor] = ACTIONS(2066), - [sym__concat] = ACTIONS(2066), - [anon_sym_esac] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2068), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2068), - [anon_sym_LT_AMP] = ACTIONS(2068), - [anon_sym_GT_AMP] = ACTIONS(2068), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_LT_LT_DASH] = ACTIONS(2068), - [anon_sym_LT_LT_LT] = ACTIONS(2068), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), - }, - [2151] = { - [sym_file_descriptor] = ACTIONS(2132), - [sym__concat] = ACTIONS(2132), - [anon_sym_esac] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2134), - [anon_sym_GT_GT] = ACTIONS(2134), - [anon_sym_AMP_GT] = ACTIONS(2134), - [anon_sym_AMP_GT_GT] = ACTIONS(2134), - [anon_sym_LT_AMP] = ACTIONS(2134), - [anon_sym_GT_AMP] = ACTIONS(2134), - [anon_sym_LT_LT] = ACTIONS(2134), - [anon_sym_LT_LT_DASH] = ACTIONS(2134), - [anon_sym_LT_LT_LT] = ACTIONS(2134), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), - }, - [2152] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5202), - [anon_sym_EQ_EQ] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5202), - [anon_sym_GT] = ACTIONS(5202), - [anon_sym_BANG_EQ] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5202), - }, - [2153] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5206), - [anon_sym_EQ_EQ] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5206), - [anon_sym_GT] = ACTIONS(5206), - [anon_sym_BANG_EQ] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5206), - }, - [2154] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5210), - [anon_sym_EQ_TILDE] = ACTIONS(5210), - [anon_sym_EQ_EQ] = ACTIONS(5210), - [anon_sym_EQ] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5210), - [anon_sym_GT] = ACTIONS(5210), - [anon_sym_BANG_EQ] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5210), - }, - [2155] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5214), - [anon_sym_EQ_TILDE] = ACTIONS(5214), - [anon_sym_EQ_EQ] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5214), - [anon_sym_BANG_EQ] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5214), - }, - [2156] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5781), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2157] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5220), - [anon_sym_GT] = ACTIONS(5220), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5220), - }, - [2158] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5783), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2159] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_PIPE_PIPE] = ACTIONS(5226), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5226), - [anon_sym_EQ_TILDE] = ACTIONS(5226), - [anon_sym_EQ_EQ] = ACTIONS(5226), - [anon_sym_EQ] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5226), - [anon_sym_GT] = ACTIONS(5226), - [anon_sym_BANG_EQ] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5226), - }, - [2160] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5785), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2161] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5232), - [anon_sym_EQ_TILDE] = ACTIONS(5232), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(5234), - [anon_sym_LT] = ACTIONS(5232), - [anon_sym_GT] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5232), - }, - [2162] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5236), - [anon_sym_EQ_TILDE] = ACTIONS(5236), - [anon_sym_EQ_EQ] = ACTIONS(5236), - [anon_sym_EQ] = ACTIONS(5238), - [anon_sym_LT] = ACTIONS(5236), - [anon_sym_GT] = ACTIONS(5236), - [anon_sym_BANG_EQ] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5236), - }, - [2163] = { - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [anon_sym_PIPE_AMP] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [sym__special_characters] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), - [anon_sym_BQUOTE] = ACTIONS(5204), - [anon_sym_LT_LPAREN] = ACTIONS(5204), - [anon_sym_GT_LPAREN] = ACTIONS(5204), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2164] = { - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [anon_sym_PIPE_AMP] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5208), - [anon_sym_LT_LPAREN] = ACTIONS(5208), - [anon_sym_GT_LPAREN] = ACTIONS(5208), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2165] = { - [sym__concat] = ACTIONS(5210), - [sym_variable_name] = ACTIONS(5210), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_SEMI_SEMI] = ACTIONS(5212), - [anon_sym_PIPE_AMP] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [sym__special_characters] = ACTIONS(5212), - [anon_sym_DQUOTE] = ACTIONS(5212), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), - [anon_sym_BQUOTE] = ACTIONS(5212), - [anon_sym_LT_LPAREN] = ACTIONS(5212), - [anon_sym_GT_LPAREN] = ACTIONS(5212), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), - [sym_word] = ACTIONS(5212), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LF] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), + [sym_word] = ACTIONS(107), }, [2166] = { - [sym__concat] = ACTIONS(5214), - [sym_variable_name] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), - [sym_word] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), - }, - [2167] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5787), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2168] = { - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5222), - [anon_sym_PIPE_AMP] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_PIPE_PIPE] = ACTIONS(5222), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(5222), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), - [anon_sym_BQUOTE] = ACTIONS(5222), - [anon_sym_LT_LPAREN] = ACTIONS(5222), - [anon_sym_GT_LPAREN] = ACTIONS(5222), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2169] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5789), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2170] = { - [sym__concat] = ACTIONS(5226), - [sym_variable_name] = ACTIONS(5226), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5228), - [anon_sym_SEMI_SEMI] = ACTIONS(5228), - [anon_sym_PIPE_AMP] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [sym__special_characters] = ACTIONS(5228), - [anon_sym_DQUOTE] = ACTIONS(5228), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), - [anon_sym_BQUOTE] = ACTIONS(5228), - [anon_sym_LT_LPAREN] = ACTIONS(5228), - [anon_sym_GT_LPAREN] = ACTIONS(5228), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), - [sym_word] = ACTIONS(5228), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LF] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), - }, - [2171] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5791), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2172] = { - [sym__concat] = ACTIONS(5232), - [sym_variable_name] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5234), - [anon_sym_SEMI_SEMI] = ACTIONS(5234), - [anon_sym_PIPE_AMP] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_PIPE_PIPE] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(5234), - [anon_sym_DQUOTE] = ACTIONS(5234), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), - [anon_sym_BQUOTE] = ACTIONS(5234), - [anon_sym_LT_LPAREN] = ACTIONS(5234), - [anon_sym_GT_LPAREN] = ACTIONS(5234), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), - [sym_word] = ACTIONS(5234), - [anon_sym_SEMI] = ACTIONS(5234), - [anon_sym_LF] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(5234), - }, - [2173] = { - [sym__concat] = ACTIONS(5236), - [sym_variable_name] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5238), - [anon_sym_PIPE_AMP] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_PIPE_PIPE] = ACTIONS(5238), - [sym__special_characters] = ACTIONS(5238), - [anon_sym_DQUOTE] = ACTIONS(5238), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), - [anon_sym_BQUOTE] = ACTIONS(5238), - [anon_sym_LT_LPAREN] = ACTIONS(5238), - [anon_sym_GT_LPAREN] = ACTIONS(5238), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), - [sym_word] = ACTIONS(5238), - [anon_sym_SEMI] = ACTIONS(5238), - [anon_sym_LF] = ACTIONS(5236), - [anon_sym_AMP] = ACTIONS(5238), - }, - [2174] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [anon_sym_PIPE_AMP] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [sym__special_characters] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), - [anon_sym_BQUOTE] = ACTIONS(5204), - [anon_sym_LT_LPAREN] = ACTIONS(5204), - [anon_sym_GT_LPAREN] = ACTIONS(5204), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2175] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [anon_sym_PIPE_AMP] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5208), - [anon_sym_LT_LPAREN] = ACTIONS(5208), - [anon_sym_GT_LPAREN] = ACTIONS(5208), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2176] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_SEMI_SEMI] = ACTIONS(5212), - [anon_sym_PIPE_AMP] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [sym__special_characters] = ACTIONS(5212), - [anon_sym_DQUOTE] = ACTIONS(5212), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), - [anon_sym_BQUOTE] = ACTIONS(5212), - [anon_sym_LT_LPAREN] = ACTIONS(5212), - [anon_sym_GT_LPAREN] = ACTIONS(5212), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), - [sym_word] = ACTIONS(5212), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LF] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), - }, - [2177] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), - [sym_word] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), - }, - [2178] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5793), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2179] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5222), - [anon_sym_PIPE_AMP] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_PIPE_PIPE] = ACTIONS(5222), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(5222), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), - [anon_sym_BQUOTE] = ACTIONS(5222), - [anon_sym_LT_LPAREN] = ACTIONS(5222), - [anon_sym_GT_LPAREN] = ACTIONS(5222), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2180] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5795), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2181] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5228), - [anon_sym_SEMI_SEMI] = ACTIONS(5228), - [anon_sym_PIPE_AMP] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [sym__special_characters] = ACTIONS(5228), - [anon_sym_DQUOTE] = ACTIONS(5228), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), - [anon_sym_BQUOTE] = ACTIONS(5228), - [anon_sym_LT_LPAREN] = ACTIONS(5228), - [anon_sym_GT_LPAREN] = ACTIONS(5228), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), - [sym_word] = ACTIONS(5228), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LF] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), - }, - [2182] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5797), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2183] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5234), - [anon_sym_SEMI_SEMI] = ACTIONS(5234), - [anon_sym_PIPE_AMP] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_PIPE_PIPE] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(5234), - [anon_sym_DQUOTE] = ACTIONS(5234), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), - [anon_sym_BQUOTE] = ACTIONS(5234), - [anon_sym_LT_LPAREN] = ACTIONS(5234), - [anon_sym_GT_LPAREN] = ACTIONS(5234), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), - [sym_word] = ACTIONS(5234), - [anon_sym_SEMI] = ACTIONS(5234), - [anon_sym_LF] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(5234), - }, - [2184] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5238), - [anon_sym_PIPE_AMP] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_PIPE_PIPE] = ACTIONS(5238), - [sym__special_characters] = ACTIONS(5238), - [anon_sym_DQUOTE] = ACTIONS(5238), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), - [anon_sym_BQUOTE] = ACTIONS(5238), - [anon_sym_LT_LPAREN] = ACTIONS(5238), - [anon_sym_GT_LPAREN] = ACTIONS(5238), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), - [sym_word] = ACTIONS(5238), - [anon_sym_SEMI] = ACTIONS(5238), - [anon_sym_LF] = ACTIONS(5236), - [anon_sym_AMP] = ACTIONS(5238), - }, - [2185] = { - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5202), - }, - [2186] = { - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5206), - }, - [2187] = { - [sym_file_descriptor] = ACTIONS(5210), - [sym__concat] = ACTIONS(5210), - [sym_variable_name] = ACTIONS(5210), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_PIPE_AMP] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [anon_sym_LT] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5210), - [anon_sym_AMP_GT] = ACTIONS(5212), - [anon_sym_AMP_GT_GT] = ACTIONS(5210), - [anon_sym_LT_AMP] = ACTIONS(5210), - [anon_sym_GT_AMP] = ACTIONS(5210), - [sym__special_characters] = ACTIONS(5210), - [anon_sym_DQUOTE] = ACTIONS(5210), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), - [anon_sym_BQUOTE] = ACTIONS(5210), - [anon_sym_LT_LPAREN] = ACTIONS(5210), - [anon_sym_GT_LPAREN] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5210), - }, - [2188] = { - [sym_file_descriptor] = ACTIONS(5214), - [sym__concat] = ACTIONS(5214), - [sym_variable_name] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_PIPE_AMP] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5214), - [anon_sym_AMP_GT] = ACTIONS(5216), - [anon_sym_AMP_GT_GT] = ACTIONS(5214), - [anon_sym_LT_AMP] = ACTIONS(5214), - [anon_sym_GT_AMP] = ACTIONS(5214), - [sym__special_characters] = ACTIONS(5214), - [anon_sym_DQUOTE] = ACTIONS(5214), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), - [anon_sym_BQUOTE] = ACTIONS(5214), - [anon_sym_LT_LPAREN] = ACTIONS(5214), - [anon_sym_GT_LPAREN] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5214), - }, - [2189] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5799), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2190] = { - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5220), - }, - [2191] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5801), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2192] = { - [sym_file_descriptor] = ACTIONS(5226), - [sym__concat] = ACTIONS(5226), - [sym_variable_name] = ACTIONS(5226), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5226), - [anon_sym_PIPE_AMP] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_PIPE_PIPE] = ACTIONS(5226), - [anon_sym_LT] = ACTIONS(5228), - [anon_sym_GT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5226), - [anon_sym_AMP_GT] = ACTIONS(5228), - [anon_sym_AMP_GT_GT] = ACTIONS(5226), - [anon_sym_LT_AMP] = ACTIONS(5226), - [anon_sym_GT_AMP] = ACTIONS(5226), - [sym__special_characters] = ACTIONS(5226), - [anon_sym_DQUOTE] = ACTIONS(5226), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), - [anon_sym_BQUOTE] = ACTIONS(5226), - [anon_sym_LT_LPAREN] = ACTIONS(5226), - [anon_sym_GT_LPAREN] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5226), - }, - [2193] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5803), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2194] = { - [sym_file_descriptor] = ACTIONS(5232), - [sym__concat] = ACTIONS(5232), - [sym_variable_name] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_PIPE_AMP] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_GT_GT] = ACTIONS(5232), - [anon_sym_AMP_GT] = ACTIONS(5234), - [anon_sym_AMP_GT_GT] = ACTIONS(5232), - [anon_sym_LT_AMP] = ACTIONS(5232), - [anon_sym_GT_AMP] = ACTIONS(5232), - [sym__special_characters] = ACTIONS(5232), - [anon_sym_DQUOTE] = ACTIONS(5232), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), - [anon_sym_BQUOTE] = ACTIONS(5232), - [anon_sym_LT_LPAREN] = ACTIONS(5232), - [anon_sym_GT_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5232), - }, - [2195] = { - [sym_file_descriptor] = ACTIONS(5236), - [sym__concat] = ACTIONS(5236), - [sym_variable_name] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_PIPE_AMP] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_GT_GT] = ACTIONS(5236), - [anon_sym_AMP_GT] = ACTIONS(5238), - [anon_sym_AMP_GT_GT] = ACTIONS(5236), - [anon_sym_LT_AMP] = ACTIONS(5236), - [anon_sym_GT_AMP] = ACTIONS(5236), - [sym__special_characters] = ACTIONS(5236), - [anon_sym_DQUOTE] = ACTIONS(5236), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), - [anon_sym_BQUOTE] = ACTIONS(5236), - [anon_sym_LT_LPAREN] = ACTIONS(5236), - [anon_sym_GT_LPAREN] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5236), - }, - [2196] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym__string_content] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), - [anon_sym_BQUOTE] = ACTIONS(5204), - [sym_comment] = ACTIONS(179), - }, - [2197] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym__string_content] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5208), - [sym_comment] = ACTIONS(179), - }, - [2198] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_DQUOTE] = ACTIONS(5212), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym__string_content] = ACTIONS(5210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), - [anon_sym_BQUOTE] = ACTIONS(5212), - [sym_comment] = ACTIONS(179), - }, - [2199] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym__string_content] = ACTIONS(5214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [sym_comment] = ACTIONS(179), - }, - [2200] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5805), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2201] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5222), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym__string_content] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), - [anon_sym_BQUOTE] = ACTIONS(5222), - [sym_comment] = ACTIONS(179), - }, - [2202] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5807), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2203] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_DQUOTE] = ACTIONS(5228), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym__string_content] = ACTIONS(5226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), - [anon_sym_BQUOTE] = ACTIONS(5228), - [sym_comment] = ACTIONS(179), - }, - [2204] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5809), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2205] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_DQUOTE] = ACTIONS(5234), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym__string_content] = ACTIONS(5232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), - [anon_sym_BQUOTE] = ACTIONS(5234), - [sym_comment] = ACTIONS(179), - }, - [2206] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_DQUOTE] = ACTIONS(5238), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym__string_content] = ACTIONS(5236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), - [anon_sym_BQUOTE] = ACTIONS(5238), - [sym_comment] = ACTIONS(179), - }, - [2207] = { - [anon_sym_RBRACE] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(5811), - [sym__special_characters] = ACTIONS(5811), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(5811), - [sym_raw_string] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4567), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(5811), - [anon_sym_COLON_QMARK] = ACTIONS(5811), - [anon_sym_COLON_DASH] = ACTIONS(5811), - [anon_sym_PERCENT] = ACTIONS(5811), - [anon_sym_DASH] = ACTIONS(5811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4567), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LT_LPAREN] = ACTIONS(4567), - [anon_sym_GT_LPAREN] = ACTIONS(4567), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5811), - }, - [2208] = { - [anon_sym_RBRACE] = ACTIONS(4569), - [anon_sym_EQ] = ACTIONS(5813), - [sym__special_characters] = ACTIONS(5813), - [anon_sym_DQUOTE] = ACTIONS(4569), - [anon_sym_DOLLAR] = ACTIONS(5813), - [sym_raw_string] = ACTIONS(4569), - [anon_sym_POUND] = ACTIONS(4569), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4569), - [anon_sym_COLON] = ACTIONS(5813), - [anon_sym_COLON_QMARK] = ACTIONS(5813), - [anon_sym_COLON_DASH] = ACTIONS(5813), - [anon_sym_PERCENT] = ACTIONS(5813), - [anon_sym_DASH] = ACTIONS(5813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4569), - [anon_sym_LT_LPAREN] = ACTIONS(4569), - [anon_sym_GT_LPAREN] = ACTIONS(4569), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5813), - }, - [2209] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_RBRACE] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - }, - [2210] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - }, - [2211] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5815), - [sym_comment] = ACTIONS(53), - }, - [2212] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5817), - [sym_comment] = ACTIONS(53), - }, - [2213] = { - [anon_sym_RBRACE] = ACTIONS(5817), - [sym_comment] = ACTIONS(53), - }, - [2214] = { - [sym_concatenation] = STATE(2520), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2520), - [anon_sym_RBRACE] = ACTIONS(5819), - [anon_sym_EQ] = ACTIONS(5821), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5821), - [anon_sym_COLON_QMARK] = ACTIONS(5821), - [anon_sym_COLON_DASH] = ACTIONS(5821), - [anon_sym_PERCENT] = ACTIONS(5821), - [anon_sym_DASH] = ACTIONS(5821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2215] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_RBRACE] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - }, - [2216] = { - [sym_concatenation] = STATE(2523), - [sym_string] = STATE(2522), - [sym_simple_expansion] = STATE(2522), - [sym_string_expansion] = STATE(2522), - [sym_expansion] = STATE(2522), - [sym_command_substitution] = STATE(2522), - [sym_process_substitution] = STATE(2522), - [anon_sym_RBRACE] = ACTIONS(5817), - [sym__special_characters] = ACTIONS(5825), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(5827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5827), - }, - [2217] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - }, - [2218] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5829), - }, - [2219] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5831), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2220] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - }, - [2221] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5833), - }, - [2222] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5835), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2223] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5837), - }, - [2224] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5817), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2225] = { - [sym_concatenation] = STATE(2530), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2530), - [anon_sym_RBRACE] = ACTIONS(5839), - [anon_sym_EQ] = ACTIONS(5841), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5841), - [anon_sym_COLON_QMARK] = ACTIONS(5841), - [anon_sym_COLON_DASH] = ACTIONS(5841), - [anon_sym_PERCENT] = ACTIONS(5841), - [anon_sym_DASH] = ACTIONS(5841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2226] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - }, - [2227] = { - [sym_concatenation] = STATE(2532), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2532), - [anon_sym_RBRACE] = ACTIONS(5845), - [anon_sym_EQ] = ACTIONS(5847), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5847), - [anon_sym_COLON_QMARK] = ACTIONS(5847), - [anon_sym_COLON_DASH] = ACTIONS(5847), - [anon_sym_PERCENT] = ACTIONS(5847), - [anon_sym_DASH] = ACTIONS(5847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2228] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_RBRACE] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4166), - [sym__special_characters] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4164), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4164), - [anon_sym_POUND] = ACTIONS(4164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), - [anon_sym_COLON] = ACTIONS(4166), - [anon_sym_COLON_QMARK] = ACTIONS(4166), - [anon_sym_COLON_DASH] = ACTIONS(4166), - [anon_sym_PERCENT] = ACTIONS(4166), - [anon_sym_DASH] = ACTIONS(4166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), - [anon_sym_BQUOTE] = ACTIONS(4164), - [anon_sym_LT_LPAREN] = ACTIONS(4164), - [anon_sym_GT_LPAREN] = ACTIONS(4164), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4166), - }, - [2229] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4172), - [anon_sym_EQ] = ACTIONS(4174), - [sym__special_characters] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4172), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4172), - [anon_sym_POUND] = ACTIONS(4172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), - [anon_sym_COLON] = ACTIONS(4174), - [anon_sym_COLON_QMARK] = ACTIONS(4174), - [anon_sym_COLON_DASH] = ACTIONS(4174), - [anon_sym_PERCENT] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), - [anon_sym_BQUOTE] = ACTIONS(4172), - [anon_sym_LT_LPAREN] = ACTIONS(4172), - [anon_sym_GT_LPAREN] = ACTIONS(4172), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4174), - }, - [2230] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_RBRACE] = ACTIONS(4259), - [anon_sym_EQ] = ACTIONS(4261), - [sym__special_characters] = ACTIONS(4261), - [anon_sym_DQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4259), - [anon_sym_POUND] = ACTIONS(4259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), - [anon_sym_COLON] = ACTIONS(4261), - [anon_sym_COLON_QMARK] = ACTIONS(4261), - [anon_sym_COLON_DASH] = ACTIONS(4261), - [anon_sym_PERCENT] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4259), - [anon_sym_LT_LPAREN] = ACTIONS(4259), - [anon_sym_GT_LPAREN] = ACTIONS(4259), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4261), - }, - [2231] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5851), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2232] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5853), - [sym_comment] = ACTIONS(53), - }, - [2233] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5855), - [sym_comment] = ACTIONS(53), - }, - [2234] = { - [anon_sym_RBRACE] = ACTIONS(5855), - [sym_comment] = ACTIONS(53), - }, - [2235] = { - [sym_concatenation] = STATE(2537), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2537), - [anon_sym_RBRACE] = ACTIONS(5857), - [anon_sym_EQ] = ACTIONS(5859), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5859), - [anon_sym_COLON_QMARK] = ACTIONS(5859), - [anon_sym_COLON_DASH] = ACTIONS(5859), - [anon_sym_PERCENT] = ACTIONS(5859), - [anon_sym_DASH] = ACTIONS(5859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2236] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_RBRACE] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4277), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4277), - [anon_sym_COLON_QMARK] = ACTIONS(4277), - [anon_sym_COLON_DASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LT_LPAREN] = ACTIONS(4275), - [anon_sym_GT_LPAREN] = ACTIONS(4275), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4277), - }, - [2237] = { - [sym_concatenation] = STATE(2539), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2539), - [anon_sym_RBRACE] = ACTIONS(5863), - [anon_sym_EQ] = ACTIONS(5865), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5865), - [anon_sym_COLON_QMARK] = ACTIONS(5865), - [anon_sym_COLON_DASH] = ACTIONS(5865), - [anon_sym_PERCENT] = ACTIONS(5865), - [anon_sym_DASH] = ACTIONS(5865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2238] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_RBRACE] = ACTIONS(4285), - [anon_sym_EQ] = ACTIONS(4287), - [sym__special_characters] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4285), - [anon_sym_POUND] = ACTIONS(4285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), - [anon_sym_COLON] = ACTIONS(4287), - [anon_sym_COLON_QMARK] = ACTIONS(4287), - [anon_sym_COLON_DASH] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), - [anon_sym_BQUOTE] = ACTIONS(4285), - [anon_sym_LT_LPAREN] = ACTIONS(4285), - [anon_sym_GT_LPAREN] = ACTIONS(4285), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4287), - }, - [2239] = { - [sym_concatenation] = STATE(2541), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2541), - [anon_sym_RBRACE] = ACTIONS(5869), - [anon_sym_EQ] = ACTIONS(5871), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5871), - [anon_sym_COLON_QMARK] = ACTIONS(5871), - [anon_sym_COLON_DASH] = ACTIONS(5871), - [anon_sym_PERCENT] = ACTIONS(5871), - [anon_sym_DASH] = ACTIONS(5871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2240] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_EQ] = ACTIONS(4297), - [sym__special_characters] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4295), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4295), - [anon_sym_POUND] = ACTIONS(4295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), - [anon_sym_COLON] = ACTIONS(4297), - [anon_sym_COLON_QMARK] = ACTIONS(4297), - [anon_sym_COLON_DASH] = ACTIONS(4297), - [anon_sym_PERCENT] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), - [anon_sym_BQUOTE] = ACTIONS(4295), - [anon_sym_LT_LPAREN] = ACTIONS(4295), - [anon_sym_GT_LPAREN] = ACTIONS(4295), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4297), - }, - [2241] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5875), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2242] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4303), - [sym__special_characters] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(4301), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4301), - [anon_sym_POUND] = ACTIONS(4301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(4303), - [anon_sym_COLON_QMARK] = ACTIONS(4303), - [anon_sym_COLON_DASH] = ACTIONS(4303), - [anon_sym_PERCENT] = ACTIONS(4303), - [anon_sym_DASH] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), - [anon_sym_BQUOTE] = ACTIONS(4301), - [anon_sym_LT_LPAREN] = ACTIONS(4301), - [anon_sym_GT_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4303), - }, - [2243] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5877), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2244] = { - [sym__simple_heredoc_body] = ACTIONS(5879), - [sym__heredoc_body_beginning] = ACTIONS(5879), - [sym_file_descriptor] = ACTIONS(5879), - [sym__concat] = ACTIONS(5879), - [anon_sym_esac] = ACTIONS(5881), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5881), - [anon_sym_SEMI_SEMI] = ACTIONS(5881), - [anon_sym_PIPE_AMP] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5881), - [anon_sym_PIPE_PIPE] = ACTIONS(5881), - [anon_sym_EQ_TILDE] = ACTIONS(5881), - [anon_sym_EQ_EQ] = ACTIONS(5881), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_GT_GT] = ACTIONS(5881), - [anon_sym_AMP_GT] = ACTIONS(5881), - [anon_sym_AMP_GT_GT] = ACTIONS(5881), - [anon_sym_LT_AMP] = ACTIONS(5881), - [anon_sym_GT_AMP] = ACTIONS(5881), - [anon_sym_LT_LT] = ACTIONS(5881), - [anon_sym_LT_LT_DASH] = ACTIONS(5881), - [anon_sym_LT_LT_LT] = ACTIONS(5881), - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5881), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), - [anon_sym_BQUOTE] = ACTIONS(5881), - [anon_sym_LT_LPAREN] = ACTIONS(5881), - [anon_sym_GT_LPAREN] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5881), - [anon_sym_SEMI] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5881), - }, - [2245] = { - [sym__simple_heredoc_body] = ACTIONS(5883), - [sym__heredoc_body_beginning] = ACTIONS(5883), - [sym_file_descriptor] = ACTIONS(5883), - [sym__concat] = ACTIONS(5883), - [anon_sym_esac] = ACTIONS(5885), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5885), - [anon_sym_SEMI_SEMI] = ACTIONS(5885), - [anon_sym_PIPE_AMP] = ACTIONS(5885), - [anon_sym_AMP_AMP] = ACTIONS(5885), - [anon_sym_PIPE_PIPE] = ACTIONS(5885), - [anon_sym_EQ_TILDE] = ACTIONS(5885), - [anon_sym_EQ_EQ] = ACTIONS(5885), - [anon_sym_LT] = ACTIONS(5885), - [anon_sym_GT] = ACTIONS(5885), - [anon_sym_GT_GT] = ACTIONS(5885), - [anon_sym_AMP_GT] = ACTIONS(5885), - [anon_sym_AMP_GT_GT] = ACTIONS(5885), - [anon_sym_LT_AMP] = ACTIONS(5885), - [anon_sym_GT_AMP] = ACTIONS(5885), - [anon_sym_LT_LT] = ACTIONS(5885), - [anon_sym_LT_LT_DASH] = ACTIONS(5885), - [anon_sym_LT_LT_LT] = ACTIONS(5885), - [sym__special_characters] = ACTIONS(5885), - [anon_sym_DQUOTE] = ACTIONS(5885), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), - [anon_sym_BQUOTE] = ACTIONS(5885), - [anon_sym_LT_LPAREN] = ACTIONS(5885), - [anon_sym_GT_LPAREN] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5885), - [anon_sym_SEMI] = ACTIONS(5885), - [anon_sym_LF] = ACTIONS(5883), - [anon_sym_AMP] = ACTIONS(5885), - }, - [2246] = { - [sym__simple_heredoc_body] = ACTIONS(5887), - [sym__heredoc_body_beginning] = ACTIONS(5887), - [sym_file_descriptor] = ACTIONS(5887), - [sym__concat] = ACTIONS(5887), - [anon_sym_esac] = ACTIONS(5889), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5889), - [anon_sym_SEMI_SEMI] = ACTIONS(5889), - [anon_sym_PIPE_AMP] = ACTIONS(5889), - [anon_sym_AMP_AMP] = ACTIONS(5889), - [anon_sym_PIPE_PIPE] = ACTIONS(5889), - [anon_sym_EQ_TILDE] = ACTIONS(5889), - [anon_sym_EQ_EQ] = ACTIONS(5889), - [anon_sym_LT] = ACTIONS(5889), - [anon_sym_GT] = ACTIONS(5889), - [anon_sym_GT_GT] = ACTIONS(5889), - [anon_sym_AMP_GT] = ACTIONS(5889), - [anon_sym_AMP_GT_GT] = ACTIONS(5889), - [anon_sym_LT_AMP] = ACTIONS(5889), - [anon_sym_GT_AMP] = ACTIONS(5889), - [anon_sym_LT_LT] = ACTIONS(5889), - [anon_sym_LT_LT_DASH] = ACTIONS(5889), - [anon_sym_LT_LT_LT] = ACTIONS(5889), - [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), - [anon_sym_BQUOTE] = ACTIONS(5889), - [anon_sym_LT_LPAREN] = ACTIONS(5889), - [anon_sym_GT_LPAREN] = ACTIONS(5889), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5889), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LF] = ACTIONS(5887), - [anon_sym_AMP] = ACTIONS(5889), - }, - [2247] = { - [sym__terminated_statement] = STATE(2545), - [sym_for_statement] = STATE(680), - [sym_c_style_for_statement] = STATE(680), - [sym_while_statement] = STATE(680), - [sym_if_statement] = STATE(680), - [sym_case_statement] = STATE(680), - [sym_function_definition] = STATE(680), - [sym_subshell] = STATE(680), - [sym_pipeline] = STATE(680), - [sym_list] = STATE(680), - [sym_negated_command] = STATE(680), - [sym_test_command] = STATE(680), - [sym_declaration_command] = STATE(680), - [sym_unset_command] = STATE(680), - [sym_command] = STATE(680), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(681), + [sym__terminated_statement] = STATE(2361), + [sym_for_statement] = STATE(2359), + [sym_c_style_for_statement] = STATE(2359), + [sym_while_statement] = STATE(2359), + [sym_if_statement] = STATE(2359), + [sym_case_statement] = STATE(2359), + [sym_function_definition] = STATE(2359), + [sym_subshell] = STATE(2359), + [sym_pipeline] = STATE(2359), + [sym_list] = STATE(2359), + [sym_negated_command] = STATE(2359), + [sym_test_command] = STATE(2359), + [sym_declaration_command] = STATE(2359), + [sym_unset_command] = STATE(2359), + [sym_command] = STATE(2359), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2360), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2545), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(2361), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [2167] = { + [sym__terminated_statement] = STATE(2364), + [sym_for_statement] = STATE(2362), + [sym_c_style_for_statement] = STATE(2362), + [sym_while_statement] = STATE(2362), + [sym_if_statement] = STATE(2362), + [sym_case_statement] = STATE(2362), + [sym_function_definition] = STATE(2362), + [sym_subshell] = STATE(2362), + [sym_pipeline] = STATE(2362), + [sym_list] = STATE(2362), + [sym_negated_command] = STATE(2362), + [sym_test_command] = STATE(2362), + [sym_declaration_command] = STATE(2362), + [sym_unset_command] = STATE(2362), + [sym_command] = STATE(2362), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2363), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(2364), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [2168] = { + [sym_variable_name] = ACTIONS(599), + [anon_sym_esac] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_SEMI_SEMI] = ACTIONS(601), + [anon_sym_PIPE_AMP] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [sym__special_characters] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(601), + [sym_raw_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(601), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), + [anon_sym_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(601), + [anon_sym_GT_LPAREN] = ACTIONS(601), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(601), + [sym_word] = ACTIONS(601), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + }, + [2169] = { + [anon_sym_EQ] = ACTIONS(5442), + [anon_sym_PLUS_EQ] = ACTIONS(5442), + [sym_comment] = ACTIONS(53), + }, + [2170] = { + [sym_variable_assignment] = STATE(2365), + [sym_subscript] = STATE(2169), + [sym_concatenation] = STATE(2365), + [sym_string] = STATE(2163), + [sym_simple_expansion] = STATE(2163), + [sym_string_expansion] = STATE(2163), + [sym_expansion] = STATE(2163), + [sym_command_substitution] = STATE(2163), + [sym_process_substitution] = STATE(2163), + [aux_sym_declaration_command_repeat1] = STATE(2365), + [sym_variable_name] = ACTIONS(5040), + [anon_sym_esac] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_SEMI_SEMI] = ACTIONS(603), + [anon_sym_PIPE_AMP] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [sym__special_characters] = ACTIONS(5042), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5046), + [sym_raw_string] = ACTIONS(5048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(5054), + [anon_sym_LT_LPAREN] = ACTIONS(5056), + [anon_sym_GT_LPAREN] = ACTIONS(5056), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5058), + [sym_word] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(603), + }, + [2171] = { + [aux_sym_concatenation_repeat1] = STATE(2367), + [sym__concat] = ACTIONS(5470), + [anon_sym_esac] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_SEMI_SEMI] = ACTIONS(609), + [anon_sym_PIPE_AMP] = ACTIONS(609), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [sym__special_characters] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(609), + [sym_raw_string] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(609), + [anon_sym_LT_LPAREN] = ACTIONS(609), + [anon_sym_GT_LPAREN] = ACTIONS(609), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), + [sym_word] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(609), + }, + [2172] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(2370), + [anon_sym_DQUOTE] = ACTIONS(5472), + [anon_sym_DOLLAR] = ACTIONS(5474), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [2173] = { + [sym_string] = STATE(2372), + [anon_sym_DQUOTE] = ACTIONS(5476), + [anon_sym_DOLLAR] = ACTIONS(5478), + [sym_raw_string] = ACTIONS(5480), + [anon_sym_POUND] = ACTIONS(5478), + [anon_sym_DASH] = ACTIONS(5478), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5478), + [anon_sym_AT] = ACTIONS(5478), + [anon_sym_QMARK] = ACTIONS(5478), + [anon_sym_0] = ACTIONS(5484), + [anon_sym__] = ACTIONS(5484), + }, + [2174] = { + [aux_sym_concatenation_repeat1] = STATE(2367), + [sym__concat] = ACTIONS(5470), + [anon_sym_esac] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_SEMI_SEMI] = ACTIONS(627), + [anon_sym_PIPE_AMP] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [sym__special_characters] = ACTIONS(627), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(627), + [sym_raw_string] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(627), + [anon_sym_GT_LPAREN] = ACTIONS(627), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(627), + [sym_word] = ACTIONS(627), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_LF] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(627), + }, + [2175] = { + [sym_subscript] = STATE(2378), + [sym_variable_name] = ACTIONS(5486), + [anon_sym_DOLLAR] = ACTIONS(5488), + [anon_sym_POUND] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5488), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5492), + [anon_sym_STAR] = ACTIONS(5488), + [anon_sym_AT] = ACTIONS(5488), + [anon_sym_QMARK] = ACTIONS(5488), + [anon_sym_0] = ACTIONS(5494), + [anon_sym__] = ACTIONS(5494), + }, + [2176] = { + [sym__terminated_statement] = STATE(2381), + [sym_for_statement] = STATE(2379), + [sym_c_style_for_statement] = STATE(2379), + [sym_while_statement] = STATE(2379), + [sym_if_statement] = STATE(2379), + [sym_case_statement] = STATE(2379), + [sym_function_definition] = STATE(2379), + [sym_subshell] = STATE(2379), + [sym_pipeline] = STATE(2379), + [sym_list] = STATE(2379), + [sym_negated_command] = STATE(2379), + [sym_test_command] = STATE(2379), + [sym_declaration_command] = STATE(2379), + [sym_unset_command] = STATE(2379), + [sym_command] = STATE(2379), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2380), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(2381), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [2177] = { + [sym__terminated_statement] = STATE(2384), + [sym_for_statement] = STATE(2382), + [sym_c_style_for_statement] = STATE(2382), + [sym_while_statement] = STATE(2382), + [sym_if_statement] = STATE(2382), + [sym_case_statement] = STATE(2382), + [sym_function_definition] = STATE(2382), + [sym_subshell] = STATE(2382), + [sym_pipeline] = STATE(2382), + [sym_list] = STATE(2382), + [sym_negated_command] = STATE(2382), + [sym_test_command] = STATE(2382), + [sym_declaration_command] = STATE(2382), + [sym_unset_command] = STATE(2382), + [sym_command] = STATE(2382), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2383), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2384), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(263), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(277), + }, + [2178] = { + [sym__terminated_statement] = STATE(2387), + [sym_for_statement] = STATE(2385), + [sym_c_style_for_statement] = STATE(2385), + [sym_while_statement] = STATE(2385), + [sym_if_statement] = STATE(2385), + [sym_case_statement] = STATE(2385), + [sym_function_definition] = STATE(2385), + [sym_subshell] = STATE(2385), + [sym_pipeline] = STATE(2385), + [sym_list] = STATE(2385), + [sym_negated_command] = STATE(2385), + [sym_test_command] = STATE(2385), + [sym_declaration_command] = STATE(2385), + [sym_unset_command] = STATE(2385), + [sym_command] = STATE(2385), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2386), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(2387), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [2179] = { + [anon_sym_esac] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(641), + [anon_sym_SEMI_SEMI] = ACTIONS(641), + [anon_sym_PIPE_AMP] = ACTIONS(641), + [anon_sym_AMP_AMP] = ACTIONS(641), + [anon_sym_PIPE_PIPE] = ACTIONS(641), + [sym__special_characters] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(641), + [sym_raw_string] = ACTIONS(641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_LT_LPAREN] = ACTIONS(641), + [anon_sym_GT_LPAREN] = ACTIONS(641), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(641), + [sym_word] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(641), + [anon_sym_LF] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(641), + }, + [2180] = { + [sym_concatenation] = STATE(2388), + [sym_string] = STATE(2174), + [sym_simple_expansion] = STATE(2174), + [sym_string_expansion] = STATE(2174), + [sym_expansion] = STATE(2174), + [sym_command_substitution] = STATE(2174), + [sym_process_substitution] = STATE(2174), + [aux_sym_unset_command_repeat1] = STATE(2388), + [anon_sym_esac] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [sym__special_characters] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR] = ACTIONS(5064), + [sym_raw_string] = ACTIONS(5066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5070), + [anon_sym_BQUOTE] = ACTIONS(5072), + [anon_sym_LT_LPAREN] = ACTIONS(5074), + [anon_sym_GT_LPAREN] = ACTIONS(5074), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5076), + [sym_word] = ACTIONS(5066), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_LF] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(645), + }, + [2181] = { + [aux_sym_concatenation_repeat1] = STATE(2389), + [sym__simple_heredoc_body] = ACTIONS(683), + [sym__heredoc_body_beginning] = ACTIONS(683), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_EQ_TILDE] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [2182] = { + [anon_sym_RPAREN] = ACTIONS(5496), + [sym_comment] = ACTIONS(53), + }, + [2183] = { + [sym_for_statement] = STATE(471), + [sym_c_style_for_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_case_statement] = STATE(471), + [sym_function_definition] = STATE(471), + [sym_subshell] = STATE(471), + [sym_pipeline] = STATE(471), + [sym_list] = STATE(471), + [sym_negated_command] = STATE(471), + [sym_test_command] = STATE(471), + [sym_declaration_command] = STATE(471), + [sym_unset_command] = STATE(471), + [sym_command] = STATE(471), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(472), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_command_repeat1] = STATE(1889), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4320), + }, + [2184] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(5498), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(5500), + [anon_sym_DQUOTE] = ACTIONS(5502), + [anon_sym_DOLLAR] = ACTIONS(5500), + [sym_raw_string] = ACTIONS(5502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5502), + [anon_sym_BQUOTE] = ACTIONS(5502), + [anon_sym_LT_LPAREN] = ACTIONS(5502), + [anon_sym_GT_LPAREN] = ACTIONS(5502), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5500), + }, + [2185] = { + [sym_for_statement] = STATE(2391), + [sym_c_style_for_statement] = STATE(2391), + [sym_while_statement] = STATE(2391), + [sym_if_statement] = STATE(2391), + [sym_case_statement] = STATE(2391), + [sym_function_definition] = STATE(2391), + [sym_subshell] = STATE(2391), + [sym_pipeline] = STATE(2391), + [sym_list] = STATE(2391), + [sym_negated_command] = STATE(2391), + [sym_test_command] = STATE(2391), + [sym_declaration_command] = STATE(2391), + [sym_unset_command] = STATE(2391), + [sym_command] = STATE(2391), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(2392), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_command_repeat1] = STATE(1889), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4320), + }, + [2186] = { + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_GT_GT] = ACTIONS(5506), + [anon_sym_AMP_GT] = ACTIONS(5504), + [anon_sym_AMP_GT_GT] = ACTIONS(5506), + [anon_sym_LT_AMP] = ACTIONS(5506), + [anon_sym_GT_AMP] = ACTIONS(5506), + [sym_comment] = ACTIONS(53), + }, + [2187] = { + [sym_concatenation] = STATE(482), + [sym_string] = STATE(2395), + [sym_simple_expansion] = STATE(2395), + [sym_string_expansion] = STATE(2395), + [sym_expansion] = STATE(2395), + [sym_command_substitution] = STATE(2395), + [sym_process_substitution] = STATE(2395), + [sym__special_characters] = ACTIONS(5508), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5510), + [sym_regex] = ACTIONS(841), + }, + [2188] = { + [sym_concatenation] = STATE(485), + [sym_string] = STATE(2397), + [sym_simple_expansion] = STATE(2397), + [sym_string_expansion] = STATE(2397), + [sym_expansion] = STATE(2397), + [sym_command_substitution] = STATE(2397), + [sym_process_substitution] = STATE(2397), + [sym__special_characters] = ACTIONS(5512), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5514), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5514), + }, + [2189] = { + [sym_concatenation] = STATE(489), + [sym_string] = STATE(2399), + [sym_simple_expansion] = STATE(2399), + [sym_string_expansion] = STATE(2399), + [sym_expansion] = STATE(2399), + [sym_command_substitution] = STATE(2399), + [sym_process_substitution] = STATE(2399), + [sym__special_characters] = ACTIONS(5516), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5518), + }, + [2190] = { + [aux_sym_concatenation_repeat1] = STATE(2181), + [sym__simple_heredoc_body] = ACTIONS(853), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(853), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(855), + [anon_sym_PIPE_AMP] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(855), + [anon_sym_LT_AMP] = ACTIONS(855), + [anon_sym_GT_AMP] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_LT_LT_DASH] = ACTIONS(855), + [anon_sym_LT_LT_LT] = ACTIONS(855), + [sym__special_characters] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(855), + [anon_sym_BQUOTE] = ACTIONS(855), + [anon_sym_LT_LPAREN] = ACTIONS(855), + [anon_sym_GT_LPAREN] = ACTIONS(855), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), + }, + [2191] = { + [aux_sym_concatenation_repeat1] = STATE(2181), + [sym__simple_heredoc_body] = ACTIONS(857), + [sym__heredoc_body_beginning] = ACTIONS(857), + [sym_file_descriptor] = ACTIONS(857), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_SEMI_SEMI] = ACTIONS(859), + [anon_sym_PIPE_AMP] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_EQ_TILDE] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_AMP_GT] = ACTIONS(859), + [anon_sym_AMP_GT_GT] = ACTIONS(859), + [anon_sym_LT_AMP] = ACTIONS(859), + [anon_sym_GT_AMP] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_LT_LT_DASH] = ACTIONS(859), + [anon_sym_LT_LT_LT] = ACTIONS(859), + [sym__special_characters] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [sym_raw_string] = ACTIONS(859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(859), + [anon_sym_LT_LPAREN] = ACTIONS(859), + [anon_sym_GT_LPAREN] = ACTIONS(859), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(859), + }, + [2192] = { + [sym_file_redirect] = STATE(2400), + [sym_heredoc_redirect] = STATE(2400), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(2400), + [aux_sym_while_statement_repeat1] = STATE(2400), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(5086), + [anon_sym_esac] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5090), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(5092), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), + }, + [2193] = { + [sym_file_redirect] = STATE(2401), + [sym_heredoc_redirect] = STATE(2401), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(2401), + [sym_concatenation] = STATE(2402), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_while_statement_repeat1] = STATE(2401), + [aux_sym_command_repeat2] = STATE(2402), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(5086), + [anon_sym_esac] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5090), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(5092), + [sym__special_characters] = ACTIONS(5094), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), + }, + [2194] = { + [anon_sym_esac] = ACTIONS(5498), + [sym__special_characters] = ACTIONS(5502), + [anon_sym_DQUOTE] = ACTIONS(5502), + [anon_sym_DOLLAR] = ACTIONS(5500), + [sym_raw_string] = ACTIONS(5502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5502), + [anon_sym_BQUOTE] = ACTIONS(5502), + [anon_sym_LT_LPAREN] = ACTIONS(5502), + [anon_sym_GT_LPAREN] = ACTIONS(5502), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5500), + }, + [2195] = { + [anon_sym_esac] = ACTIONS(5498), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5520), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2196] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_esac] = ACTIONS(5498), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5520), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2197] = { + [sym__terminated_statement] = STATE(2197), + [sym_for_statement] = STATE(26), + [sym_c_style_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_negated_command] = STATE(26), + [sym_test_command] = STATE(26), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(28), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2197), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(865), + [sym_variable_name] = ACTIONS(868), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(876), + [anon_sym_if] = ACTIONS(879), + [anon_sym_case] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(3387), + [anon_sym_SEMI_SEMI] = ACTIONS(871), + [anon_sym_function] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_typeset] = ACTIONS(900), + [anon_sym_export] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_local] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_AMP_GT] = ACTIONS(906), + [anon_sym_AMP_GT_GT] = ACTIONS(909), + [anon_sym_LT_AMP] = ACTIONS(909), + [anon_sym_GT_AMP] = ACTIONS(909), + [sym__special_characters] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(918), + [sym_raw_string] = ACTIONS(921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(930), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(936), + }, + [2198] = { + [sym_file_redirect] = STATE(2401), + [sym_heredoc_redirect] = STATE(2401), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(2401), + [sym_concatenation] = STATE(2404), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_while_statement_repeat1] = STATE(2401), + [aux_sym_command_repeat2] = STATE(2404), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(5086), + [anon_sym_esac] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_SEMI_SEMI] = ACTIONS(861), + [anon_sym_PIPE_AMP] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5090), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(5092), + [sym__special_characters] = ACTIONS(5094), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(861), + }, + [2199] = { + [sym__terminated_statement] = STATE(2197), + [sym_for_statement] = STATE(2406), + [sym_c_style_for_statement] = STATE(2406), + [sym_while_statement] = STATE(2406), + [sym_if_statement] = STATE(2406), + [sym_case_statement] = STATE(2406), + [sym_function_definition] = STATE(2406), + [sym_subshell] = STATE(2406), + [sym_pipeline] = STATE(2406), + [sym_list] = STATE(2406), + [sym_negated_command] = STATE(2406), + [sym_test_command] = STATE(2406), + [sym_declaration_command] = STATE(2406), + [sym_unset_command] = STATE(2406), + [sym_command] = STATE(2406), + [sym_command_name] = STATE(1885), + [sym_variable_assignment] = STATE(2407), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_program_repeat1] = STATE(2197), + [aux_sym_command_repeat1] = STATE(1889), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5498), + [anon_sym_SEMI_SEMI] = ACTIONS(5522), + [anon_sym_function] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4320), + }, + [2200] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(5524), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(5526), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5528), + [anon_sym_BQUOTE] = ACTIONS(5528), + [anon_sym_LT_LPAREN] = ACTIONS(5528), + [anon_sym_GT_LPAREN] = ACTIONS(5528), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5526), + }, + [2201] = { + [anon_sym_esac] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5528), + [anon_sym_BQUOTE] = ACTIONS(5528), + [anon_sym_LT_LPAREN] = ACTIONS(5528), + [anon_sym_GT_LPAREN] = ACTIONS(5528), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5526), + }, + [2202] = { + [anon_sym_esac] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5530), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2203] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_esac] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5530), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2204] = { + [sym__terminated_statement] = STATE(2197), + [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_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(1885), + [sym_variable_assignment] = STATE(2411), + [sym_subscript] = STATE(1887), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(1882), + [sym_simple_expansion] = STATE(1882), + [sym_string_expansion] = STATE(1882), + [sym_expansion] = STATE(1882), + [sym_command_substitution] = STATE(1882), + [sym_process_substitution] = STATE(1882), + [aux_sym_program_repeat1] = STATE(2197), + [aux_sym_command_repeat1] = STATE(1889), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4296), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5524), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_function] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_declare] = ACTIONS(4312), + [anon_sym_typeset] = ACTIONS(4312), + [anon_sym_export] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_local] = ACTIONS(4312), + [anon_sym_unset] = ACTIONS(4314), + [anon_sym_unsetenv] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4320), + }, + [2205] = { + [sym__terminated_statement] = STATE(2415), + [sym_for_statement] = STATE(2413), + [sym_c_style_for_statement] = STATE(2413), + [sym_while_statement] = STATE(2413), + [sym_if_statement] = STATE(2413), + [sym_case_statement] = STATE(2413), + [sym_function_definition] = STATE(2413), + [sym_subshell] = STATE(2413), + [sym_pipeline] = STATE(2413), + [sym_list] = STATE(2413), + [sym_negated_command] = STATE(2413), + [sym_test_command] = STATE(2413), + [sym_declaration_command] = STATE(2413), + [sym_unset_command] = STATE(2413), + [sym_command] = STATE(2413), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2414), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2415), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(5534), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(5891), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -58625,3992 +60476,2687 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2248] = { - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_RPAREN] = ACTIONS(4656), - [anon_sym_PIPE_AMP] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_BQUOTE] = ACTIONS(4656), + [2206] = { + [aux_sym_case_item_repeat1] = STATE(1891), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(5536), [sym_comment] = ACTIONS(53), }, + [2207] = { + [sym__terminated_statement] = STATE(2420), + [sym_for_statement] = STATE(2418), + [sym_c_style_for_statement] = STATE(2418), + [sym_while_statement] = STATE(2418), + [sym_if_statement] = STATE(2418), + [sym_case_statement] = STATE(2418), + [sym_function_definition] = STATE(2418), + [sym_subshell] = STATE(2418), + [sym_pipeline] = STATE(2418), + [sym_list] = STATE(2418), + [sym_negated_command] = STATE(2418), + [sym_test_command] = STATE(2418), + [sym_declaration_command] = STATE(2418), + [sym_unset_command] = STATE(2418), + [sym_command] = STATE(2418), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2419), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2420), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(5538), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [2208] = { + [aux_sym_case_item_repeat1] = STATE(1891), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(5540), + [sym_comment] = ACTIONS(53), + }, + [2209] = { + [anon_sym_esac] = ACTIONS(5542), + [anon_sym_PIPE] = ACTIONS(5542), + [anon_sym_RPAREN] = ACTIONS(5542), + [anon_sym_SEMI_SEMI] = ACTIONS(5542), + [anon_sym_PIPE_AMP] = ACTIONS(5542), + [anon_sym_AMP_AMP] = ACTIONS(5542), + [anon_sym_PIPE_PIPE] = ACTIONS(5542), + [anon_sym_BQUOTE] = ACTIONS(5542), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5542), + [anon_sym_LF] = ACTIONS(5544), + [anon_sym_AMP] = ACTIONS(5542), + }, + [2210] = { + [anon_sym_esac] = ACTIONS(5546), + [anon_sym_PIPE] = ACTIONS(5546), + [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_SEMI_SEMI] = ACTIONS(5546), + [anon_sym_PIPE_AMP] = ACTIONS(5546), + [anon_sym_AMP_AMP] = ACTIONS(5546), + [anon_sym_PIPE_PIPE] = ACTIONS(5546), + [anon_sym_BQUOTE] = ACTIONS(5546), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5546), + [anon_sym_LF] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(5546), + }, + [2211] = { + [sym__concat] = ACTIONS(5310), + [anon_sym_in] = ACTIONS(5312), + [anon_sym_SEMI_SEMI] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(5312), + [anon_sym_LT_LPAREN] = ACTIONS(5312), + [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym_LF] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), + }, + [2212] = { + [sym__concat] = ACTIONS(5314), + [anon_sym_in] = ACTIONS(5316), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(5316), + [anon_sym_LT_LPAREN] = ACTIONS(5316), + [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_LF] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + }, + [2213] = { + [sym__concat] = ACTIONS(5318), + [anon_sym_in] = ACTIONS(5320), + [anon_sym_SEMI_SEMI] = ACTIONS(5320), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(5320), + [anon_sym_LT_LPAREN] = ACTIONS(5320), + [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_LF] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5320), + }, + [2214] = { + [aux_sym_concatenation_repeat1] = STATE(2214), + [sym__concat] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [2215] = { + [aux_sym_concatenation_repeat1] = STATE(2215), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(5143), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [2216] = { + [sym__concat] = ACTIONS(5310), + [anon_sym_AMP_AMP] = ACTIONS(5310), + [anon_sym_PIPE_PIPE] = ACTIONS(5310), + [anon_sym_RBRACK] = ACTIONS(5310), + [anon_sym_EQ_TILDE] = ACTIONS(5310), + [anon_sym_EQ_EQ] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_BANG_EQ] = ACTIONS(5310), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5310), + }, + [2217] = { + [sym__concat] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_EQ_TILDE] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5314), + }, + [2218] = { + [sym__concat] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5318), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_EQ_TILDE] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_BANG_EQ] = ACTIONS(5318), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5318), + }, + [2219] = { + [sym_file_descriptor] = ACTIONS(2818), + [sym__concat] = ACTIONS(2818), + [anon_sym_esac] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_SEMI_SEMI] = ACTIONS(2820), + [anon_sym_PIPE_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_AMP_GT] = ACTIONS(2820), + [anon_sym_AMP_GT_GT] = ACTIONS(2820), + [anon_sym_LT_AMP] = ACTIONS(2820), + [anon_sym_GT_AMP] = ACTIONS(2820), + [anon_sym_LT_LT] = ACTIONS(2820), + [anon_sym_LT_LT_DASH] = ACTIONS(2820), + [anon_sym_LT_LT_LT] = ACTIONS(2820), + [anon_sym_BQUOTE] = ACTIONS(2820), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + }, + [2220] = { + [sym_file_descriptor] = ACTIONS(2832), + [sym__concat] = ACTIONS(2832), + [anon_sym_esac] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_SEMI_SEMI] = ACTIONS(2834), + [anon_sym_PIPE_AMP] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2834), + [anon_sym_GT_GT] = ACTIONS(2834), + [anon_sym_AMP_GT] = ACTIONS(2834), + [anon_sym_AMP_GT_GT] = ACTIONS(2834), + [anon_sym_LT_AMP] = ACTIONS(2834), + [anon_sym_GT_AMP] = ACTIONS(2834), + [anon_sym_LT_LT] = ACTIONS(2834), + [anon_sym_LT_LT_DASH] = ACTIONS(2834), + [anon_sym_LT_LT_LT] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), + }, + [2221] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5550), + [sym_comment] = ACTIONS(53), + }, + [2222] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5552), + [sym_comment] = ACTIONS(53), + }, + [2223] = { + [anon_sym_RBRACE] = ACTIONS(5552), + [sym_comment] = ACTIONS(53), + }, + [2224] = { + [sym_concatenation] = STATE(2425), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2425), + [anon_sym_RBRACE] = ACTIONS(5554), + [anon_sym_EQ] = ACTIONS(5556), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5556), + [anon_sym_COLON_QMARK] = ACTIONS(5556), + [anon_sym_COLON_DASH] = ACTIONS(5556), + [anon_sym_PERCENT] = ACTIONS(5556), + [anon_sym_DASH] = ACTIONS(5556), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2225] = { + [sym_file_descriptor] = ACTIONS(2926), + [sym__concat] = ACTIONS(2926), + [anon_sym_esac] = ACTIONS(2928), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_RPAREN] = ACTIONS(2928), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2928), + [anon_sym_GT] = ACTIONS(2928), + [anon_sym_GT_GT] = ACTIONS(2928), + [anon_sym_AMP_GT] = ACTIONS(2928), + [anon_sym_AMP_GT_GT] = ACTIONS(2928), + [anon_sym_LT_AMP] = ACTIONS(2928), + [anon_sym_GT_AMP] = ACTIONS(2928), + [anon_sym_LT_LT] = ACTIONS(2928), + [anon_sym_LT_LT_DASH] = ACTIONS(2928), + [anon_sym_LT_LT_LT] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2928), + }, + [2226] = { + [sym_concatenation] = STATE(2428), + [sym_string] = STATE(2427), + [sym_simple_expansion] = STATE(2427), + [sym_string_expansion] = STATE(2427), + [sym_expansion] = STATE(2427), + [sym_command_substitution] = STATE(2427), + [sym_process_substitution] = STATE(2427), + [anon_sym_RBRACE] = ACTIONS(5552), + [sym__special_characters] = ACTIONS(5560), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(5562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5562), + }, + [2227] = { + [sym_file_descriptor] = ACTIONS(2969), + [sym__concat] = ACTIONS(2969), + [anon_sym_esac] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_RPAREN] = ACTIONS(2971), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2971), + [anon_sym_AMP_GT] = ACTIONS(2971), + [anon_sym_AMP_GT_GT] = ACTIONS(2971), + [anon_sym_LT_AMP] = ACTIONS(2971), + [anon_sym_GT_AMP] = ACTIONS(2971), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_LT_LT_DASH] = ACTIONS(2971), + [anon_sym_LT_LT_LT] = ACTIONS(2971), + [anon_sym_BQUOTE] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + }, + [2228] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5564), + }, + [2229] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5566), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2230] = { + [sym_file_descriptor] = ACTIONS(2977), + [sym__concat] = ACTIONS(2977), + [anon_sym_esac] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2979), + [anon_sym_PIPE_AMP] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2979), + [anon_sym_AMP_GT] = ACTIONS(2979), + [anon_sym_AMP_GT_GT] = ACTIONS(2979), + [anon_sym_LT_AMP] = ACTIONS(2979), + [anon_sym_GT_AMP] = ACTIONS(2979), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_LT_LT_DASH] = ACTIONS(2979), + [anon_sym_LT_LT_LT] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2979), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + }, + [2231] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5568), + }, + [2232] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5570), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2233] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5572), + }, + [2234] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2235] = { + [sym_concatenation] = STATE(2435), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2435), + [anon_sym_RBRACE] = ACTIONS(5574), + [anon_sym_EQ] = ACTIONS(5576), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5576), + [anon_sym_COLON_QMARK] = ACTIONS(5576), + [anon_sym_COLON_DASH] = ACTIONS(5576), + [anon_sym_PERCENT] = ACTIONS(5576), + [anon_sym_DASH] = ACTIONS(5576), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2236] = { + [sym_file_descriptor] = ACTIONS(2993), + [sym__concat] = ACTIONS(2993), + [anon_sym_esac] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_RPAREN] = ACTIONS(2995), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), + [anon_sym_PIPE_AMP] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2995), + [anon_sym_AMP_GT] = ACTIONS(2995), + [anon_sym_AMP_GT_GT] = ACTIONS(2995), + [anon_sym_LT_AMP] = ACTIONS(2995), + [anon_sym_GT_AMP] = ACTIONS(2995), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_LT_LT_DASH] = ACTIONS(2995), + [anon_sym_LT_LT_LT] = ACTIONS(2995), + [anon_sym_BQUOTE] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), + }, + [2237] = { + [sym_concatenation] = STATE(2437), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2437), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_EQ] = ACTIONS(5582), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5584), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5582), + [anon_sym_COLON_QMARK] = ACTIONS(5582), + [anon_sym_COLON_DASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2238] = { + [sym_file_descriptor] = ACTIONS(3003), + [sym__concat] = ACTIONS(3003), + [anon_sym_esac] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_SEMI_SEMI] = ACTIONS(3005), + [anon_sym_PIPE_AMP] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_GT] = ACTIONS(3005), + [anon_sym_AMP_GT_GT] = ACTIONS(3005), + [anon_sym_LT_AMP] = ACTIONS(3005), + [anon_sym_GT_AMP] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_LT_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT_LT] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3005), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + }, + [2239] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(5586), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2240] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(5586), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2241] = { + [sym_file_descriptor] = ACTIONS(3034), + [sym__concat] = ACTIONS(3034), + [anon_sym_esac] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3036), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), + }, + [2242] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(5588), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2243] = { + [sym__concat] = ACTIONS(5310), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(5310), + [anon_sym_AMP_AMP] = ACTIONS(5310), + [anon_sym_PIPE_PIPE] = ACTIONS(5310), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5310), + [anon_sym_EQ_TILDE] = ACTIONS(5310), + [anon_sym_EQ_EQ] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_BANG_EQ] = ACTIONS(5310), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5310), + }, + [2244] = { + [sym__concat] = ACTIONS(5314), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5314), + [anon_sym_EQ_TILDE] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5314), + }, + [2245] = { + [sym__concat] = ACTIONS(5318), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5318), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5318), + [anon_sym_EQ_TILDE] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_BANG_EQ] = ACTIONS(5318), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5318), + }, + [2246] = { + [sym__concat] = ACTIONS(5310), + [sym_variable_name] = ACTIONS(5310), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(5312), + [anon_sym_SEMI_SEMI] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(5312), + [anon_sym_AMP_AMP] = ACTIONS(5312), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(5312), + [anon_sym_LT_LPAREN] = ACTIONS(5312), + [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), + [sym_word] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym_LF] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), + }, + [2247] = { + [sym__concat] = ACTIONS(5314), + [sym_variable_name] = ACTIONS(5314), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(5316), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5316), + [anon_sym_AMP_AMP] = ACTIONS(5316), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(5316), + [anon_sym_LT_LPAREN] = ACTIONS(5316), + [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), + [sym_word] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_LF] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + }, + [2248] = { + [sym__concat] = ACTIONS(5318), + [sym_variable_name] = ACTIONS(5318), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(5320), + [anon_sym_SEMI_SEMI] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(5320), + [anon_sym_LT_LPAREN] = ACTIONS(5320), + [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), + [sym_word] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_LF] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5320), + }, [2249] = { - [sym_do_group] = STATE(2546), - [sym_compound_statement] = STATE(2546), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(5240), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5310), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(5312), + [anon_sym_SEMI_SEMI] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(5312), + [anon_sym_AMP_AMP] = ACTIONS(5312), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(5312), + [anon_sym_LT_LPAREN] = ACTIONS(5312), + [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), + [sym_word] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym_LF] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), }, [2250] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(5893), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_EQ_TILDE] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_BANG_EQ] = ACTIONS(3684), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3684), + [sym__concat] = ACTIONS(5314), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(5316), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5316), + [anon_sym_AMP_AMP] = ACTIONS(5316), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(5316), + [anon_sym_LT_LPAREN] = ACTIONS(5316), + [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), + [sym_word] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_LF] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), }, [2251] = { - [sym__expression] = STATE(2548), - [sym_binary_expression] = STATE(2548), - [sym_unary_expression] = STATE(2548), - [sym_parenthesized_expression] = STATE(2548), - [sym_concatenation] = STATE(2548), - [sym_string] = STATE(1102), - [sym_simple_expansion] = STATE(1102), - [sym_string_expansion] = STATE(1102), - [sym_expansion] = STATE(1102), - [sym_command_substitution] = STATE(1102), - [sym_process_substitution] = STATE(1102), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5893), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [sym__special_characters] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2345), - [sym_raw_string] = ACTIONS(2347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2351), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_LT_LPAREN] = ACTIONS(2355), - [anon_sym_GT_LPAREN] = ACTIONS(2355), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2357), - [sym_test_operator] = ACTIONS(2359), + [sym__concat] = ACTIONS(5318), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(5320), + [anon_sym_SEMI_SEMI] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(5320), + [anon_sym_LT_LPAREN] = ACTIONS(5320), + [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), + [sym_word] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_LF] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5320), }, [2252] = { - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_PIPE_AMP] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [anon_sym_BQUOTE] = ACTIONS(4760), + [sym_file_descriptor] = ACTIONS(5310), + [sym__concat] = ACTIONS(5310), + [sym_variable_name] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(5310), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(5310), + [anon_sym_LT_AMP] = ACTIONS(5310), + [anon_sym_GT_AMP] = ACTIONS(5310), + [sym__special_characters] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5310), + [anon_sym_BQUOTE] = ACTIONS(5310), + [anon_sym_LT_LPAREN] = ACTIONS(5310), + [anon_sym_GT_LPAREN] = ACTIONS(5310), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5310), }, [2253] = { - [anon_sym_PIPE] = ACTIONS(3769), - [anon_sym_RPAREN] = ACTIONS(3767), - [anon_sym_PIPE_AMP] = ACTIONS(3767), - [anon_sym_AMP_AMP] = ACTIONS(3767), - [anon_sym_PIPE_PIPE] = ACTIONS(3767), - [anon_sym_BQUOTE] = ACTIONS(3767), + [sym_file_descriptor] = ACTIONS(5314), + [sym__concat] = ACTIONS(5314), + [sym_variable_name] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(5314), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(5314), + [anon_sym_LT_AMP] = ACTIONS(5314), + [anon_sym_GT_AMP] = ACTIONS(5314), + [sym__special_characters] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5314), + [anon_sym_BQUOTE] = ACTIONS(5314), + [anon_sym_LT_LPAREN] = ACTIONS(5314), + [anon_sym_GT_LPAREN] = ACTIONS(5314), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5314), }, [2254] = { - [anon_sym_PIPE] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_PIPE_AMP] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), + [sym_file_descriptor] = ACTIONS(5318), + [sym__concat] = ACTIONS(5318), + [sym_variable_name] = ACTIONS(5318), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(5318), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(5318), + [anon_sym_LT_AMP] = ACTIONS(5318), + [anon_sym_GT_AMP] = ACTIONS(5318), + [sym__special_characters] = ACTIONS(5318), + [anon_sym_DQUOTE] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5318), + [anon_sym_BQUOTE] = ACTIONS(5318), + [anon_sym_LT_LPAREN] = ACTIONS(5318), + [anon_sym_GT_LPAREN] = ACTIONS(5318), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5318), }, [2255] = { - [anon_sym_fi] = ACTIONS(5895), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym__string_content] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(5312), + [sym_comment] = ACTIONS(179), }, [2256] = { - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym__string_content] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), }, [2257] = { - [anon_sym_esac] = ACTIONS(5897), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5318), + [anon_sym_DQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym__string_content] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), }, [2258] = { - [anon_sym_PIPE] = ACTIONS(4838), - [anon_sym_RPAREN] = ACTIONS(4840), - [anon_sym_PIPE_AMP] = ACTIONS(4840), - [anon_sym_AMP_AMP] = ACTIONS(4840), - [anon_sym_PIPE_PIPE] = ACTIONS(4840), - [anon_sym_BQUOTE] = ACTIONS(4840), + [sym__concat] = ACTIONS(3802), + [anon_sym_RBRACE] = ACTIONS(3802), [sym_comment] = ACTIONS(53), }, [2259] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(2551), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1640), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), + [sym__concat] = ACTIONS(3810), + [anon_sym_RBRACE] = ACTIONS(3810), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2467), }, [2260] = { - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4844), - [anon_sym_PIPE_AMP] = ACTIONS(4844), - [anon_sym_AMP_AMP] = ACTIONS(4844), - [anon_sym_PIPE_PIPE] = ACTIONS(4844), - [anon_sym_BQUOTE] = ACTIONS(4844), + [sym__concat] = ACTIONS(3909), + [anon_sym_RBRACE] = ACTIONS(3909), [sym_comment] = ACTIONS(53), }, [2261] = { - [anon_sym_esac] = ACTIONS(5899), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2262] = { - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_PIPE_AMP] = ACTIONS(4850), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_PIPE_PIPE] = ACTIONS(4850), - [anon_sym_BQUOTE] = ACTIONS(4850), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5592), [sym_comment] = ACTIONS(53), }, [2263] = { - [sym_case_item] = STATE(1151), - [sym_last_case_item] = STATE(2553), - [sym_concatenation] = STATE(1153), - [sym_string] = STATE(1150), - [sym_simple_expansion] = STATE(1150), - [sym_string_expansion] = STATE(1150), - [sym_expansion] = STATE(1150), - [sym_command_substitution] = STATE(1150), - [sym_process_substitution] = STATE(1150), - [aux_sym_case_statement_repeat1] = STATE(1640), - [sym__special_characters] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(2467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(153), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5594), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2467), }, [2264] = { - [anon_sym_PIPE] = ACTIONS(4880), - [anon_sym_RPAREN] = ACTIONS(4882), - [anon_sym_PIPE_AMP] = ACTIONS(4882), - [anon_sym_AMP_AMP] = ACTIONS(4882), - [anon_sym_PIPE_PIPE] = ACTIONS(4882), - [anon_sym_BQUOTE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(5594), [sym_comment] = ACTIONS(53), }, [2265] = { - [aux_sym_concatenation_repeat1] = STATE(2268), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2444), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2444), + [anon_sym_RBRACE] = ACTIONS(5596), + [anon_sym_EQ] = ACTIONS(5598), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5598), + [anon_sym_COLON_QMARK] = ACTIONS(5598), + [anon_sym_COLON_DASH] = ACTIONS(5598), + [anon_sym_PERCENT] = ACTIONS(5598), + [anon_sym_DASH] = ACTIONS(5598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2266] = { - [aux_sym_concatenation_repeat1] = STATE(2268), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_PIPE_AMP] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1137), - [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [sym__concat] = ACTIONS(3945), + [anon_sym_RBRACE] = ACTIONS(3945), [sym_comment] = ACTIONS(53), }, [2267] = { - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_PIPE_AMP] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1137), - [anon_sym_PIPE_PIPE] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2446), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2446), + [anon_sym_RBRACE] = ACTIONS(5602), + [anon_sym_EQ] = ACTIONS(5604), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5604), + [anon_sym_COLON_QMARK] = ACTIONS(5604), + [anon_sym_COLON_DASH] = ACTIONS(5604), + [anon_sym_PERCENT] = ACTIONS(5604), + [anon_sym_DASH] = ACTIONS(5604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2268] = { - [aux_sym_concatenation_repeat1] = STATE(2554), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym__concat] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(3955), [sym_comment] = ACTIONS(53), }, [2269] = { - [aux_sym_concatenation_repeat1] = STATE(2273), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1133), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2448), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2448), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_EQ] = ACTIONS(5610), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5612), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5610), + [anon_sym_COLON_QMARK] = ACTIONS(5610), + [anon_sym_COLON_DASH] = ACTIONS(5610), + [anon_sym_PERCENT] = ACTIONS(5610), + [anon_sym_DASH] = ACTIONS(5610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2270] = { - [aux_sym_concatenation_repeat1] = STATE(2273), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_PIPE_AMP] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1137), - [anon_sym_PIPE_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1137), - [anon_sym_LT_AMP] = ACTIONS(1137), - [anon_sym_GT_AMP] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1137), - [anon_sym_LT_LT_LT] = ACTIONS(1137), + [sym__concat] = ACTIONS(3965), + [anon_sym_RBRACE] = ACTIONS(3965), [sym_comment] = ACTIONS(53), }, [2271] = { - [sym_file_descriptor] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_PIPE_AMP] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1137), - [anon_sym_PIPE_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1137), - [anon_sym_LT_AMP] = ACTIONS(1137), - [anon_sym_GT_AMP] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1137), - [anon_sym_LT_LT_LT] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2272] = { - [sym_string] = STATE(2555), - [sym_simple_expansion] = STATE(2555), - [sym_string_expansion] = STATE(2555), - [sym_expansion] = STATE(2555), - [sym_command_substitution] = STATE(2555), - [sym_process_substitution] = STATE(2555), - [sym__special_characters] = ACTIONS(5901), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_DOLLAR] = ACTIONS(4357), - [sym_raw_string] = ACTIONS(5901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4363), - [anon_sym_BQUOTE] = ACTIONS(4365), - [anon_sym_LT_LPAREN] = ACTIONS(4367), - [anon_sym_GT_LPAREN] = ACTIONS(4367), + [sym__concat] = ACTIONS(3971), + [anon_sym_RBRACE] = ACTIONS(3971), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5901), }, [2273] = { - [aux_sym_concatenation_repeat1] = STATE(2556), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2274] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(735), - [anon_sym_LT_AMP] = ACTIONS(735), - [anon_sym_GT_AMP] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(735), - [anon_sym_LT_LT_LT] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), + [sym__concat] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3977), [sym_comment] = ACTIONS(53), }, [2275] = { - [anon_sym_DQUOTE] = ACTIONS(5903), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [sym__concat] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [sym_comment] = ACTIONS(53), }, [2276] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(5903), - [anon_sym_DOLLAR] = ACTIONS(5905), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), + [sym__concat] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(4758), + [sym__special_characters] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4756), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4756), + [anon_sym_POUND] = ACTIONS(4756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_COLON_QMARK] = ACTIONS(4758), + [anon_sym_COLON_DASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4756), + [anon_sym_BQUOTE] = ACTIONS(4756), + [anon_sym_LT_LPAREN] = ACTIONS(4756), + [anon_sym_GT_LPAREN] = ACTIONS(4756), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4758), }, [2277] = { - [sym_file_descriptor] = ACTIONS(767), - [sym__concat] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_AMP_GT] = ACTIONS(769), - [anon_sym_AMP_GT_GT] = ACTIONS(767), - [anon_sym_LT_AMP] = ACTIONS(767), - [anon_sym_GT_AMP] = ACTIONS(767), - [anon_sym_LT_LT] = ACTIONS(769), - [anon_sym_LT_LT_DASH] = ACTIONS(767), - [anon_sym_LT_LT_LT] = ACTIONS(767), - [anon_sym_BQUOTE] = ACTIONS(767), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4764), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4764), + [anon_sym_POUND] = ACTIONS(4764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4764), + [anon_sym_COLON] = ACTIONS(4766), + [anon_sym_COLON_QMARK] = ACTIONS(4766), + [anon_sym_COLON_DASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4764), + [anon_sym_BQUOTE] = ACTIONS(4764), + [anon_sym_LT_LPAREN] = ACTIONS(4764), + [anon_sym_GT_LPAREN] = ACTIONS(4764), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4766), }, [2278] = { - [sym_file_descriptor] = ACTIONS(771), - [sym__concat] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(771), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4770), + [sym__special_characters] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4768), + [anon_sym_POUND] = ACTIONS(4768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4768), + [anon_sym_COLON] = ACTIONS(4770), + [anon_sym_COLON_QMARK] = ACTIONS(4770), + [anon_sym_COLON_DASH] = ACTIONS(4770), + [anon_sym_PERCENT] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4768), + [anon_sym_BQUOTE] = ACTIONS(4768), + [anon_sym_LT_LPAREN] = ACTIONS(4768), + [anon_sym_GT_LPAREN] = ACTIONS(4768), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4770), }, [2279] = { - [sym_file_descriptor] = ACTIONS(775), - [sym__concat] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_PIPE_AMP] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(775), - [anon_sym_LT_AMP] = ACTIONS(775), - [anon_sym_GT_AMP] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(775), - [anon_sym_LT_LT_LT] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4772), + [anon_sym_RBRACE] = ACTIONS(4772), + [anon_sym_EQ] = ACTIONS(4774), + [sym__special_characters] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4772), + [anon_sym_POUND] = ACTIONS(4772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4772), + [anon_sym_COLON] = ACTIONS(4774), + [anon_sym_COLON_QMARK] = ACTIONS(4774), + [anon_sym_COLON_DASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4772), + [anon_sym_BQUOTE] = ACTIONS(4772), + [anon_sym_LT_LPAREN] = ACTIONS(4772), + [anon_sym_GT_LPAREN] = ACTIONS(4772), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4774), }, [2280] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(5907), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5618), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2281] = { - [sym_concatenation] = STATE(2562), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2562), - [anon_sym_RBRACE] = ACTIONS(5909), - [anon_sym_EQ] = ACTIONS(5911), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5915), - [anon_sym_COLON] = ACTIONS(5911), - [anon_sym_COLON_QMARK] = ACTIONS(5911), - [anon_sym_COLON_DASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5911), - [anon_sym_DASH] = ACTIONS(5911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__concat] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4780), + [sym__special_characters] = ACTIONS(4780), + [anon_sym_DQUOTE] = ACTIONS(4778), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4778), + [anon_sym_POUND] = ACTIONS(4778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4778), + [anon_sym_COLON] = ACTIONS(4780), + [anon_sym_COLON_QMARK] = ACTIONS(4780), + [anon_sym_COLON_DASH] = ACTIONS(4780), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_DASH] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4778), + [anon_sym_BQUOTE] = ACTIONS(4778), + [anon_sym_LT_LPAREN] = ACTIONS(4778), + [anon_sym_GT_LPAREN] = ACTIONS(4778), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(4780), }, [2282] = { - [sym_subscript] = STATE(2566), - [sym_variable_name] = ACTIONS(5917), - [anon_sym_DOLLAR] = ACTIONS(5919), - [anon_sym_DASH] = ACTIONS(5919), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5921), - [anon_sym_STAR] = ACTIONS(5919), - [anon_sym_AT] = ACTIONS(5919), - [anon_sym_QMARK] = ACTIONS(5919), - [anon_sym_0] = ACTIONS(5923), - [anon_sym__] = ACTIONS(5923), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2283] = { - [sym_concatenation] = STATE(2569), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2569), - [anon_sym_RBRACE] = ACTIONS(5925), - [anon_sym_EQ] = ACTIONS(5927), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5931), - [anon_sym_COLON] = ACTIONS(5927), - [anon_sym_COLON_QMARK] = ACTIONS(5927), - [anon_sym_COLON_DASH] = ACTIONS(5927), - [anon_sym_PERCENT] = ACTIONS(5927), - [anon_sym_DASH] = ACTIONS(5927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__concat] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4786), + [sym__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_POUND] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_COLON] = ACTIONS(4786), + [anon_sym_COLON_QMARK] = ACTIONS(4786), + [anon_sym_COLON_DASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(4786), }, [2284] = { - [sym_concatenation] = STATE(2572), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2572), - [anon_sym_RBRACE] = ACTIONS(5933), - [anon_sym_EQ] = ACTIONS(5935), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5937), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(5939), - [anon_sym_COLON] = ACTIONS(5935), - [anon_sym_COLON_QMARK] = ACTIONS(5935), - [anon_sym_COLON_DASH] = ACTIONS(5935), - [anon_sym_PERCENT] = ACTIONS(5935), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [2285] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(5941), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_POUND] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_COLON] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4792), + [anon_sym_COLON_DASH] = ACTIONS(4792), + [anon_sym_PERCENT] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4792), }, [2286] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(5941), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [sym__concat] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(4794), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4794), + [anon_sym_POUND] = ACTIONS(4794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4794), + [anon_sym_COLON] = ACTIONS(4796), + [anon_sym_COLON_QMARK] = ACTIONS(4796), + [anon_sym_COLON_DASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4794), + [anon_sym_BQUOTE] = ACTIONS(4794), + [anon_sym_LT_LPAREN] = ACTIONS(4794), + [anon_sym_GT_LPAREN] = ACTIONS(4794), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4796), }, [2287] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(5941), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2287), + [sym__concat] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, [2288] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(5941), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), + [aux_sym_concatenation_repeat1] = STATE(2288), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(5143), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, [2289] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(5943), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym__heredoc_body_middle] = ACTIONS(4756), + [sym__heredoc_body_end] = ACTIONS(4756), + [anon_sym_DOLLAR] = ACTIONS(4758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), [sym_comment] = ACTIONS(53), }, [2290] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(5943), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym__heredoc_body_middle] = ACTIONS(4764), + [sym__heredoc_body_end] = ACTIONS(4764), + [anon_sym_DOLLAR] = ACTIONS(4766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4764), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), }, [2291] = { - [sym_variable_name] = ACTIONS(3581), - [anon_sym_PIPE] = ACTIONS(3583), - [anon_sym_RPAREN] = ACTIONS(3581), - [anon_sym_PIPE_AMP] = ACTIONS(3581), - [anon_sym_AMP_AMP] = ACTIONS(3581), - [anon_sym_PIPE_PIPE] = ACTIONS(3581), - [sym__special_characters] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [sym_raw_string] = ACTIONS(3581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3581), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3581), - [anon_sym_BQUOTE] = ACTIONS(3581), - [anon_sym_LT_LPAREN] = ACTIONS(3581), - [anon_sym_GT_LPAREN] = ACTIONS(3581), + [sym__heredoc_body_middle] = ACTIONS(4768), + [sym__heredoc_body_end] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4768), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3583), - [sym_word] = ACTIONS(3583), }, [2292] = { - [sym__concat] = ACTIONS(4164), - [sym_variable_name] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4164), - [anon_sym_PIPE_AMP] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4164), - [anon_sym_PIPE_PIPE] = ACTIONS(4164), - [sym__special_characters] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(4164), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), - [anon_sym_BQUOTE] = ACTIONS(4164), - [anon_sym_LT_LPAREN] = ACTIONS(4164), - [anon_sym_GT_LPAREN] = ACTIONS(4164), + [sym__heredoc_body_middle] = ACTIONS(4772), + [sym__heredoc_body_end] = ACTIONS(4772), + [anon_sym_DOLLAR] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4772), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), - [sym_word] = ACTIONS(4166), }, [2293] = { - [sym__concat] = ACTIONS(4172), - [sym_variable_name] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4172), - [anon_sym_PIPE_AMP] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [sym__special_characters] = ACTIONS(4172), - [anon_sym_DQUOTE] = ACTIONS(4172), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), - [anon_sym_BQUOTE] = ACTIONS(4172), - [anon_sym_LT_LPAREN] = ACTIONS(4172), - [anon_sym_GT_LPAREN] = ACTIONS(4172), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), - [sym_word] = ACTIONS(4174), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2294] = { - [sym__concat] = ACTIONS(4259), - [sym_variable_name] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4259), - [anon_sym_PIPE_AMP] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [sym__special_characters] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4259), - [anon_sym_LT_LPAREN] = ACTIONS(4259), - [anon_sym_GT_LPAREN] = ACTIONS(4259), + [sym__heredoc_body_middle] = ACTIONS(4778), + [sym__heredoc_body_end] = ACTIONS(4778), + [anon_sym_DOLLAR] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4778), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), - [sym_word] = ACTIONS(4261), }, [2295] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5945), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5626), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [2296] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5947), + [sym__heredoc_body_middle] = ACTIONS(4784), + [sym__heredoc_body_end] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), [sym_comment] = ACTIONS(53), }, [2297] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5949), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2298] = { - [anon_sym_RBRACE] = ACTIONS(5949), + [sym__heredoc_body_middle] = ACTIONS(4790), + [sym__heredoc_body_end] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), [sym_comment] = ACTIONS(53), }, [2299] = { - [sym_concatenation] = STATE(2579), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2579), - [anon_sym_RBRACE] = ACTIONS(5951), - [anon_sym_EQ] = ACTIONS(5953), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5955), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5953), - [anon_sym_COLON_QMARK] = ACTIONS(5953), - [anon_sym_COLON_DASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5953), - [anon_sym_DASH] = ACTIONS(5953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__heredoc_body_middle] = ACTIONS(4794), + [sym__heredoc_body_end] = ACTIONS(4794), + [anon_sym_DOLLAR] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4794), + [sym_comment] = ACTIONS(53), }, [2300] = { - [sym__concat] = ACTIONS(4275), - [sym_variable_name] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [sym__special_characters] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LT_LPAREN] = ACTIONS(4275), - [anon_sym_GT_LPAREN] = ACTIONS(4275), + [sym__concat] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4756), + [sym__special_characters] = ACTIONS(4756), + [anon_sym_DQUOTE] = ACTIONS(4756), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4756), + [anon_sym_BQUOTE] = ACTIONS(4756), + [anon_sym_LT_LPAREN] = ACTIONS(4756), + [anon_sym_GT_LPAREN] = ACTIONS(4756), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), - [sym_word] = ACTIONS(4277), + [sym_word] = ACTIONS(4756), }, [2301] = { - [sym_concatenation] = STATE(2581), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2581), - [anon_sym_RBRACE] = ACTIONS(5957), - [anon_sym_EQ] = ACTIONS(5959), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5959), - [anon_sym_COLON_QMARK] = ACTIONS(5959), - [anon_sym_COLON_DASH] = ACTIONS(5959), - [anon_sym_PERCENT] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(5959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(4764), + [anon_sym_RPAREN] = ACTIONS(4764), + [sym__special_characters] = ACTIONS(4764), + [anon_sym_DQUOTE] = ACTIONS(4764), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4764), + [anon_sym_BQUOTE] = ACTIONS(4764), + [anon_sym_LT_LPAREN] = ACTIONS(4764), + [anon_sym_GT_LPAREN] = ACTIONS(4764), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4764), }, [2302] = { - [sym__concat] = ACTIONS(4285), - [sym_variable_name] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_PIPE_AMP] = ACTIONS(4285), - [anon_sym_AMP_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4285), - [sym__special_characters] = ACTIONS(4285), - [anon_sym_DQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), - [anon_sym_BQUOTE] = ACTIONS(4285), - [anon_sym_LT_LPAREN] = ACTIONS(4285), - [anon_sym_GT_LPAREN] = ACTIONS(4285), + [sym__concat] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [sym__special_characters] = ACTIONS(4768), + [anon_sym_DQUOTE] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4768), + [anon_sym_BQUOTE] = ACTIONS(4768), + [anon_sym_LT_LPAREN] = ACTIONS(4768), + [anon_sym_GT_LPAREN] = ACTIONS(4768), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), - [sym_word] = ACTIONS(4287), + [sym_word] = ACTIONS(4768), }, [2303] = { - [sym_concatenation] = STATE(2583), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2583), - [anon_sym_RBRACE] = ACTIONS(5963), - [anon_sym_EQ] = ACTIONS(5965), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5965), - [anon_sym_COLON_QMARK] = ACTIONS(5965), - [anon_sym_COLON_DASH] = ACTIONS(5965), - [anon_sym_PERCENT] = ACTIONS(5965), - [anon_sym_DASH] = ACTIONS(5965), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(4772), + [anon_sym_RPAREN] = ACTIONS(4772), + [sym__special_characters] = ACTIONS(4772), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4772), + [anon_sym_BQUOTE] = ACTIONS(4772), + [anon_sym_LT_LPAREN] = ACTIONS(4772), + [anon_sym_GT_LPAREN] = ACTIONS(4772), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4772), }, [2304] = { - [sym__concat] = ACTIONS(4295), - [sym_variable_name] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_PIPE_AMP] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [sym__special_characters] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4295), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), - [anon_sym_BQUOTE] = ACTIONS(4295), - [anon_sym_LT_LPAREN] = ACTIONS(4295), - [anon_sym_GT_LPAREN] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), - [sym_word] = ACTIONS(4297), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5630), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2305] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5969), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(4778), + [anon_sym_RPAREN] = ACTIONS(4778), + [sym__special_characters] = ACTIONS(4778), + [anon_sym_DQUOTE] = ACTIONS(4778), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4778), + [anon_sym_BQUOTE] = ACTIONS(4778), + [anon_sym_LT_LPAREN] = ACTIONS(4778), + [anon_sym_GT_LPAREN] = ACTIONS(4778), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4778), }, [2306] = { - [sym__concat] = ACTIONS(4301), - [sym_variable_name] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_PIPE_AMP] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [sym__special_characters] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4301), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), - [anon_sym_BQUOTE] = ACTIONS(4301), - [anon_sym_LT_LPAREN] = ACTIONS(4301), - [anon_sym_GT_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), - [sym_word] = ACTIONS(4303), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5632), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2307] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5971), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(4784), + [anon_sym_RPAREN] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4784), }, [2308] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4164), - [anon_sym_PIPE_AMP] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4164), - [anon_sym_PIPE_PIPE] = ACTIONS(4164), - [sym__special_characters] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(4164), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), - [anon_sym_BQUOTE] = ACTIONS(4164), - [anon_sym_LT_LPAREN] = ACTIONS(4164), - [anon_sym_GT_LPAREN] = ACTIONS(4164), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), - [sym_word] = ACTIONS(4166), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5634), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2309] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4172), - [anon_sym_PIPE_AMP] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [sym__special_characters] = ACTIONS(4172), - [anon_sym_DQUOTE] = ACTIONS(4172), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), - [anon_sym_BQUOTE] = ACTIONS(4172), - [anon_sym_LT_LPAREN] = ACTIONS(4172), - [anon_sym_GT_LPAREN] = ACTIONS(4172), + [sym__concat] = ACTIONS(4790), + [anon_sym_RPAREN] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(4790), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), + [anon_sym_BQUOTE] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(4790), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), - [sym_word] = ACTIONS(4174), + [sym_word] = ACTIONS(4790), }, [2310] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4259), - [anon_sym_PIPE_AMP] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [sym__special_characters] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4259), - [anon_sym_LT_LPAREN] = ACTIONS(4259), - [anon_sym_GT_LPAREN] = ACTIONS(4259), + [sym__concat] = ACTIONS(4794), + [anon_sym_RPAREN] = ACTIONS(4794), + [sym__special_characters] = ACTIONS(4794), + [anon_sym_DQUOTE] = ACTIONS(4794), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4794), + [anon_sym_BQUOTE] = ACTIONS(4794), + [anon_sym_LT_LPAREN] = ACTIONS(4794), + [anon_sym_GT_LPAREN] = ACTIONS(4794), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), - [sym_word] = ACTIONS(4261), + [sym_word] = ACTIONS(4794), }, [2311] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5973), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(5310), + [sym__concat] = ACTIONS(5310), + [sym_variable_name] = ACTIONS(5310), + [anon_sym_esac] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(5312), + [anon_sym_SEMI_SEMI] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(5312), + [anon_sym_AMP_AMP] = ACTIONS(5312), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(5312), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(5312), + [anon_sym_LT_AMP] = ACTIONS(5312), + [anon_sym_GT_AMP] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(5312), + [anon_sym_LT_LPAREN] = ACTIONS(5312), + [anon_sym_GT_LPAREN] = ACTIONS(5312), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym_LF] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), }, [2312] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5975), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(5314), + [sym__concat] = ACTIONS(5314), + [sym_variable_name] = ACTIONS(5314), + [anon_sym_esac] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(5316), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5316), + [anon_sym_AMP_AMP] = ACTIONS(5316), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(5316), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(5316), + [anon_sym_LT_AMP] = ACTIONS(5316), + [anon_sym_GT_AMP] = ACTIONS(5316), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(5316), + [anon_sym_LT_LPAREN] = ACTIONS(5316), + [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_LF] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), }, [2313] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(5977), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(5318), + [sym__concat] = ACTIONS(5318), + [sym_variable_name] = ACTIONS(5318), + [anon_sym_esac] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(5320), + [anon_sym_SEMI_SEMI] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(5320), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(5320), + [anon_sym_LT_AMP] = ACTIONS(5320), + [anon_sym_GT_AMP] = ACTIONS(5320), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(5320), + [anon_sym_LT_LPAREN] = ACTIONS(5320), + [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_LF] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5320), }, [2314] = { - [anon_sym_RBRACE] = ACTIONS(5977), + [sym__concat] = ACTIONS(3802), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_EQ_TILDE] = ACTIONS(3802), + [anon_sym_EQ_EQ] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3802), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3802), }, [2315] = { - [sym_concatenation] = STATE(2590), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2590), - [anon_sym_RBRACE] = ACTIONS(5979), - [anon_sym_EQ] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5983), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5981), - [anon_sym_COLON_QMARK] = ACTIONS(5981), - [anon_sym_COLON_DASH] = ACTIONS(5981), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(3810), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3810), + [anon_sym_AMP_AMP] = ACTIONS(3810), + [anon_sym_PIPE_PIPE] = ACTIONS(3810), + [anon_sym_EQ_TILDE] = ACTIONS(3810), + [anon_sym_EQ_EQ] = ACTIONS(3810), + [anon_sym_EQ] = ACTIONS(3812), + [anon_sym_LT] = ACTIONS(3810), + [anon_sym_GT] = ACTIONS(3810), + [anon_sym_BANG_EQ] = ACTIONS(3810), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3810), }, [2316] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [sym__special_characters] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LT_LPAREN] = ACTIONS(4275), - [anon_sym_GT_LPAREN] = ACTIONS(4275), + [sym__concat] = ACTIONS(3909), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_EQ_TILDE] = ACTIONS(3909), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), - [sym_word] = ACTIONS(4277), + [sym_test_operator] = ACTIONS(3909), }, [2317] = { - [sym_concatenation] = STATE(2592), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2592), - [anon_sym_RBRACE] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5987), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_COLON_QMARK] = ACTIONS(5987), - [anon_sym_COLON_DASH] = ACTIONS(5987), - [anon_sym_PERCENT] = ACTIONS(5987), - [anon_sym_DASH] = ACTIONS(5987), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [2318] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_PIPE_AMP] = ACTIONS(4285), - [anon_sym_AMP_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4285), - [sym__special_characters] = ACTIONS(4285), - [anon_sym_DQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), - [anon_sym_BQUOTE] = ACTIONS(4285), - [anon_sym_LT_LPAREN] = ACTIONS(4285), - [anon_sym_GT_LPAREN] = ACTIONS(4285), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5638), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), - [sym_word] = ACTIONS(4287), }, [2319] = { - [sym_concatenation] = STATE(2594), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2594), - [anon_sym_RBRACE] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5993), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(5995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_COLON_QMARK] = ACTIONS(5993), - [anon_sym_COLON_DASH] = ACTIONS(5993), - [anon_sym_PERCENT] = ACTIONS(5993), - [anon_sym_DASH] = ACTIONS(5993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5640), + [sym_comment] = ACTIONS(53), }, [2320] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_PIPE_AMP] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [sym__special_characters] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4295), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), - [anon_sym_BQUOTE] = ACTIONS(4295), - [anon_sym_LT_LPAREN] = ACTIONS(4295), - [anon_sym_GT_LPAREN] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(5640), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), - [sym_word] = ACTIONS(4297), }, [2321] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5997), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(2464), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2464), + [anon_sym_RBRACE] = ACTIONS(5642), + [anon_sym_EQ] = ACTIONS(5644), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5644), + [anon_sym_COLON_QMARK] = ACTIONS(5644), + [anon_sym_COLON_DASH] = ACTIONS(5644), + [anon_sym_PERCENT] = ACTIONS(5644), + [anon_sym_DASH] = ACTIONS(5644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [2322] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_PIPE_AMP] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [sym__special_characters] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4301), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), - [anon_sym_BQUOTE] = ACTIONS(4301), - [anon_sym_LT_LPAREN] = ACTIONS(4301), - [anon_sym_GT_LPAREN] = ACTIONS(4301), + [sym__concat] = ACTIONS(3945), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_EQ_TILDE] = ACTIONS(3945), + [anon_sym_EQ_EQ] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3945), + [anon_sym_GT] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), - [sym_word] = ACTIONS(4303), + [sym_test_operator] = ACTIONS(3945), }, [2323] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(5999), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym_concatenation] = STATE(2466), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2466), + [anon_sym_RBRACE] = ACTIONS(5648), + [anon_sym_EQ] = ACTIONS(5650), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5650), + [anon_sym_COLON_QMARK] = ACTIONS(5650), + [anon_sym_COLON_DASH] = ACTIONS(5650), + [anon_sym_PERCENT] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, [2324] = { - [sym__simple_heredoc_body] = ACTIONS(5202), - [sym__heredoc_body_beginning] = ACTIONS(5202), - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5204), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_LT_LT_DASH] = ACTIONS(5202), - [anon_sym_LT_LT_LT] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym__concat] = ACTIONS(3955), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3955), + [anon_sym_AMP_AMP] = ACTIONS(3955), + [anon_sym_PIPE_PIPE] = ACTIONS(3955), + [anon_sym_EQ_TILDE] = ACTIONS(3955), + [anon_sym_EQ_EQ] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_BANG_EQ] = ACTIONS(3955), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5204), + [sym_test_operator] = ACTIONS(3955), }, [2325] = { - [sym__simple_heredoc_body] = ACTIONS(5206), - [sym__heredoc_body_beginning] = ACTIONS(5206), - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_LT_LT_DASH] = ACTIONS(5206), - [anon_sym_LT_LT_LT] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5208), + [sym_concatenation] = STATE(2468), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2468), + [anon_sym_RBRACE] = ACTIONS(5654), + [anon_sym_EQ] = ACTIONS(5656), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5658), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5656), + [anon_sym_COLON_QMARK] = ACTIONS(5656), + [anon_sym_COLON_DASH] = ACTIONS(5656), + [anon_sym_PERCENT] = ACTIONS(5656), + [anon_sym_DASH] = ACTIONS(5656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2326] = { - [sym__simple_heredoc_body] = ACTIONS(5210), - [sym__heredoc_body_beginning] = ACTIONS(5210), - [sym_file_descriptor] = ACTIONS(5210), - [sym__concat] = ACTIONS(5210), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_PIPE_AMP] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [anon_sym_EQ_TILDE] = ACTIONS(5212), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5210), - [anon_sym_AMP_GT] = ACTIONS(5212), - [anon_sym_AMP_GT_GT] = ACTIONS(5210), - [anon_sym_LT_AMP] = ACTIONS(5210), - [anon_sym_GT_AMP] = ACTIONS(5210), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_LT_LT_DASH] = ACTIONS(5210), - [anon_sym_LT_LT_LT] = ACTIONS(5210), - [sym__special_characters] = ACTIONS(5210), - [anon_sym_DQUOTE] = ACTIONS(5210), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), - [anon_sym_BQUOTE] = ACTIONS(5210), - [anon_sym_LT_LPAREN] = ACTIONS(5210), - [anon_sym_GT_LPAREN] = ACTIONS(5210), + [sym__concat] = ACTIONS(3965), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_EQ_TILDE] = ACTIONS(3965), + [anon_sym_EQ_EQ] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3965), + [anon_sym_GT] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5212), + [sym_test_operator] = ACTIONS(3965), }, [2327] = { - [sym__simple_heredoc_body] = ACTIONS(5214), - [sym__heredoc_body_beginning] = ACTIONS(5214), - [sym_file_descriptor] = ACTIONS(5214), - [sym__concat] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_PIPE_AMP] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_EQ_TILDE] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5214), - [anon_sym_AMP_GT] = ACTIONS(5216), - [anon_sym_AMP_GT_GT] = ACTIONS(5214), - [anon_sym_LT_AMP] = ACTIONS(5214), - [anon_sym_GT_AMP] = ACTIONS(5214), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_LT_LT_DASH] = ACTIONS(5214), - [anon_sym_LT_LT_LT] = ACTIONS(5214), - [sym__special_characters] = ACTIONS(5214), - [anon_sym_DQUOTE] = ACTIONS(5214), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), - [anon_sym_BQUOTE] = ACTIONS(5214), - [anon_sym_LT_LPAREN] = ACTIONS(5214), - [anon_sym_GT_LPAREN] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5216), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5660), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2328] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(3971), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3971), + [anon_sym_AMP_AMP] = ACTIONS(3971), + [anon_sym_PIPE_PIPE] = ACTIONS(3971), + [anon_sym_EQ_TILDE] = ACTIONS(3971), + [anon_sym_EQ_EQ] = ACTIONS(3971), + [anon_sym_EQ] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_GT] = ACTIONS(3971), + [anon_sym_BANG_EQ] = ACTIONS(3971), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3971), }, [2329] = { - [sym__simple_heredoc_body] = ACTIONS(5220), - [sym__heredoc_body_beginning] = ACTIONS(5220), - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5222), - [anon_sym_EQ_EQ] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5222), + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5662), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), }, [2330] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6003), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym__concat] = ACTIONS(3977), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_EQ_TILDE] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3977), }, [2331] = { - [sym__simple_heredoc_body] = ACTIONS(5226), - [sym__heredoc_body_beginning] = ACTIONS(5226), - [sym_file_descriptor] = ACTIONS(5226), - [sym__concat] = ACTIONS(5226), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5226), - [anon_sym_PIPE_AMP] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_PIPE_PIPE] = ACTIONS(5226), - [anon_sym_EQ_TILDE] = ACTIONS(5228), - [anon_sym_EQ_EQ] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5228), - [anon_sym_GT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5226), - [anon_sym_AMP_GT] = ACTIONS(5228), - [anon_sym_AMP_GT_GT] = ACTIONS(5226), - [anon_sym_LT_AMP] = ACTIONS(5226), - [anon_sym_GT_AMP] = ACTIONS(5226), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_LT_LT_DASH] = ACTIONS(5226), - [anon_sym_LT_LT_LT] = ACTIONS(5226), - [sym__special_characters] = ACTIONS(5226), - [anon_sym_DQUOTE] = ACTIONS(5226), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), - [anon_sym_BQUOTE] = ACTIONS(5226), - [anon_sym_LT_LPAREN] = ACTIONS(5226), - [anon_sym_GT_LPAREN] = ACTIONS(5226), + [sym__concat] = ACTIONS(4001), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4001), + [anon_sym_AMP_AMP] = ACTIONS(4001), + [anon_sym_PIPE_PIPE] = ACTIONS(4001), + [anon_sym_EQ_TILDE] = ACTIONS(4001), + [anon_sym_EQ_EQ] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4001), + [anon_sym_GT] = ACTIONS(4001), + [anon_sym_BANG_EQ] = ACTIONS(4001), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5228), + [sym_test_operator] = ACTIONS(4001), }, [2332] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6005), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [sym__concat] = ACTIONS(5310), + [anon_sym_esac] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_SEMI_SEMI] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(5312), + [anon_sym_AMP_AMP] = ACTIONS(5312), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_EQ_TILDE] = ACTIONS(5312), + [anon_sym_EQ_EQ] = ACTIONS(5312), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_BANG_EQ] = ACTIONS(5312), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_test_operator] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym_LF] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), }, [2333] = { - [sym__simple_heredoc_body] = ACTIONS(5232), - [sym__heredoc_body_beginning] = ACTIONS(5232), - [sym_file_descriptor] = ACTIONS(5232), - [sym__concat] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_PIPE_AMP] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_EQ_TILDE] = ACTIONS(5234), - [anon_sym_EQ_EQ] = ACTIONS(5234), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_GT_GT] = ACTIONS(5232), - [anon_sym_AMP_GT] = ACTIONS(5234), - [anon_sym_AMP_GT_GT] = ACTIONS(5232), - [anon_sym_LT_AMP] = ACTIONS(5232), - [anon_sym_GT_AMP] = ACTIONS(5232), - [anon_sym_LT_LT] = ACTIONS(5234), - [anon_sym_LT_LT_DASH] = ACTIONS(5232), - [anon_sym_LT_LT_LT] = ACTIONS(5232), - [sym__special_characters] = ACTIONS(5232), - [anon_sym_DQUOTE] = ACTIONS(5232), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), - [anon_sym_BQUOTE] = ACTIONS(5232), - [anon_sym_LT_LPAREN] = ACTIONS(5232), - [anon_sym_GT_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5234), + [sym__concat] = ACTIONS(5314), + [anon_sym_esac] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5316), + [anon_sym_AMP_AMP] = ACTIONS(5316), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [anon_sym_EQ_TILDE] = ACTIONS(5316), + [anon_sym_EQ_EQ] = ACTIONS(5316), + [anon_sym_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_BANG_EQ] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_LF] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), }, [2334] = { - [sym__simple_heredoc_body] = ACTIONS(5236), - [sym__heredoc_body_beginning] = ACTIONS(5236), - [sym_file_descriptor] = ACTIONS(5236), - [sym__concat] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_PIPE_AMP] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_EQ_TILDE] = ACTIONS(5238), - [anon_sym_EQ_EQ] = ACTIONS(5238), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_GT_GT] = ACTIONS(5236), - [anon_sym_AMP_GT] = ACTIONS(5238), - [anon_sym_AMP_GT_GT] = ACTIONS(5236), - [anon_sym_LT_AMP] = ACTIONS(5236), - [anon_sym_GT_AMP] = ACTIONS(5236), - [anon_sym_LT_LT] = ACTIONS(5238), - [anon_sym_LT_LT_DASH] = ACTIONS(5236), - [anon_sym_LT_LT_LT] = ACTIONS(5236), - [sym__special_characters] = ACTIONS(5236), - [anon_sym_DQUOTE] = ACTIONS(5236), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), - [anon_sym_BQUOTE] = ACTIONS(5236), - [anon_sym_LT_LPAREN] = ACTIONS(5236), - [anon_sym_GT_LPAREN] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5238), + [sym__concat] = ACTIONS(5318), + [anon_sym_esac] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_SEMI_SEMI] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_EQ_TILDE] = ACTIONS(5320), + [anon_sym_EQ_EQ] = ACTIONS(5320), + [anon_sym_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_BANG_EQ] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_LF] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5320), }, [2335] = { - [aux_sym_concatenation_repeat1] = STATE(2337), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(5664), + [anon_sym_PIPE] = ACTIONS(5664), + [anon_sym_RPAREN] = ACTIONS(5664), + [anon_sym_SEMI_SEMI] = ACTIONS(5664), + [anon_sym_PIPE_AMP] = ACTIONS(5664), + [anon_sym_AMP_AMP] = ACTIONS(5664), + [anon_sym_PIPE_PIPE] = ACTIONS(5664), + [anon_sym_BQUOTE] = ACTIONS(5664), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5664), + [anon_sym_LF] = ACTIONS(5666), + [anon_sym_AMP] = ACTIONS(5664), }, [2336] = { - [aux_sym_concatenation_repeat1] = STATE(2337), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1137), - [anon_sym_PIPE_PIPE] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2471), + [sym_file_descriptor] = ACTIONS(995), + [sym__concat] = ACTIONS(997), + [sym_variable_name] = ACTIONS(995), + [anon_sym_esac] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_SEMI_SEMI] = ACTIONS(999), + [anon_sym_PIPE_AMP] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(999), + [anon_sym_LT_AMP] = ACTIONS(999), + [anon_sym_GT_AMP] = ACTIONS(999), + [sym__special_characters] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [sym_raw_string] = ACTIONS(999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(999), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(999), + [anon_sym_BQUOTE] = ACTIONS(999), + [anon_sym_LT_LPAREN] = ACTIONS(999), + [anon_sym_GT_LPAREN] = ACTIONS(999), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LF] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(999), }, [2337] = { - [aux_sym_concatenation_repeat1] = STATE(2600), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2471), + [sym_file_descriptor] = ACTIONS(973), + [sym__concat] = ACTIONS(997), + [sym_variable_name] = ACTIONS(973), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), }, [2338] = { - [aux_sym_concatenation_repeat1] = STATE(2340), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1133), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(2472), + [sym_heredoc_redirect] = STATE(2472), + [sym_heredoc_body] = STATE(569), + [sym_herestring_redirect] = STATE(2472), + [aux_sym_while_statement_repeat1] = STATE(2472), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(5086), + [anon_sym_esac] = ACTIONS(1085), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5090), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(5092), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1085), }, [2339] = { - [aux_sym_concatenation_repeat1] = STATE(2340), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1137), - [anon_sym_AMP_AMP] = ACTIONS(1137), - [anon_sym_PIPE_PIPE] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1137), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1137), - [anon_sym_LT_AMP] = ACTIONS(1137), - [anon_sym_GT_AMP] = ACTIONS(1137), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1137), - [anon_sym_LT_LT_LT] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), + [anon_sym_RPAREN] = ACTIONS(5668), [sym_comment] = ACTIONS(53), }, [2340] = { - [aux_sym_concatenation_repeat1] = STATE(2601), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(5268), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(618), + [sym_file_descriptor] = ACTIONS(5670), + [anon_sym_esac] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_SEMI_SEMI] = ACTIONS(1169), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1169), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_LT] = ACTIONS(5672), + [anon_sym_GT] = ACTIONS(5672), + [anon_sym_GT_GT] = ACTIONS(5672), + [anon_sym_AMP_GT] = ACTIONS(5672), + [anon_sym_AMP_GT_GT] = ACTIONS(5672), + [anon_sym_LT_AMP] = ACTIONS(5672), + [anon_sym_GT_AMP] = ACTIONS(5672), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1169), }, [2341] = { - [sym__heredoc_body_middle] = ACTIONS(4164), - [sym__heredoc_body_end] = ACTIONS(4164), - [anon_sym_DOLLAR] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(2479), + [sym_heredoc_redirect] = STATE(2479), + [sym_herestring_redirect] = STATE(2479), + [aux_sym_while_statement_repeat1] = STATE(2479), + [sym_file_descriptor] = ACTIONS(5674), + [anon_sym_esac] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_SEMI_SEMI] = ACTIONS(1291), + [anon_sym_PIPE_AMP] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5676), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_AMP_GT] = ACTIONS(5676), + [anon_sym_AMP_GT_GT] = ACTIONS(5676), + [anon_sym_LT_AMP] = ACTIONS(5676), + [anon_sym_GT_AMP] = ACTIONS(5676), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_LT_LT_DASH] = ACTIONS(1295), + [anon_sym_LT_LT_LT] = ACTIONS(5678), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_LF] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1291), }, [2342] = { - [sym__heredoc_body_middle] = ACTIONS(4172), - [sym__heredoc_body_end] = ACTIONS(4172), - [anon_sym_DOLLAR] = ACTIONS(4174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), + [sym_concatenation] = STATE(2480), + [sym_string] = STATE(2483), + [sym_array] = STATE(2480), + [sym_simple_expansion] = STATE(2483), + [sym_string_expansion] = STATE(2483), + [sym_expansion] = STATE(2483), + [sym_command_substitution] = STATE(2483), + [sym_process_substitution] = STATE(2483), + [sym__empty_value] = ACTIONS(5680), + [anon_sym_LPAREN] = ACTIONS(5682), + [sym__special_characters] = ACTIONS(5684), + [anon_sym_DQUOTE] = ACTIONS(5450), + [anon_sym_DOLLAR] = ACTIONS(5046), + [sym_raw_string] = ACTIONS(5686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5690), + [anon_sym_BQUOTE] = ACTIONS(5692), + [anon_sym_LT_LPAREN] = ACTIONS(5694), + [anon_sym_GT_LPAREN] = ACTIONS(5694), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5686), }, [2343] = { - [sym__heredoc_body_middle] = ACTIONS(4259), - [sym__heredoc_body_end] = ACTIONS(4259), - [anon_sym_DOLLAR] = ACTIONS(4261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), + [sym_string] = STATE(2484), + [sym_simple_expansion] = STATE(2484), + [sym_string_expansion] = STATE(2484), + [sym_expansion] = STATE(2484), + [sym_command_substitution] = STATE(2484), + [sym_process_substitution] = STATE(2484), + [sym__special_characters] = ACTIONS(5696), + [anon_sym_DQUOTE] = ACTIONS(5450), + [anon_sym_DOLLAR] = ACTIONS(5046), + [sym_raw_string] = ACTIONS(5696), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5690), + [anon_sym_BQUOTE] = ACTIONS(5692), + [anon_sym_LT_LPAREN] = ACTIONS(5694), + [anon_sym_GT_LPAREN] = ACTIONS(5694), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5696), }, [2344] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6007), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [aux_sym_concatenation_repeat1] = STATE(2485), + [sym__concat] = ACTIONS(5444), + [sym_variable_name] = ACTIONS(683), + [anon_sym_esac] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(685), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), }, [2345] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6009), - [sym_comment] = ACTIONS(53), - }, - [2346] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6011), - [sym_comment] = ACTIONS(53), - }, - [2347] = { - [anon_sym_RBRACE] = ACTIONS(6011), - [sym_comment] = ACTIONS(53), - }, - [2348] = { - [sym_concatenation] = STATE(2606), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2606), - [anon_sym_RBRACE] = ACTIONS(6013), - [anon_sym_EQ] = ACTIONS(6015), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6015), - [anon_sym_COLON_QMARK] = ACTIONS(6015), - [anon_sym_COLON_DASH] = ACTIONS(6015), - [anon_sym_PERCENT] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2349] = { - [sym__heredoc_body_middle] = ACTIONS(4275), - [sym__heredoc_body_end] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), - [sym_comment] = ACTIONS(53), - }, - [2350] = { - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2608), - [anon_sym_RBRACE] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6021), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_COLON_QMARK] = ACTIONS(6021), - [anon_sym_COLON_DASH] = ACTIONS(6021), - [anon_sym_PERCENT] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2351] = { - [sym__heredoc_body_middle] = ACTIONS(4285), - [sym__heredoc_body_end] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), - [sym_comment] = ACTIONS(53), - }, - [2352] = { - [sym_concatenation] = STATE(2610), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2610), - [anon_sym_RBRACE] = ACTIONS(6025), - [anon_sym_EQ] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6027), - [anon_sym_COLON_QMARK] = ACTIONS(6027), - [anon_sym_COLON_DASH] = ACTIONS(6027), - [anon_sym_PERCENT] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2353] = { - [sym__heredoc_body_middle] = ACTIONS(4295), - [sym__heredoc_body_end] = ACTIONS(4295), - [anon_sym_DOLLAR] = ACTIONS(4297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - }, - [2354] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2355] = { - [sym__heredoc_body_middle] = ACTIONS(4301), - [sym__heredoc_body_end] = ACTIONS(4301), - [anon_sym_DOLLAR] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), - [sym_comment] = ACTIONS(53), - }, - [2356] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6033), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2357] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_RPAREN] = ACTIONS(4164), - [sym__special_characters] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(4164), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4164), - [anon_sym_BQUOTE] = ACTIONS(4164), - [anon_sym_LT_LPAREN] = ACTIONS(4164), - [anon_sym_GT_LPAREN] = ACTIONS(4164), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4164), - }, - [2358] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_RPAREN] = ACTIONS(4172), - [sym__special_characters] = ACTIONS(4172), - [anon_sym_DQUOTE] = ACTIONS(4172), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4172), - [anon_sym_BQUOTE] = ACTIONS(4172), - [anon_sym_LT_LPAREN] = ACTIONS(4172), - [anon_sym_GT_LPAREN] = ACTIONS(4172), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4172), - }, - [2359] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_RPAREN] = ACTIONS(4259), - [sym__special_characters] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4259), - [anon_sym_LT_LPAREN] = ACTIONS(4259), - [anon_sym_GT_LPAREN] = ACTIONS(4259), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4259), - }, - [2360] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2361] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6037), - [sym_comment] = ACTIONS(53), - }, - [2362] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6039), - [sym_comment] = ACTIONS(53), - }, - [2363] = { - [anon_sym_RBRACE] = ACTIONS(6039), - [sym_comment] = ACTIONS(53), - }, - [2364] = { - [sym_concatenation] = STATE(2617), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2617), - [anon_sym_RBRACE] = ACTIONS(6041), - [anon_sym_EQ] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6043), - [anon_sym_COLON_QMARK] = ACTIONS(6043), - [anon_sym_COLON_DASH] = ACTIONS(6043), - [anon_sym_PERCENT] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2365] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__special_characters] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LT_LPAREN] = ACTIONS(4275), - [anon_sym_GT_LPAREN] = ACTIONS(4275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4275), - }, - [2366] = { - [sym_concatenation] = STATE(2619), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2619), - [anon_sym_RBRACE] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_COLON_QMARK] = ACTIONS(6049), - [anon_sym_COLON_DASH] = ACTIONS(6049), - [anon_sym_PERCENT] = ACTIONS(6049), - [anon_sym_DASH] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2367] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_RPAREN] = ACTIONS(4285), - [sym__special_characters] = ACTIONS(4285), - [anon_sym_DQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4285), - [anon_sym_BQUOTE] = ACTIONS(4285), - [anon_sym_LT_LPAREN] = ACTIONS(4285), - [anon_sym_GT_LPAREN] = ACTIONS(4285), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4285), - }, - [2368] = { - [sym_concatenation] = STATE(2621), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2621), - [anon_sym_RBRACE] = ACTIONS(6053), - [anon_sym_EQ] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6055), - [anon_sym_COLON_QMARK] = ACTIONS(6055), - [anon_sym_COLON_DASH] = ACTIONS(6055), - [anon_sym_PERCENT] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2369] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_RPAREN] = ACTIONS(4295), - [sym__special_characters] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4295), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4295), - [anon_sym_BQUOTE] = ACTIONS(4295), - [anon_sym_LT_LPAREN] = ACTIONS(4295), - [anon_sym_GT_LPAREN] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4295), - }, - [2370] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2371] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4301), - [sym__special_characters] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4301), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4301), - [anon_sym_BQUOTE] = ACTIONS(4301), - [anon_sym_LT_LPAREN] = ACTIONS(4301), - [anon_sym_GT_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4301), - }, - [2372] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6061), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2373] = { - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [anon_sym_PIPE_AMP] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5204), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5204), - [anon_sym_LT_AMP] = ACTIONS(5204), - [anon_sym_GT_AMP] = ACTIONS(5204), - [sym__special_characters] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), - [anon_sym_BQUOTE] = ACTIONS(5204), - [anon_sym_LT_LPAREN] = ACTIONS(5204), - [anon_sym_GT_LPAREN] = ACTIONS(5204), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2374] = { - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [anon_sym_PIPE_AMP] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5208), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5208), - [anon_sym_LT_AMP] = ACTIONS(5208), - [anon_sym_GT_AMP] = ACTIONS(5208), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5208), - [anon_sym_LT_LPAREN] = ACTIONS(5208), - [anon_sym_GT_LPAREN] = ACTIONS(5208), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5208), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2375] = { - [sym_file_descriptor] = ACTIONS(5210), - [sym__concat] = ACTIONS(5210), - [sym_variable_name] = ACTIONS(5210), - [anon_sym_esac] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_SEMI_SEMI] = ACTIONS(5212), - [anon_sym_PIPE_AMP] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5212), - [anon_sym_AMP_GT] = ACTIONS(5212), - [anon_sym_AMP_GT_GT] = ACTIONS(5212), - [anon_sym_LT_AMP] = ACTIONS(5212), - [anon_sym_GT_AMP] = ACTIONS(5212), - [sym__special_characters] = ACTIONS(5212), - [anon_sym_DQUOTE] = ACTIONS(5212), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), - [anon_sym_BQUOTE] = ACTIONS(5212), - [anon_sym_LT_LPAREN] = ACTIONS(5212), - [anon_sym_GT_LPAREN] = ACTIONS(5212), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5212), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LF] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), - }, - [2376] = { - [sym_file_descriptor] = ACTIONS(5214), - [sym__concat] = ACTIONS(5214), - [sym_variable_name] = ACTIONS(5214), - [anon_sym_esac] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5216), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), - }, - [2377] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6063), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2378] = { - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5222), - [anon_sym_PIPE_AMP] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_PIPE_PIPE] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5222), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5222), - [anon_sym_LT_AMP] = ACTIONS(5222), - [anon_sym_GT_AMP] = ACTIONS(5222), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(5222), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), - [anon_sym_BQUOTE] = ACTIONS(5222), - [anon_sym_LT_LPAREN] = ACTIONS(5222), - [anon_sym_GT_LPAREN] = ACTIONS(5222), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2379] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6065), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2380] = { - [sym_file_descriptor] = ACTIONS(5226), - [sym__concat] = ACTIONS(5226), - [sym_variable_name] = ACTIONS(5226), - [anon_sym_esac] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5228), - [anon_sym_SEMI_SEMI] = ACTIONS(5228), - [anon_sym_PIPE_AMP] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5228), - [anon_sym_GT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5228), - [anon_sym_AMP_GT] = ACTIONS(5228), - [anon_sym_AMP_GT_GT] = ACTIONS(5228), - [anon_sym_LT_AMP] = ACTIONS(5228), - [anon_sym_GT_AMP] = ACTIONS(5228), - [sym__special_characters] = ACTIONS(5228), - [anon_sym_DQUOTE] = ACTIONS(5228), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), - [anon_sym_BQUOTE] = ACTIONS(5228), - [anon_sym_LT_LPAREN] = ACTIONS(5228), - [anon_sym_GT_LPAREN] = ACTIONS(5228), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5228), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LF] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), - }, - [2381] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6067), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2382] = { - [sym_file_descriptor] = ACTIONS(5232), - [sym__concat] = ACTIONS(5232), - [sym_variable_name] = ACTIONS(5232), - [anon_sym_esac] = ACTIONS(5234), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5234), - [anon_sym_SEMI_SEMI] = ACTIONS(5234), - [anon_sym_PIPE_AMP] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_PIPE_PIPE] = ACTIONS(5234), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_GT_GT] = ACTIONS(5234), - [anon_sym_AMP_GT] = ACTIONS(5234), - [anon_sym_AMP_GT_GT] = ACTIONS(5234), - [anon_sym_LT_AMP] = ACTIONS(5234), - [anon_sym_GT_AMP] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(5234), - [anon_sym_DQUOTE] = ACTIONS(5234), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), - [anon_sym_BQUOTE] = ACTIONS(5234), - [anon_sym_LT_LPAREN] = ACTIONS(5234), - [anon_sym_GT_LPAREN] = ACTIONS(5234), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5234), - [anon_sym_SEMI] = ACTIONS(5234), - [anon_sym_LF] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(5234), - }, - [2383] = { - [sym_file_descriptor] = ACTIONS(5236), - [sym__concat] = ACTIONS(5236), - [sym_variable_name] = ACTIONS(5236), - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5238), - [anon_sym_PIPE_AMP] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_PIPE_PIPE] = ACTIONS(5238), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_GT_GT] = ACTIONS(5238), - [anon_sym_AMP_GT] = ACTIONS(5238), - [anon_sym_AMP_GT_GT] = ACTIONS(5238), - [anon_sym_LT_AMP] = ACTIONS(5238), - [anon_sym_GT_AMP] = ACTIONS(5238), - [sym__special_characters] = ACTIONS(5238), - [anon_sym_DQUOTE] = ACTIONS(5238), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), - [anon_sym_BQUOTE] = ACTIONS(5238), - [anon_sym_LT_LPAREN] = ACTIONS(5238), - [anon_sym_GT_LPAREN] = ACTIONS(5238), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5238), - [anon_sym_SEMI] = ACTIONS(5238), - [anon_sym_LF] = ACTIONS(5236), - [anon_sym_AMP] = ACTIONS(5238), - }, - [2384] = { - [anon_sym_esac] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3860), - [anon_sym_RPAREN] = ACTIONS(3860), - [anon_sym_SEMI_SEMI] = ACTIONS(3860), - [anon_sym_PIPE_AMP] = ACTIONS(3860), - [anon_sym_AMP_AMP] = ACTIONS(3860), - [anon_sym_PIPE_PIPE] = ACTIONS(3860), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3860), - [anon_sym_LF] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3860), - }, - [2385] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_EQ_TILDE] = ACTIONS(2920), - [anon_sym_EQ_EQ] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2920), - }, - [2386] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_EQ_TILDE] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_GT] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2934), - }, - [2387] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6069), - [sym_comment] = ACTIONS(53), - }, - [2388] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6071), - [sym_comment] = ACTIONS(53), - }, - [2389] = { - [anon_sym_RBRACE] = ACTIONS(6071), - [sym_comment] = ACTIONS(53), - }, - [2390] = { - [sym_concatenation] = STATE(2630), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2630), - [anon_sym_RBRACE] = ACTIONS(6073), - [anon_sym_EQ] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6075), - [anon_sym_COLON_QMARK] = ACTIONS(6075), - [anon_sym_COLON_DASH] = ACTIONS(6075), - [anon_sym_PERCENT] = ACTIONS(6075), - [anon_sym_DASH] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2391] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [anon_sym_EQ_TILDE] = ACTIONS(3016), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_GT] = ACTIONS(3016), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3016), - }, - [2392] = { - [sym_concatenation] = STATE(2633), - [sym_string] = STATE(2632), - [sym_simple_expansion] = STATE(2632), - [sym_string_expansion] = STATE(2632), - [sym_expansion] = STATE(2632), - [sym_command_substitution] = STATE(2632), - [sym_process_substitution] = STATE(2632), - [anon_sym_RBRACE] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6079), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(6081), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6081), - }, - [2393] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_EQ_TILDE] = ACTIONS(3059), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_EQ] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_GT] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3059), - }, - [2394] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6083), - }, - [2395] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6085), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2396] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3067), - }, - [2397] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6087), - }, - [2398] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6089), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2399] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6091), - }, - [2400] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6071), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2401] = { - [sym_concatenation] = STATE(2640), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2640), - [anon_sym_RBRACE] = ACTIONS(6093), - [anon_sym_EQ] = ACTIONS(6095), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6097), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6095), - [anon_sym_COLON_QMARK] = ACTIONS(6095), - [anon_sym_COLON_DASH] = ACTIONS(6095), - [anon_sym_PERCENT] = ACTIONS(6095), - [anon_sym_DASH] = ACTIONS(6095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2402] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_EQ_TILDE] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3083), - }, - [2403] = { - [sym_concatenation] = STATE(2642), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2642), - [anon_sym_RBRACE] = ACTIONS(6099), - [anon_sym_EQ] = ACTIONS(6101), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6101), - [anon_sym_COLON_QMARK] = ACTIONS(6101), - [anon_sym_COLON_DASH] = ACTIONS(6101), - [anon_sym_PERCENT] = ACTIONS(6101), - [anon_sym_DASH] = ACTIONS(6101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2404] = { - [anon_sym_esac] = ACTIONS(6105), - [anon_sym_PIPE] = ACTIONS(6105), - [anon_sym_RPAREN] = ACTIONS(6105), - [anon_sym_SEMI_SEMI] = ACTIONS(6105), - [anon_sym_PIPE_AMP] = ACTIONS(6105), - [anon_sym_AMP_AMP] = ACTIONS(6105), - [anon_sym_PIPE_PIPE] = ACTIONS(6105), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(6105), - [anon_sym_LF] = ACTIONS(6107), - [anon_sym_AMP] = ACTIONS(6105), - }, - [2405] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [anon_sym_PIPE_AMP] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_EQ_TILDE] = ACTIONS(5204), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5204), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2406] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [anon_sym_PIPE_AMP] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_EQ_TILDE] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5208), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5208), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2407] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_esac] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_SEMI_SEMI] = ACTIONS(5212), - [anon_sym_PIPE_AMP] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_EQ_TILDE] = ACTIONS(5212), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5212), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LF] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), - }, - [2408] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_esac] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_EQ_TILDE] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5216), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_BANG_EQ] = ACTIONS(5216), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), - }, - [2409] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6109), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2410] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5222), - [anon_sym_PIPE_AMP] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_PIPE_PIPE] = ACTIONS(5222), - [anon_sym_EQ_TILDE] = ACTIONS(5222), - [anon_sym_EQ_EQ] = ACTIONS(5222), - [anon_sym_EQ] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_BANG_EQ] = ACTIONS(5222), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [2411] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2412] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_esac] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_SEMI_SEMI] = ACTIONS(5228), - [anon_sym_PIPE_AMP] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [anon_sym_EQ_TILDE] = ACTIONS(5228), - [anon_sym_EQ_EQ] = ACTIONS(5228), - [anon_sym_EQ] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5228), - [anon_sym_GT] = ACTIONS(5228), - [anon_sym_BANG_EQ] = ACTIONS(5228), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5228), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LF] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), - }, - [2413] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2414] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_esac] = ACTIONS(5234), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_SEMI_SEMI] = ACTIONS(5234), - [anon_sym_PIPE_AMP] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_PIPE_PIPE] = ACTIONS(5234), - [anon_sym_EQ_TILDE] = ACTIONS(5234), - [anon_sym_EQ_EQ] = ACTIONS(5234), - [anon_sym_EQ] = ACTIONS(5234), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_BANG_EQ] = ACTIONS(5234), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5234), - [anon_sym_SEMI] = ACTIONS(5234), - [anon_sym_LF] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(5234), - }, - [2415] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5238), - [anon_sym_PIPE_AMP] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_PIPE_PIPE] = ACTIONS(5238), - [anon_sym_EQ_TILDE] = ACTIONS(5238), - [anon_sym_EQ_EQ] = ACTIONS(5238), - [anon_sym_EQ] = ACTIONS(5238), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_BANG_EQ] = ACTIONS(5238), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5238), - [anon_sym_SEMI] = ACTIONS(5238), - [anon_sym_LF] = ACTIONS(5236), - [anon_sym_AMP] = ACTIONS(5238), - }, - [2416] = { - [sym_do_group] = STATE(2646), - [sym_compound_statement] = STATE(2646), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(3656), - [sym_comment] = ACTIONS(53), - }, - [2417] = { - [sym_concatenation] = STATE(214), - [sym_string] = STATE(2648), - [sym_array] = STATE(214), - [sym_simple_expansion] = STATE(2648), - [sym_string_expansion] = STATE(2648), - [sym_expansion] = STATE(2648), - [sym_command_substitution] = STATE(2648), - [sym_process_substitution] = STATE(2648), - [sym__empty_value] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(389), - [sym__special_characters] = ACTIONS(6115), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(6117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6117), - }, - [2418] = { - [sym_do_group] = STATE(2649), - [anon_sym_do] = ACTIONS(437), - [sym_comment] = ACTIONS(53), - }, - [2419] = { - [sym_compound_statement] = STATE(2651), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(483), - [sym_comment] = ACTIONS(53), - }, - [2420] = { - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(6121), - [anon_sym_EQ_TILDE] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(577), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_BANG_EQ] = ACTIONS(573), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(573), - }, - [2421] = { - [anon_sym_AMP_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(605), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6121), - [anon_sym_EQ_TILDE] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(605), - }, - [2422] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_PLUS_EQ] = ACTIONS(6123), - [sym_comment] = ACTIONS(53), - }, - [2423] = { - [aux_sym_concatenation_repeat1] = STATE(2655), - [sym__concat] = ACTIONS(6125), - [sym_variable_name] = ACTIONS(615), - [anon_sym_esac] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [sym__special_characters] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_raw_string] = ACTIONS(617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_LT_LPAREN] = ACTIONS(617), - [anon_sym_GT_LPAREN] = ACTIONS(617), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(617), - [sym_word] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - }, - [2424] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(2658), - [anon_sym_DQUOTE] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6129), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [2425] = { - [sym_string] = STATE(2660), - [anon_sym_DQUOTE] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6133), - [sym_raw_string] = ACTIONS(6135), - [anon_sym_POUND] = ACTIONS(6133), - [anon_sym_DASH] = ACTIONS(6133), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6137), - [anon_sym_STAR] = ACTIONS(6133), - [anon_sym_AT] = ACTIONS(6133), - [anon_sym_QMARK] = ACTIONS(6133), - [anon_sym_0] = ACTIONS(6139), - [anon_sym__] = ACTIONS(6139), - }, - [2426] = { - [aux_sym_concatenation_repeat1] = STATE(2655), - [sym__concat] = ACTIONS(6125), - [sym_variable_name] = ACTIONS(633), - [anon_sym_esac] = ACTIONS(635), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_SEMI_SEMI] = ACTIONS(635), - [anon_sym_PIPE_AMP] = ACTIONS(635), - [anon_sym_AMP_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(635), - [sym__special_characters] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_raw_string] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), - [anon_sym_BQUOTE] = ACTIONS(635), - [anon_sym_LT_LPAREN] = ACTIONS(635), - [anon_sym_GT_LPAREN] = ACTIONS(635), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), - [sym_word] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(635), - [anon_sym_LF] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(635), - }, - [2427] = { - [sym_subscript] = STATE(2666), - [sym_variable_name] = ACTIONS(6141), - [anon_sym_DOLLAR] = ACTIONS(6143), - [anon_sym_POUND] = ACTIONS(6145), - [anon_sym_DASH] = ACTIONS(6143), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6147), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_AT] = ACTIONS(6143), - [anon_sym_QMARK] = ACTIONS(6143), - [anon_sym_0] = ACTIONS(6149), - [anon_sym__] = ACTIONS(6149), - }, - [2428] = { - [sym_for_statement] = STATE(2667), - [sym_c_style_for_statement] = STATE(2667), - [sym_while_statement] = STATE(2667), - [sym_if_statement] = STATE(2667), - [sym_case_statement] = STATE(2667), - [sym_function_definition] = STATE(2667), - [sym_subshell] = STATE(2667), - [sym_pipeline] = STATE(2667), - [sym_list] = STATE(2667), - [sym_negated_command] = STATE(2667), - [sym_test_command] = STATE(2667), - [sym_declaration_command] = STATE(2667), - [sym_unset_command] = STATE(2667), - [sym_command] = STATE(2667), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2668), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [2429] = { - [sym_for_statement] = STATE(2669), - [sym_c_style_for_statement] = STATE(2669), - [sym_while_statement] = STATE(2669), - [sym_if_statement] = STATE(2669), - [sym_case_statement] = STATE(2669), - [sym_function_definition] = STATE(2669), - [sym_subshell] = STATE(2669), - [sym_pipeline] = STATE(2669), - [sym_list] = STATE(2669), - [sym_negated_command] = STATE(2669), - [sym_test_command] = STATE(2669), - [sym_declaration_command] = STATE(2669), - [sym_unset_command] = STATE(2669), - [sym_command] = STATE(2669), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(2670), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [2430] = { - [sym_for_statement] = STATE(2671), - [sym_c_style_for_statement] = STATE(2671), - [sym_while_statement] = STATE(2671), - [sym_if_statement] = STATE(2671), - [sym_case_statement] = STATE(2671), - [sym_function_definition] = STATE(2671), - [sym_subshell] = STATE(2671), - [sym_pipeline] = STATE(2671), - [sym_list] = STATE(2671), - [sym_negated_command] = STATE(2671), - [sym_test_command] = STATE(2671), - [sym_declaration_command] = STATE(2671), - [sym_unset_command] = STATE(2671), - [sym_command] = STATE(2671), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2672), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [2431] = { - [sym_variable_name] = ACTIONS(647), - [anon_sym_esac] = ACTIONS(649), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_SEMI_SEMI] = ACTIONS(649), - [anon_sym_PIPE_AMP] = ACTIONS(649), - [anon_sym_AMP_AMP] = ACTIONS(649), - [anon_sym_PIPE_PIPE] = ACTIONS(649), - [sym__special_characters] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(649), - [anon_sym_DOLLAR] = ACTIONS(649), - [sym_raw_string] = ACTIONS(649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(649), - [anon_sym_BQUOTE] = ACTIONS(649), - [anon_sym_LT_LPAREN] = ACTIONS(649), - [anon_sym_GT_LPAREN] = ACTIONS(649), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), - [sym_word] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_LF] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(649), - }, - [2432] = { - [sym_variable_name] = ACTIONS(633), - [anon_sym_esac] = ACTIONS(635), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_SEMI_SEMI] = ACTIONS(635), - [anon_sym_PIPE_AMP] = ACTIONS(635), - [anon_sym_AMP_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(635), - [sym__special_characters] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_raw_string] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), - [anon_sym_BQUOTE] = ACTIONS(635), - [anon_sym_LT_LPAREN] = ACTIONS(635), - [anon_sym_GT_LPAREN] = ACTIONS(635), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), - [sym_word] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(635), - [anon_sym_LF] = ACTIONS(633), - [anon_sym_AMP] = ACTIONS(635), - }, - [2433] = { - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_PLUS_EQ] = ACTIONS(6123), - [sym_comment] = ACTIONS(53), - }, - [2434] = { - [sym_variable_assignment] = STATE(2432), - [sym_subscript] = STATE(2433), - [sym_concatenation] = STATE(2432), - [sym_string] = STATE(2426), - [sym_simple_expansion] = STATE(2426), - [sym_string_expansion] = STATE(2426), - [sym_expansion] = STATE(2426), - [sym_command_substitution] = STATE(2426), - [sym_process_substitution] = STATE(2426), - [aux_sym_declaration_command_repeat1] = STATE(2673), - [sym_variable_name] = ACTIONS(5633), - [anon_sym_esac] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_SEMI_SEMI] = ACTIONS(651), - [anon_sym_PIPE_AMP] = ACTIONS(651), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [sym__special_characters] = ACTIONS(5635), - [anon_sym_DQUOTE] = ACTIONS(5637), - [anon_sym_DOLLAR] = ACTIONS(5639), - [sym_raw_string] = ACTIONS(5641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5643), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5645), - [anon_sym_BQUOTE] = ACTIONS(5647), - [anon_sym_LT_LPAREN] = ACTIONS(5649), - [anon_sym_GT_LPAREN] = ACTIONS(5649), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5651), - [sym_word] = ACTIONS(5641), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_LF] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(651), - }, - [2435] = { - [aux_sym_concatenation_repeat1] = STATE(2675), - [sym__concat] = ACTIONS(6151), - [anon_sym_esac] = ACTIONS(657), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_SEMI_SEMI] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(657), - [sym__special_characters] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [sym_raw_string] = ACTIONS(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(657), - [sym_word] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_LF] = ACTIONS(659), - [anon_sym_AMP] = ACTIONS(657), - }, - [2436] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(2678), - [anon_sym_DQUOTE] = ACTIONS(6153), - [anon_sym_DOLLAR] = ACTIONS(6155), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [2437] = { - [sym_string] = STATE(2680), - [anon_sym_DQUOTE] = ACTIONS(6157), - [anon_sym_DOLLAR] = ACTIONS(6159), - [sym_raw_string] = ACTIONS(6161), - [anon_sym_POUND] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_AT] = ACTIONS(6159), - [anon_sym_QMARK] = ACTIONS(6159), - [anon_sym_0] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6165), - }, - [2438] = { - [aux_sym_concatenation_repeat1] = STATE(2675), - [sym__concat] = ACTIONS(6151), - [anon_sym_esac] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [sym__special_characters] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(675), - }, - [2439] = { - [sym_subscript] = STATE(2686), - [sym_variable_name] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_POUND] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6169), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6173), - [anon_sym_STAR] = ACTIONS(6169), - [anon_sym_AT] = ACTIONS(6169), - [anon_sym_QMARK] = ACTIONS(6169), - [anon_sym_0] = ACTIONS(6175), - [anon_sym__] = ACTIONS(6175), - }, - [2440] = { - [sym_for_statement] = STATE(2687), - [sym_c_style_for_statement] = STATE(2687), - [sym_while_statement] = STATE(2687), - [sym_if_statement] = STATE(2687), - [sym_case_statement] = STATE(2687), - [sym_function_definition] = STATE(2687), - [sym_subshell] = STATE(2687), - [sym_pipeline] = STATE(2687), - [sym_list] = STATE(2687), - [sym_negated_command] = STATE(2687), - [sym_test_command] = STATE(2687), - [sym_declaration_command] = STATE(2687), - [sym_unset_command] = STATE(2687), - [sym_command] = STATE(2687), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2688), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [2441] = { - [sym_for_statement] = STATE(2689), - [sym_c_style_for_statement] = STATE(2689), - [sym_while_statement] = STATE(2689), - [sym_if_statement] = STATE(2689), - [sym_case_statement] = STATE(2689), - [sym_function_definition] = STATE(2689), - [sym_subshell] = STATE(2689), - [sym_pipeline] = STATE(2689), - [sym_list] = STATE(2689), - [sym_negated_command] = STATE(2689), - [sym_test_command] = STATE(2689), - [sym_declaration_command] = STATE(2689), - [sym_unset_command] = STATE(2689), - [sym_command] = STATE(2689), - [sym_command_name] = STATE(182), - [sym_variable_assignment] = STATE(2690), - [sym_subscript] = STATE(184), - [sym_file_redirect] = STATE(185), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(179), - [sym_simple_expansion] = STATE(179), - [sym_string_expansion] = STATE(179), - [sym_expansion] = STATE(179), - [sym_command_substitution] = STATE(179), - [sym_process_substitution] = STATE(179), - [aux_sym_command_repeat1] = STATE(185), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(305), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(325), - }, - [2442] = { - [sym_for_statement] = STATE(2691), - [sym_c_style_for_statement] = STATE(2691), - [sym_while_statement] = STATE(2691), - [sym_if_statement] = STATE(2691), - [sym_case_statement] = STATE(2691), - [sym_function_definition] = STATE(2691), - [sym_subshell] = STATE(2691), - [sym_pipeline] = STATE(2691), - [sym_list] = STATE(2691), - [sym_negated_command] = STATE(2691), - [sym_test_command] = STATE(2691), - [sym_declaration_command] = STATE(2691), - [sym_unset_command] = STATE(2691), - [sym_command] = STATE(2691), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2692), - [sym_subscript] = STATE(167), - [sym_file_redirect] = STATE(169), - [sym_concatenation] = STATE(168), - [sym_string] = STATE(158), - [sym_simple_expansion] = STATE(158), - [sym_string_expansion] = STATE(158), - [sym_expansion] = STATE(158), - [sym_command_substitution] = STATE(158), - [sym_process_substitution] = STATE(158), - [aux_sym_command_repeat1] = STATE(169), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_case] = ACTIONS(271), - [anon_sym_function] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym_declare] = ACTIONS(283), - [anon_sym_typeset] = ACTIONS(283), - [anon_sym_export] = ACTIONS(283), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_local] = ACTIONS(283), - [anon_sym_unset] = ACTIONS(285), - [anon_sym_unsetenv] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [sym_raw_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [2443] = { + [sym__concat] = ACTIONS(687), + [sym_variable_name] = ACTIONS(687), [anon_sym_esac] = ACTIONS(689), [anon_sym_PIPE] = ACTIONS(689), [anon_sym_SEMI_SEMI] = ACTIONS(689), @@ -62630,128 +63176,309 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), [sym_word] = ACTIONS(689), [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_LF] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(687), [anon_sym_AMP] = ACTIONS(689), }, - [2444] = { - [sym_concatenation] = STATE(2693), - [sym_string] = STATE(2438), - [sym_simple_expansion] = STATE(2438), - [sym_string_expansion] = STATE(2438), - [sym_expansion] = STATE(2438), - [sym_command_substitution] = STATE(2438), - [sym_process_substitution] = STATE(2438), - [aux_sym_unset_command_repeat1] = STATE(2693), - [anon_sym_esac] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_SEMI_SEMI] = ACTIONS(693), - [anon_sym_PIPE_AMP] = ACTIONS(693), - [anon_sym_AMP_AMP] = ACTIONS(693), - [anon_sym_PIPE_PIPE] = ACTIONS(693), - [sym__special_characters] = ACTIONS(5653), - [anon_sym_DQUOTE] = ACTIONS(5655), - [anon_sym_DOLLAR] = ACTIONS(5657), - [sym_raw_string] = ACTIONS(5659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5663), - [anon_sym_BQUOTE] = ACTIONS(5665), - [anon_sym_LT_LPAREN] = ACTIONS(5667), - [anon_sym_GT_LPAREN] = ACTIONS(5667), + [2346] = { + [anon_sym_DQUOTE] = ACTIONS(5698), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5669), - [sym_word] = ACTIONS(5659), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_LF] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(693), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, - [2445] = { - [aux_sym_concatenation_repeat1] = STATE(2694), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_EQ_TILDE] = ACTIONS(733), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [2347] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(5698), + [anon_sym_DOLLAR] = ACTIONS(5700), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), }, - [2446] = { - [anon_sym_RPAREN] = ACTIONS(6177), + [2348] = { + [sym__concat] = ACTIONS(719), + [sym_variable_name] = ACTIONS(719), + [anon_sym_esac] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LT_LPAREN] = ACTIONS(721), + [anon_sym_GT_LPAREN] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [sym_word] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), + }, + [2349] = { + [sym__concat] = ACTIONS(723), + [sym_variable_name] = ACTIONS(723), + [anon_sym_esac] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), + [sym_word] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), + }, + [2350] = { + [sym__concat] = ACTIONS(727), + [sym_variable_name] = ACTIONS(727), + [anon_sym_esac] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + }, + [2351] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(5702), [sym_comment] = ACTIONS(53), }, - [2447] = { - [sym_for_statement] = STATE(554), - [sym_c_style_for_statement] = STATE(554), - [sym_while_statement] = STATE(554), - [sym_if_statement] = STATE(554), - [sym_case_statement] = STATE(554), - [sym_function_definition] = STATE(554), - [sym_subshell] = STATE(554), - [sym_pipeline] = STATE(554), - [sym_list] = STATE(554), - [sym_negated_command] = STATE(554), - [sym_test_command] = STATE(554), - [sym_declaration_command] = STATE(554), - [sym_unset_command] = STATE(554), - [sym_command] = STATE(554), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(555), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_command_repeat1] = STATE(2087), + [2352] = { + [sym_concatenation] = STATE(2491), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2491), + [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_EQ] = ACTIONS(5706), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(5710), + [anon_sym_COLON] = ACTIONS(5706), + [anon_sym_COLON_QMARK] = ACTIONS(5706), + [anon_sym_COLON_DASH] = ACTIONS(5706), + [anon_sym_PERCENT] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(5706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2353] = { + [sym_subscript] = STATE(2495), + [sym_variable_name] = ACTIONS(5712), + [anon_sym_DOLLAR] = ACTIONS(5714), + [anon_sym_DASH] = ACTIONS(5714), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_AT] = ACTIONS(5714), + [anon_sym_QMARK] = ACTIONS(5714), + [anon_sym_0] = ACTIONS(5718), + [anon_sym__] = ACTIONS(5718), + }, + [2354] = { + [sym_concatenation] = STATE(2498), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2498), + [anon_sym_RBRACE] = ACTIONS(5720), + [anon_sym_EQ] = ACTIONS(5722), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(5726), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym_COLON_QMARK] = ACTIONS(5722), + [anon_sym_COLON_DASH] = ACTIONS(5722), + [anon_sym_PERCENT] = ACTIONS(5722), + [anon_sym_DASH] = ACTIONS(5722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2355] = { + [sym_concatenation] = STATE(2501), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2501), + [anon_sym_RBRACE] = ACTIONS(5728), + [anon_sym_EQ] = ACTIONS(5730), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(5734), + [anon_sym_COLON] = ACTIONS(5730), + [anon_sym_COLON_QMARK] = ACTIONS(5730), + [anon_sym_COLON_DASH] = ACTIONS(5730), + [anon_sym_PERCENT] = ACTIONS(5730), + [anon_sym_DASH] = ACTIONS(5730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2356] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5736), + [anon_sym_SEMI_SEMI] = ACTIONS(5738), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym_LF] = ACTIONS(5740), + [anon_sym_AMP] = ACTIONS(5738), + }, + [2357] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5736), + [anon_sym_SEMI_SEMI] = ACTIONS(5738), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym_LF] = ACTIONS(5740), + [anon_sym_AMP] = ACTIONS(5738), + }, + [2358] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2504), + [sym_c_style_for_statement] = STATE(2504), + [sym_while_statement] = STATE(2504), + [sym_if_statement] = STATE(2504), + [sym_case_statement] = STATE(2504), + [sym_function_definition] = STATE(2504), + [sym_subshell] = STATE(2504), + [sym_pipeline] = STATE(2504), + [sym_list] = STATE(2504), + [sym_negated_command] = STATE(2504), + [sym_test_command] = STATE(2504), + [sym_declaration_command] = STATE(2504), + [sym_unset_command] = STATE(2504), + [sym_command] = STATE(2504), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2505), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), + [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), + [anon_sym_while] = ACTIONS(89), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4782), + [anon_sym_function] = ACTIONS(91), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -62759,807 +63486,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), + [sym__special_characters] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(105), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), + [sym_word] = ACTIONS(107), }, - [2448] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_esac] = ACTIONS(6179), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6181), - [anon_sym_DQUOTE] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [sym_raw_string] = ACTIONS(6183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6183), - [anon_sym_BQUOTE] = ACTIONS(6183), - [anon_sym_LT_LPAREN] = ACTIONS(6183), - [anon_sym_GT_LPAREN] = ACTIONS(6183), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6181), - }, - [2449] = { - [sym_for_statement] = STATE(2696), - [sym_c_style_for_statement] = STATE(2696), - [sym_while_statement] = STATE(2696), - [sym_if_statement] = STATE(2696), - [sym_case_statement] = STATE(2696), - [sym_function_definition] = STATE(2696), - [sym_subshell] = STATE(2696), - [sym_pipeline] = STATE(2696), - [sym_list] = STATE(2696), - [sym_negated_command] = STATE(2696), - [sym_test_command] = STATE(2696), - [sym_declaration_command] = STATE(2696), - [sym_unset_command] = STATE(2696), - [sym_command] = STATE(2696), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2697), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_command_repeat1] = STATE(2087), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), - }, - [2450] = { - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_GT_GT] = ACTIONS(6187), - [anon_sym_AMP_GT] = ACTIONS(6185), - [anon_sym_AMP_GT_GT] = ACTIONS(6187), - [anon_sym_LT_AMP] = ACTIONS(6187), - [anon_sym_GT_AMP] = ACTIONS(6187), - [sym_comment] = ACTIONS(53), - }, - [2451] = { - [sym_concatenation] = STATE(565), - [sym_string] = STATE(2700), - [sym_simple_expansion] = STATE(2700), - [sym_string_expansion] = STATE(2700), - [sym_expansion] = STATE(2700), - [sym_command_substitution] = STATE(2700), - [sym_process_substitution] = STATE(2700), - [sym__special_characters] = ACTIONS(6189), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), + [2359] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(5742), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(5736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(6191), - [sym_regex] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_LF] = ACTIONS(5744), + [anon_sym_AMP] = ACTIONS(5742), }, - [2452] = { - [sym_concatenation] = STATE(568), - [sym_string] = STATE(2702), - [sym_simple_expansion] = STATE(2702), - [sym_string_expansion] = STATE(2702), - [sym_expansion] = STATE(2702), - [sym_command_substitution] = STATE(2702), - [sym_process_substitution] = STATE(2702), - [sym__special_characters] = ACTIONS(6193), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6195), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6195), - }, - [2453] = { - [sym_concatenation] = STATE(572), - [sym_string] = STATE(2704), - [sym_simple_expansion] = STATE(2704), - [sym_string_expansion] = STATE(2704), - [sym_expansion] = STATE(2704), - [sym_command_substitution] = STATE(2704), - [sym_process_substitution] = STATE(2704), - [sym__special_characters] = ACTIONS(6197), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6199), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6199), - }, - [2454] = { - [aux_sym_concatenation_repeat1] = STATE(2445), - [sym__simple_heredoc_body] = ACTIONS(1031), - [sym__heredoc_body_beginning] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1031), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [sym__special_characters] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), + [2360] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(5742), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(5736), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_AMP] = ACTIONS(1033), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_LF] = ACTIONS(5744), + [anon_sym_AMP] = ACTIONS(5742), }, - [2455] = { - [aux_sym_concatenation_repeat1] = STATE(2445), - [sym__simple_heredoc_body] = ACTIONS(1035), - [sym__heredoc_body_beginning] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_EQ_TILDE] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [sym__special_characters] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1037), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - }, - [2456] = { - [sym_file_redirect] = STATE(2705), - [sym_heredoc_redirect] = STATE(2705), - [sym_heredoc_body] = STATE(573), - [sym_herestring_redirect] = STATE(2705), - [aux_sym_while_statement_repeat1] = STATE(2705), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5679), - [anon_sym_esac] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_AMP_GT] = ACTIONS(5683), - [anon_sym_AMP_GT_GT] = ACTIONS(5683), - [anon_sym_LT_AMP] = ACTIONS(5683), - [anon_sym_GT_AMP] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(5685), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), - }, - [2457] = { - [sym_file_redirect] = STATE(2706), - [sym_heredoc_redirect] = STATE(2706), - [sym_heredoc_body] = STATE(573), - [sym_herestring_redirect] = STATE(2706), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(2455), - [sym_simple_expansion] = STATE(2455), - [sym_string_expansion] = STATE(2455), - [sym_expansion] = STATE(2455), - [sym_command_substitution] = STATE(2455), - [sym_process_substitution] = STATE(2455), - [aux_sym_while_statement_repeat1] = STATE(2706), - [aux_sym_command_repeat2] = STATE(2707), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5679), - [anon_sym_esac] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_EQ_TILDE] = ACTIONS(5681), - [anon_sym_EQ_EQ] = ACTIONS(5681), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_AMP_GT] = ACTIONS(5683), - [anon_sym_AMP_GT_GT] = ACTIONS(5683), - [anon_sym_LT_AMP] = ACTIONS(5683), - [anon_sym_GT_AMP] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(5685), - [sym__special_characters] = ACTIONS(5687), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5689), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), - }, - [2458] = { - [anon_sym_esac] = ACTIONS(6179), - [sym__special_characters] = ACTIONS(6183), - [anon_sym_DQUOTE] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [sym_raw_string] = ACTIONS(6183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6183), - [anon_sym_BQUOTE] = ACTIONS(6183), - [anon_sym_LT_LPAREN] = ACTIONS(6183), - [anon_sym_GT_LPAREN] = ACTIONS(6183), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6181), - }, - [2459] = { - [anon_sym_esac] = ACTIONS(6179), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(6201), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [2460] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_esac] = ACTIONS(6179), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(6201), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [2461] = { - [sym__terminated_statement] = STATE(2461), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), + [2361] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2507), + [sym_c_style_for_statement] = STATE(2507), + [sym_while_statement] = STATE(2507), + [sym_if_statement] = STATE(2507), + [sym_case_statement] = STATE(2507), + [sym_function_definition] = STATE(2507), + [sym_subshell] = STATE(2507), + [sym_pipeline] = STATE(2507), + [sym_list] = STATE(2507), + [sym_negated_command] = STATE(2507), + [sym_test_command] = STATE(2507), + [sym_declaration_command] = STATE(2507), + [sym_unset_command] = STATE(2507), + [sym_command] = STATE(2507), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2508), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2461), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(1043), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_esac] = ACTIONS(3771), - [anon_sym_SEMI_SEMI] = ACTIONS(1049), - [anon_sym_function] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), - [anon_sym_declare] = ACTIONS(1078), - [anon_sym_typeset] = ACTIONS(1078), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_readonly] = ACTIONS(1078), - [anon_sym_local] = ACTIONS(1078), - [anon_sym_unset] = ACTIONS(1081), - [anon_sym_unsetenv] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1087), - [anon_sym_LT_AMP] = ACTIONS(1087), - [anon_sym_GT_AMP] = ACTIONS(1087), - [sym__special_characters] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1096), - [sym_raw_string] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1108), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1114), - }, - [2462] = { - [sym_file_redirect] = STATE(2706), - [sym_heredoc_redirect] = STATE(2706), - [sym_heredoc_body] = STATE(573), - [sym_herestring_redirect] = STATE(2706), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(2455), - [sym_simple_expansion] = STATE(2455), - [sym_string_expansion] = STATE(2455), - [sym_expansion] = STATE(2455), - [sym_command_substitution] = STATE(2455), - [sym_process_substitution] = STATE(2455), - [aux_sym_while_statement_repeat1] = STATE(2706), - [aux_sym_command_repeat2] = STATE(2709), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5679), - [anon_sym_esac] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_EQ_TILDE] = ACTIONS(5681), - [anon_sym_EQ_EQ] = ACTIONS(5681), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_AMP_GT] = ACTIONS(5683), - [anon_sym_AMP_GT_GT] = ACTIONS(5683), - [anon_sym_LT_AMP] = ACTIONS(5683), - [anon_sym_GT_AMP] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(5685), - [sym__special_characters] = ACTIONS(5687), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5689), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), - }, - [2463] = { - [sym__terminated_statement] = STATE(2461), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2712), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_program_repeat1] = STATE(2461), - [aux_sym_command_repeat1] = STATE(2087), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(6179), - [anon_sym_SEMI_SEMI] = ACTIONS(6203), - [anon_sym_function] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), - }, - [2464] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_esac] = ACTIONS(6205), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6207), - [anon_sym_DQUOTE] = ACTIONS(6209), - [anon_sym_DOLLAR] = ACTIONS(6207), - [sym_raw_string] = ACTIONS(6209), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6209), - [anon_sym_BQUOTE] = ACTIONS(6209), - [anon_sym_LT_LPAREN] = ACTIONS(6209), - [anon_sym_GT_LPAREN] = ACTIONS(6209), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6207), - }, - [2465] = { - [anon_sym_esac] = ACTIONS(6205), - [sym__special_characters] = ACTIONS(6209), - [anon_sym_DQUOTE] = ACTIONS(6209), - [anon_sym_DOLLAR] = ACTIONS(6207), - [sym_raw_string] = ACTIONS(6209), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6209), - [anon_sym_BQUOTE] = ACTIONS(6209), - [anon_sym_LT_LPAREN] = ACTIONS(6209), - [anon_sym_GT_LPAREN] = ACTIONS(6209), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6207), - }, - [2466] = { - [anon_sym_esac] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(6211), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [2467] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_esac] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(6211), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [2468] = { - [sym__terminated_statement] = STATE(2461), - [sym_for_statement] = STATE(2715), - [sym_c_style_for_statement] = STATE(2715), - [sym_while_statement] = STATE(2715), - [sym_if_statement] = STATE(2715), - [sym_case_statement] = STATE(2715), - [sym_function_definition] = STATE(2715), - [sym_subshell] = STATE(2715), - [sym_pipeline] = STATE(2715), - [sym_list] = STATE(2715), - [sym_negated_command] = STATE(2715), - [sym_test_command] = STATE(2715), - [sym_declaration_command] = STATE(2715), - [sym_unset_command] = STATE(2715), - [sym_command] = STATE(2715), - [sym_command_name] = STATE(2083), - [sym_variable_assignment] = STATE(2716), - [sym_subscript] = STATE(2085), - [sym_file_redirect] = STATE(2087), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [aux_sym_program_repeat1] = STATE(2461), - [aux_sym_command_repeat1] = STATE(2087), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4774), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4776), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(6205), - [anon_sym_SEMI_SEMI] = ACTIONS(6213), - [anon_sym_function] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4784), - [anon_sym_LBRACK] = ACTIONS(4786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4788), - [anon_sym_declare] = ACTIONS(4790), - [anon_sym_typeset] = ACTIONS(4790), - [anon_sym_export] = ACTIONS(4790), - [anon_sym_readonly] = ACTIONS(4790), - [anon_sym_local] = ACTIONS(4790), - [anon_sym_unset] = ACTIONS(4792), - [anon_sym_unsetenv] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4794), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4798), - }, - [2469] = { - [sym__terminated_statement] = STATE(2720), - [sym_for_statement] = STATE(2718), - [sym_c_style_for_statement] = STATE(2718), - [sym_while_statement] = STATE(2718), - [sym_if_statement] = STATE(2718), - [sym_case_statement] = STATE(2718), - [sym_function_definition] = STATE(2718), - [sym_subshell] = STATE(2718), - [sym_pipeline] = STATE(2718), - [sym_list] = STATE(2718), - [sym_negated_command] = STATE(2718), - [sym_test_command] = STATE(2718), - [sym_declaration_command] = STATE(2718), - [sym_unset_command] = STATE(2718), - [sym_command] = STATE(2718), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2719), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2720), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), + [anon_sym_while] = ACTIONS(263), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6215), - [anon_sym_function] = ACTIONS(19), + [anon_sym_function] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -63577,62 +63604,624 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(277), }, - [2470] = { - [aux_sym_case_item_repeat1] = STATE(2089), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(6217), + [2362] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5746), + [anon_sym_SEMI_SEMI] = ACTIONS(5748), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5748), + [anon_sym_LF] = ACTIONS(5750), + [anon_sym_AMP] = ACTIONS(5748), + }, + [2363] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5746), + [anon_sym_SEMI_SEMI] = ACTIONS(5748), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(5748), + [anon_sym_LF] = ACTIONS(5750), + [anon_sym_AMP] = ACTIONS(5748), + }, + [2364] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2511), + [sym_c_style_for_statement] = STATE(2511), + [sym_while_statement] = STATE(2511), + [sym_if_statement] = STATE(2511), + [sym_case_statement] = STATE(2511), + [sym_function_definition] = STATE(2511), + [sym_subshell] = STATE(2511), + [sym_pipeline] = STATE(2511), + [sym_list] = STATE(2511), + [sym_negated_command] = STATE(2511), + [sym_test_command] = STATE(2511), + [sym_declaration_command] = STATE(2511), + [sym_unset_command] = STATE(2511), + [sym_command] = STATE(2511), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2512), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [2365] = { + [sym_variable_assignment] = STATE(2365), + [sym_subscript] = STATE(2169), + [sym_concatenation] = STATE(2365), + [sym_string] = STATE(2163), + [sym_simple_expansion] = STATE(2163), + [sym_string_expansion] = STATE(2163), + [sym_expansion] = STATE(2163), + [sym_command_substitution] = STATE(2163), + [sym_process_substitution] = STATE(2163), + [aux_sym_declaration_command_repeat1] = STATE(2365), + [sym_variable_name] = ACTIONS(5752), + [anon_sym_esac] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__special_characters] = ACTIONS(5755), + [anon_sym_DQUOTE] = ACTIONS(5758), + [anon_sym_DOLLAR] = ACTIONS(5761), + [sym_raw_string] = ACTIONS(5764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5770), + [anon_sym_BQUOTE] = ACTIONS(5773), + [anon_sym_LT_LPAREN] = ACTIONS(5776), + [anon_sym_GT_LPAREN] = ACTIONS(5776), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5779), + [sym_word] = ACTIONS(5764), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LF] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1466), + }, + [2366] = { + [sym_string] = STATE(2513), + [sym_simple_expansion] = STATE(2513), + [sym_string_expansion] = STATE(2513), + [sym_expansion] = STATE(2513), + [sym_command_substitution] = STATE(2513), + [sym_process_substitution] = STATE(2513), + [sym__special_characters] = ACTIONS(5782), + [anon_sym_DQUOTE] = ACTIONS(5476), + [anon_sym_DOLLAR] = ACTIONS(5064), + [sym_raw_string] = ACTIONS(5782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5786), + [anon_sym_BQUOTE] = ACTIONS(5788), + [anon_sym_LT_LPAREN] = ACTIONS(5790), + [anon_sym_GT_LPAREN] = ACTIONS(5790), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5782), + }, + [2367] = { + [aux_sym_concatenation_repeat1] = STATE(2514), + [sym__concat] = ACTIONS(5470), + [anon_sym_esac] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(685), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [2368] = { + [sym__concat] = ACTIONS(687), + [anon_sym_esac] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(689), + [anon_sym_PIPE_AMP] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [sym__special_characters] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), + [sym_word] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), + }, + [2369] = { + [anon_sym_DQUOTE] = ACTIONS(5792), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + }, + [2370] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(5792), + [anon_sym_DOLLAR] = ACTIONS(5794), + [sym__string_content] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [sym_comment] = ACTIONS(179), + }, + [2371] = { + [sym__concat] = ACTIONS(719), + [anon_sym_esac] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [sym__special_characters] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [sym_raw_string] = ACTIONS(721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LT_LPAREN] = ACTIONS(721), + [anon_sym_GT_LPAREN] = ACTIONS(721), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [sym_word] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), + }, + [2372] = { + [sym__concat] = ACTIONS(723), + [anon_sym_esac] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), + [sym_word] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), + }, + [2373] = { + [sym__concat] = ACTIONS(727), + [anon_sym_esac] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [sym__special_characters] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + }, + [2374] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(5796), [sym_comment] = ACTIONS(53), }, - [2471] = { - [sym__terminated_statement] = STATE(2725), - [sym_for_statement] = STATE(2723), - [sym_c_style_for_statement] = STATE(2723), - [sym_while_statement] = STATE(2723), - [sym_if_statement] = STATE(2723), - [sym_case_statement] = STATE(2723), - [sym_function_definition] = STATE(2723), - [sym_subshell] = STATE(2723), - [sym_pipeline] = STATE(2723), - [sym_list] = STATE(2723), - [sym_negated_command] = STATE(2723), - [sym_test_command] = STATE(2723), - [sym_declaration_command] = STATE(2723), - [sym_unset_command] = STATE(2723), - [sym_command] = STATE(2723), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2724), + [2375] = { + [sym_concatenation] = STATE(2520), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2520), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_EQ] = ACTIONS(5800), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(5804), + [anon_sym_COLON] = ACTIONS(5800), + [anon_sym_COLON_QMARK] = ACTIONS(5800), + [anon_sym_COLON_DASH] = ACTIONS(5800), + [anon_sym_PERCENT] = ACTIONS(5800), + [anon_sym_DASH] = ACTIONS(5800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2376] = { + [sym_subscript] = STATE(2524), + [sym_variable_name] = ACTIONS(5806), + [anon_sym_DOLLAR] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5810), + [anon_sym_STAR] = ACTIONS(5808), + [anon_sym_AT] = ACTIONS(5808), + [anon_sym_QMARK] = ACTIONS(5808), + [anon_sym_0] = ACTIONS(5812), + [anon_sym__] = ACTIONS(5812), + }, + [2377] = { + [sym_concatenation] = STATE(2527), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2527), + [anon_sym_RBRACE] = ACTIONS(5814), + [anon_sym_EQ] = ACTIONS(5816), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(5820), + [anon_sym_COLON] = ACTIONS(5816), + [anon_sym_COLON_QMARK] = ACTIONS(5816), + [anon_sym_COLON_DASH] = ACTIONS(5816), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_DASH] = ACTIONS(5816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2378] = { + [sym_concatenation] = STATE(2530), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2530), + [anon_sym_RBRACE] = ACTIONS(5822), + [anon_sym_EQ] = ACTIONS(5824), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(5828), + [anon_sym_COLON] = ACTIONS(5824), + [anon_sym_COLON_QMARK] = ACTIONS(5824), + [anon_sym_COLON_DASH] = ACTIONS(5824), + [anon_sym_PERCENT] = ACTIONS(5824), + [anon_sym_DASH] = ACTIONS(5824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2379] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5830), + [anon_sym_SEMI_SEMI] = ACTIONS(5832), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5832), + [anon_sym_LF] = ACTIONS(5834), + [anon_sym_AMP] = ACTIONS(5832), + }, + [2380] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5830), + [anon_sym_SEMI_SEMI] = ACTIONS(5832), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(5832), + [anon_sym_LF] = ACTIONS(5834), + [anon_sym_AMP] = ACTIONS(5832), + }, + [2381] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2533), + [sym_c_style_for_statement] = STATE(2533), + [sym_while_statement] = STATE(2533), + [sym_if_statement] = STATE(2533), + [sym_case_statement] = STATE(2533), + [sym_function_definition] = STATE(2533), + [sym_subshell] = STATE(2533), + [sym_pipeline] = STATE(2533), + [sym_list] = STATE(2533), + [sym_negated_command] = STATE(2533), + [sym_test_command] = STATE(2533), + [sym_declaration_command] = STATE(2533), + [sym_unset_command] = STATE(2533), + [sym_command] = STATE(2533), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2534), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(87), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(89), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(107), + }, + [2382] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(5836), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(5830), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5836), + [anon_sym_LF] = ACTIONS(5838), + [anon_sym_AMP] = ACTIONS(5836), + }, + [2383] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(5836), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(5830), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(5836), + [anon_sym_LF] = ACTIONS(5838), + [anon_sym_AMP] = ACTIONS(5836), + }, + [2384] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2536), + [sym_c_style_for_statement] = STATE(2536), + [sym_while_statement] = STATE(2536), + [sym_if_statement] = STATE(2536), + [sym_case_statement] = STATE(2536), + [sym_function_definition] = STATE(2536), + [sym_subshell] = STATE(2536), + [sym_pipeline] = STATE(2536), + [sym_list] = STATE(2536), + [sym_negated_command] = STATE(2536), + [sym_test_command] = STATE(2536), + [sym_declaration_command] = STATE(2536), + [sym_unset_command] = STATE(2536), + [sym_command] = STATE(2536), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2537), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2725), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), + [anon_sym_while] = ACTIONS(263), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6219), - [anon_sym_function] = ACTIONS(19), + [anon_sym_function] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_typeset] = ACTIONS(273), + [anon_sym_export] = ACTIONS(273), + [anon_sym_readonly] = ACTIONS(273), + [anon_sym_local] = ACTIONS(273), + [anon_sym_unset] = ACTIONS(275), + [anon_sym_unsetenv] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -63650,1405 +64239,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(277), }, - [2472] = { - [aux_sym_case_item_repeat1] = STATE(2089), - [anon_sym_PIPE] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(6221), - [sym_comment] = ACTIONS(53), - }, - [2473] = { - [anon_sym_esac] = ACTIONS(6223), - [anon_sym_PIPE] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_SEMI_SEMI] = ACTIONS(6223), - [anon_sym_PIPE_AMP] = ACTIONS(6223), - [anon_sym_AMP_AMP] = ACTIONS(6223), - [anon_sym_PIPE_PIPE] = ACTIONS(6223), + [2385] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5840), + [anon_sym_SEMI_SEMI] = ACTIONS(5842), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(6223), - [anon_sym_LF] = ACTIONS(6225), - [anon_sym_AMP] = ACTIONS(6223), + [anon_sym_SEMI] = ACTIONS(5842), + [anon_sym_LF] = ACTIONS(5844), + [anon_sym_AMP] = ACTIONS(5842), }, - [2474] = { - [anon_sym_esac] = ACTIONS(6227), - [anon_sym_PIPE] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_SEMI_SEMI] = ACTIONS(6227), - [anon_sym_PIPE_AMP] = ACTIONS(6227), - [anon_sym_AMP_AMP] = ACTIONS(6227), - [anon_sym_PIPE_PIPE] = ACTIONS(6227), + [2386] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(5840), + [anon_sym_SEMI_SEMI] = ACTIONS(5842), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(6227), - [anon_sym_LF] = ACTIONS(6229), - [anon_sym_AMP] = ACTIONS(6227), - }, - [2475] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_in] = ACTIONS(5881), - [anon_sym_SEMI_SEMI] = ACTIONS(5881), - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5881), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), - [anon_sym_BQUOTE] = ACTIONS(5881), - [anon_sym_LT_LPAREN] = ACTIONS(5881), - [anon_sym_GT_LPAREN] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5881), - [anon_sym_SEMI] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5881), - }, - [2476] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_in] = ACTIONS(5885), - [anon_sym_SEMI_SEMI] = ACTIONS(5885), - [sym__special_characters] = ACTIONS(5885), - [anon_sym_DQUOTE] = ACTIONS(5885), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), - [anon_sym_BQUOTE] = ACTIONS(5885), - [anon_sym_LT_LPAREN] = ACTIONS(5885), - [anon_sym_GT_LPAREN] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5885), - [anon_sym_SEMI] = ACTIONS(5885), - [anon_sym_LF] = ACTIONS(5883), - [anon_sym_AMP] = ACTIONS(5885), - }, - [2477] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_in] = ACTIONS(5889), - [anon_sym_SEMI_SEMI] = ACTIONS(5889), - [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), - [anon_sym_BQUOTE] = ACTIONS(5889), - [anon_sym_LT_LPAREN] = ACTIONS(5889), - [anon_sym_GT_LPAREN] = ACTIONS(5889), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5889), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LF] = ACTIONS(5887), - [anon_sym_AMP] = ACTIONS(5889), - }, - [2478] = { - [aux_sym_concatenation_repeat1] = STATE(2478), - [sym__concat] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2479] = { - [aux_sym_concatenation_repeat1] = STATE(2479), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(5736), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2480] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [anon_sym_RBRACK] = ACTIONS(5879), - [anon_sym_EQ_TILDE] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ] = ACTIONS(5881), - [anon_sym_LT] = ACTIONS(5879), - [anon_sym_GT] = ACTIONS(5879), - [anon_sym_BANG_EQ] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5879), - }, - [2481] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_AMP_AMP] = ACTIONS(5883), - [anon_sym_PIPE_PIPE] = ACTIONS(5883), - [anon_sym_RBRACK] = ACTIONS(5883), - [anon_sym_EQ_TILDE] = ACTIONS(5883), - [anon_sym_EQ_EQ] = ACTIONS(5883), - [anon_sym_EQ] = ACTIONS(5885), - [anon_sym_LT] = ACTIONS(5883), - [anon_sym_GT] = ACTIONS(5883), - [anon_sym_BANG_EQ] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5883), - }, - [2482] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_AMP_AMP] = ACTIONS(5887), - [anon_sym_PIPE_PIPE] = ACTIONS(5887), - [anon_sym_RBRACK] = ACTIONS(5887), - [anon_sym_EQ_TILDE] = ACTIONS(5887), - [anon_sym_EQ_EQ] = ACTIONS(5887), - [anon_sym_EQ] = ACTIONS(5889), - [anon_sym_LT] = ACTIONS(5887), - [anon_sym_GT] = ACTIONS(5887), - [anon_sym_BANG_EQ] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5887), - }, - [2483] = { - [sym_file_descriptor] = ACTIONS(2920), - [sym__concat] = ACTIONS(2920), - [anon_sym_esac] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2922), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), - [anon_sym_PIPE_AMP] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_AMP_GT] = ACTIONS(2922), - [anon_sym_AMP_GT_GT] = ACTIONS(2922), - [anon_sym_LT_AMP] = ACTIONS(2922), - [anon_sym_GT_AMP] = ACTIONS(2922), - [anon_sym_LT_LT] = ACTIONS(2922), - [anon_sym_LT_LT_DASH] = ACTIONS(2922), - [anon_sym_LT_LT_LT] = ACTIONS(2922), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), - }, - [2484] = { - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2936), - [anon_sym_PIPE_AMP] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2936), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2936), - [anon_sym_LT_AMP] = ACTIONS(2936), - [anon_sym_GT_AMP] = ACTIONS(2936), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2936), - [anon_sym_LT_LT_LT] = ACTIONS(2936), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [2485] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6231), - [sym_comment] = ACTIONS(53), - }, - [2486] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6233), - [sym_comment] = ACTIONS(53), - }, - [2487] = { - [anon_sym_RBRACE] = ACTIONS(6233), - [sym_comment] = ACTIONS(53), - }, - [2488] = { - [sym_concatenation] = STATE(2730), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2730), - [anon_sym_RBRACE] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(6237), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6239), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_COLON_QMARK] = ACTIONS(6237), - [anon_sym_COLON_DASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2489] = { - [sym_file_descriptor] = ACTIONS(3016), - [sym__concat] = ACTIONS(3016), - [anon_sym_esac] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [anon_sym_PIPE_AMP] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_AMP_GT] = ACTIONS(3018), - [anon_sym_AMP_GT_GT] = ACTIONS(3018), - [anon_sym_LT_AMP] = ACTIONS(3018), - [anon_sym_GT_AMP] = ACTIONS(3018), - [anon_sym_LT_LT] = ACTIONS(3018), - [anon_sym_LT_LT_DASH] = ACTIONS(3018), - [anon_sym_LT_LT_LT] = ACTIONS(3018), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), - }, - [2490] = { - [sym_concatenation] = STATE(2733), - [sym_string] = STATE(2732), - [sym_simple_expansion] = STATE(2732), - [sym_string_expansion] = STATE(2732), - [sym_expansion] = STATE(2732), - [sym_command_substitution] = STATE(2732), - [sym_process_substitution] = STATE(2732), - [anon_sym_RBRACE] = ACTIONS(6233), - [sym__special_characters] = ACTIONS(6241), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(6243), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6243), - }, - [2491] = { - [sym_file_descriptor] = ACTIONS(3059), - [sym__concat] = ACTIONS(3059), - [anon_sym_esac] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_SEMI_SEMI] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(3061), - [anon_sym_LT_AMP] = ACTIONS(3061), - [anon_sym_GT_AMP] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_LT_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT_LT] = ACTIONS(3061), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - }, - [2492] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6245), - }, - [2493] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6247), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2494] = { - [sym_file_descriptor] = ACTIONS(3067), - [sym__concat] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3069), - [anon_sym_PIPE_AMP] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_AMP_GT] = ACTIONS(3069), - [anon_sym_AMP_GT_GT] = ACTIONS(3069), - [anon_sym_LT_AMP] = ACTIONS(3069), - [anon_sym_GT_AMP] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_LT_LT_DASH] = ACTIONS(3069), - [anon_sym_LT_LT_LT] = ACTIONS(3069), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), - }, - [2495] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6249), - }, - [2496] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2497] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6253), - }, - [2498] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6233), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2499] = { - [sym_concatenation] = STATE(2740), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2740), - [anon_sym_RBRACE] = ACTIONS(6255), - [anon_sym_EQ] = ACTIONS(6257), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6257), - [anon_sym_COLON_QMARK] = ACTIONS(6257), - [anon_sym_COLON_DASH] = ACTIONS(6257), - [anon_sym_PERCENT] = ACTIONS(6257), - [anon_sym_DASH] = ACTIONS(6257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2500] = { - [sym_file_descriptor] = ACTIONS(3083), - [sym__concat] = ACTIONS(3083), - [anon_sym_esac] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3085), - [anon_sym_PIPE_AMP] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_GT] = ACTIONS(3085), - [anon_sym_AMP_GT_GT] = ACTIONS(3085), - [anon_sym_LT_AMP] = ACTIONS(3085), - [anon_sym_GT_AMP] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_LT_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT_LT] = ACTIONS(3085), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - }, - [2501] = { - [sym_concatenation] = STATE(2742), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2742), - [anon_sym_RBRACE] = ACTIONS(6261), - [anon_sym_EQ] = ACTIONS(6263), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6263), - [anon_sym_COLON_QMARK] = ACTIONS(6263), - [anon_sym_COLON_DASH] = ACTIONS(6263), - [anon_sym_PERCENT] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2502] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5879), - [anon_sym_EQ_TILDE] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ] = ACTIONS(5881), - [anon_sym_LT] = ACTIONS(5879), - [anon_sym_GT] = ACTIONS(5879), - [anon_sym_BANG_EQ] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5879), - }, - [2503] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5883), - [anon_sym_AMP_AMP] = ACTIONS(5883), - [anon_sym_PIPE_PIPE] = ACTIONS(5883), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5883), - [anon_sym_EQ_TILDE] = ACTIONS(5883), - [anon_sym_EQ_EQ] = ACTIONS(5883), - [anon_sym_EQ] = ACTIONS(5885), - [anon_sym_LT] = ACTIONS(5883), - [anon_sym_GT] = ACTIONS(5883), - [anon_sym_BANG_EQ] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5883), - }, - [2504] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5887), - [anon_sym_AMP_AMP] = ACTIONS(5887), - [anon_sym_PIPE_PIPE] = ACTIONS(5887), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5887), - [anon_sym_EQ_TILDE] = ACTIONS(5887), - [anon_sym_EQ_EQ] = ACTIONS(5887), - [anon_sym_EQ] = ACTIONS(5889), - [anon_sym_LT] = ACTIONS(5887), - [anon_sym_GT] = ACTIONS(5887), - [anon_sym_BANG_EQ] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5887), - }, - [2505] = { - [sym__concat] = ACTIONS(5879), - [sym_variable_name] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5881), - [anon_sym_SEMI_SEMI] = ACTIONS(5881), - [anon_sym_PIPE_AMP] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5881), - [anon_sym_PIPE_PIPE] = ACTIONS(5881), - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5881), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), - [anon_sym_BQUOTE] = ACTIONS(5881), - [anon_sym_LT_LPAREN] = ACTIONS(5881), - [anon_sym_GT_LPAREN] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), - [sym_word] = ACTIONS(5881), - [anon_sym_SEMI] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5881), - }, - [2506] = { - [sym__concat] = ACTIONS(5883), - [sym_variable_name] = ACTIONS(5883), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5885), - [anon_sym_SEMI_SEMI] = ACTIONS(5885), - [anon_sym_PIPE_AMP] = ACTIONS(5885), - [anon_sym_AMP_AMP] = ACTIONS(5885), - [anon_sym_PIPE_PIPE] = ACTIONS(5885), - [sym__special_characters] = ACTIONS(5885), - [anon_sym_DQUOTE] = ACTIONS(5885), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), - [anon_sym_BQUOTE] = ACTIONS(5885), - [anon_sym_LT_LPAREN] = ACTIONS(5885), - [anon_sym_GT_LPAREN] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), - [sym_word] = ACTIONS(5885), - [anon_sym_SEMI] = ACTIONS(5885), - [anon_sym_LF] = ACTIONS(5883), - [anon_sym_AMP] = ACTIONS(5885), - }, - [2507] = { - [sym__concat] = ACTIONS(5887), - [sym_variable_name] = ACTIONS(5887), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5889), - [anon_sym_SEMI_SEMI] = ACTIONS(5889), - [anon_sym_PIPE_AMP] = ACTIONS(5889), - [anon_sym_AMP_AMP] = ACTIONS(5889), - [anon_sym_PIPE_PIPE] = ACTIONS(5889), - [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), - [anon_sym_BQUOTE] = ACTIONS(5889), - [anon_sym_LT_LPAREN] = ACTIONS(5889), - [anon_sym_GT_LPAREN] = ACTIONS(5889), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), - [sym_word] = ACTIONS(5889), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LF] = ACTIONS(5887), - [anon_sym_AMP] = ACTIONS(5889), - }, - [2508] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5881), - [anon_sym_SEMI_SEMI] = ACTIONS(5881), - [anon_sym_PIPE_AMP] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5881), - [anon_sym_PIPE_PIPE] = ACTIONS(5881), - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5881), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), - [anon_sym_BQUOTE] = ACTIONS(5881), - [anon_sym_LT_LPAREN] = ACTIONS(5881), - [anon_sym_GT_LPAREN] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), - [sym_word] = ACTIONS(5881), - [anon_sym_SEMI] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5881), - }, - [2509] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5885), - [anon_sym_SEMI_SEMI] = ACTIONS(5885), - [anon_sym_PIPE_AMP] = ACTIONS(5885), - [anon_sym_AMP_AMP] = ACTIONS(5885), - [anon_sym_PIPE_PIPE] = ACTIONS(5885), - [sym__special_characters] = ACTIONS(5885), - [anon_sym_DQUOTE] = ACTIONS(5885), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), - [anon_sym_BQUOTE] = ACTIONS(5885), - [anon_sym_LT_LPAREN] = ACTIONS(5885), - [anon_sym_GT_LPAREN] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), - [sym_word] = ACTIONS(5885), - [anon_sym_SEMI] = ACTIONS(5885), - [anon_sym_LF] = ACTIONS(5883), - [anon_sym_AMP] = ACTIONS(5885), - }, - [2510] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5889), - [anon_sym_SEMI_SEMI] = ACTIONS(5889), - [anon_sym_PIPE_AMP] = ACTIONS(5889), - [anon_sym_AMP_AMP] = ACTIONS(5889), - [anon_sym_PIPE_PIPE] = ACTIONS(5889), - [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), - [anon_sym_BQUOTE] = ACTIONS(5889), - [anon_sym_LT_LPAREN] = ACTIONS(5889), - [anon_sym_GT_LPAREN] = ACTIONS(5889), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), - [sym_word] = ACTIONS(5889), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LF] = ACTIONS(5887), - [anon_sym_AMP] = ACTIONS(5889), - }, - [2511] = { - [sym_file_descriptor] = ACTIONS(5879), - [sym__concat] = ACTIONS(5879), - [sym_variable_name] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5879), - [anon_sym_PIPE_AMP] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_GT_GT] = ACTIONS(5879), - [anon_sym_AMP_GT] = ACTIONS(5881), - [anon_sym_AMP_GT_GT] = ACTIONS(5879), - [anon_sym_LT_AMP] = ACTIONS(5879), - [anon_sym_GT_AMP] = ACTIONS(5879), - [sym__special_characters] = ACTIONS(5879), - [anon_sym_DQUOTE] = ACTIONS(5879), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), - [anon_sym_BQUOTE] = ACTIONS(5879), - [anon_sym_LT_LPAREN] = ACTIONS(5879), - [anon_sym_GT_LPAREN] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5879), - }, - [2512] = { - [sym_file_descriptor] = ACTIONS(5883), - [sym__concat] = ACTIONS(5883), - [sym_variable_name] = ACTIONS(5883), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5883), - [anon_sym_PIPE_AMP] = ACTIONS(5883), - [anon_sym_AMP_AMP] = ACTIONS(5883), - [anon_sym_PIPE_PIPE] = ACTIONS(5883), - [anon_sym_LT] = ACTIONS(5885), - [anon_sym_GT] = ACTIONS(5885), - [anon_sym_GT_GT] = ACTIONS(5883), - [anon_sym_AMP_GT] = ACTIONS(5885), - [anon_sym_AMP_GT_GT] = ACTIONS(5883), - [anon_sym_LT_AMP] = ACTIONS(5883), - [anon_sym_GT_AMP] = ACTIONS(5883), - [sym__special_characters] = ACTIONS(5883), - [anon_sym_DQUOTE] = ACTIONS(5883), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), - [anon_sym_BQUOTE] = ACTIONS(5883), - [anon_sym_LT_LPAREN] = ACTIONS(5883), - [anon_sym_GT_LPAREN] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5883), - }, - [2513] = { - [sym_file_descriptor] = ACTIONS(5887), - [sym__concat] = ACTIONS(5887), - [sym_variable_name] = ACTIONS(5887), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5887), - [anon_sym_PIPE_AMP] = ACTIONS(5887), - [anon_sym_AMP_AMP] = ACTIONS(5887), - [anon_sym_PIPE_PIPE] = ACTIONS(5887), - [anon_sym_LT] = ACTIONS(5889), - [anon_sym_GT] = ACTIONS(5889), - [anon_sym_GT_GT] = ACTIONS(5887), - [anon_sym_AMP_GT] = ACTIONS(5889), - [anon_sym_AMP_GT_GT] = ACTIONS(5887), - [anon_sym_LT_AMP] = ACTIONS(5887), - [anon_sym_GT_AMP] = ACTIONS(5887), - [sym__special_characters] = ACTIONS(5887), - [anon_sym_DQUOTE] = ACTIONS(5887), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), - [anon_sym_BQUOTE] = ACTIONS(5887), - [anon_sym_LT_LPAREN] = ACTIONS(5887), - [anon_sym_GT_LPAREN] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5887), - }, - [2514] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_DQUOTE] = ACTIONS(5881), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym__string_content] = ACTIONS(5879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), - [anon_sym_BQUOTE] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - }, - [2515] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_DQUOTE] = ACTIONS(5885), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym__string_content] = ACTIONS(5883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), - [anon_sym_BQUOTE] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - }, - [2516] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_DQUOTE] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym__string_content] = ACTIONS(5887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), - [anon_sym_BQUOTE] = ACTIONS(5889), - [sym_comment] = ACTIONS(179), - }, - [2517] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_RBRACE] = ACTIONS(4164), - [sym_comment] = ACTIONS(53), - }, - [2518] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4172), - [sym_comment] = ACTIONS(53), - }, - [2519] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_RBRACE] = ACTIONS(4259), - [sym_comment] = ACTIONS(53), - }, - [2520] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6267), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2521] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6269), - [sym_comment] = ACTIONS(53), - }, - [2522] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6271), - [sym_comment] = ACTIONS(53), - }, - [2523] = { - [anon_sym_RBRACE] = ACTIONS(6271), - [sym_comment] = ACTIONS(53), - }, - [2524] = { - [sym_concatenation] = STATE(2747), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2747), - [anon_sym_RBRACE] = ACTIONS(6273), - [anon_sym_EQ] = ACTIONS(6275), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6275), - [anon_sym_COLON_QMARK] = ACTIONS(6275), - [anon_sym_COLON_DASH] = ACTIONS(6275), - [anon_sym_PERCENT] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2525] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_RBRACE] = ACTIONS(4275), - [sym_comment] = ACTIONS(53), - }, - [2526] = { - [sym_concatenation] = STATE(2749), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2749), - [anon_sym_RBRACE] = ACTIONS(6279), - [anon_sym_EQ] = ACTIONS(6281), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_COLON_QMARK] = ACTIONS(6281), - [anon_sym_COLON_DASH] = ACTIONS(6281), - [anon_sym_PERCENT] = ACTIONS(6281), - [anon_sym_DASH] = ACTIONS(6281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2527] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_RBRACE] = ACTIONS(4285), - [sym_comment] = ACTIONS(53), - }, - [2528] = { - [sym_concatenation] = STATE(2751), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2751), - [anon_sym_RBRACE] = ACTIONS(6285), - [anon_sym_EQ] = ACTIONS(6287), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6287), - [anon_sym_COLON_QMARK] = ACTIONS(6287), - [anon_sym_COLON_DASH] = ACTIONS(6287), - [anon_sym_PERCENT] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2529] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - }, - [2530] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2531] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_RBRACE] = ACTIONS(4301), - [sym_comment] = ACTIONS(53), - }, - [2532] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6293), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2533] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [sym__special_characters] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_POUND] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_COLON] = ACTIONS(5204), - [anon_sym_COLON_QMARK] = ACTIONS(5204), - [anon_sym_COLON_DASH] = ACTIONS(5204), - [anon_sym_PERCENT] = ACTIONS(5204), - [anon_sym_DASH] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5204), - }, - [2534] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_RBRACE] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_POUND] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_COLON] = ACTIONS(5208), - [anon_sym_COLON_QMARK] = ACTIONS(5208), - [anon_sym_COLON_DASH] = ACTIONS(5208), - [anon_sym_PERCENT] = ACTIONS(5208), - [anon_sym_DASH] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5208), - }, - [2535] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(5210), - [anon_sym_EQ] = ACTIONS(5212), - [sym__special_characters] = ACTIONS(5212), - [anon_sym_DQUOTE] = ACTIONS(5210), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5210), - [anon_sym_POUND] = ACTIONS(5210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), - [anon_sym_COLON] = ACTIONS(5212), - [anon_sym_COLON_QMARK] = ACTIONS(5212), - [anon_sym_COLON_DASH] = ACTIONS(5212), - [anon_sym_PERCENT] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), - [anon_sym_BQUOTE] = ACTIONS(5210), - [anon_sym_LT_LPAREN] = ACTIONS(5210), - [anon_sym_GT_LPAREN] = ACTIONS(5210), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5212), - }, - [2536] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_RBRACE] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5214), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5214), - [anon_sym_POUND] = ACTIONS(5214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), - [anon_sym_COLON] = ACTIONS(5216), - [anon_sym_COLON_QMARK] = ACTIONS(5216), - [anon_sym_COLON_DASH] = ACTIONS(5216), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_DASH] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), - [anon_sym_BQUOTE] = ACTIONS(5214), - [anon_sym_LT_LPAREN] = ACTIONS(5214), - [anon_sym_GT_LPAREN] = ACTIONS(5214), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5216), - }, - [2537] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2538] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5222), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_POUND] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_COLON] = ACTIONS(5222), - [anon_sym_COLON_QMARK] = ACTIONS(5222), - [anon_sym_COLON_DASH] = ACTIONS(5222), - [anon_sym_PERCENT] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5222), - }, - [2539] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6297), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2540] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_RBRACE] = ACTIONS(5226), - [anon_sym_EQ] = ACTIONS(5228), - [sym__special_characters] = ACTIONS(5228), - [anon_sym_DQUOTE] = ACTIONS(5226), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5226), - [anon_sym_POUND] = ACTIONS(5226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), - [anon_sym_COLON] = ACTIONS(5228), - [anon_sym_COLON_QMARK] = ACTIONS(5228), - [anon_sym_COLON_DASH] = ACTIONS(5228), - [anon_sym_PERCENT] = ACTIONS(5228), - [anon_sym_DASH] = ACTIONS(5228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), - [anon_sym_BQUOTE] = ACTIONS(5226), - [anon_sym_LT_LPAREN] = ACTIONS(5226), - [anon_sym_GT_LPAREN] = ACTIONS(5226), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5228), - }, - [2541] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6299), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2542] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(5234), - [anon_sym_DQUOTE] = ACTIONS(5232), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5232), - [anon_sym_POUND] = ACTIONS(5232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), - [anon_sym_COLON] = ACTIONS(5234), - [anon_sym_COLON_QMARK] = ACTIONS(5234), - [anon_sym_COLON_DASH] = ACTIONS(5234), - [anon_sym_PERCENT] = ACTIONS(5234), - [anon_sym_DASH] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), - [anon_sym_BQUOTE] = ACTIONS(5232), - [anon_sym_LT_LPAREN] = ACTIONS(5232), - [anon_sym_GT_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5234), - }, - [2543] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_RBRACE] = ACTIONS(5236), - [anon_sym_EQ] = ACTIONS(5238), - [sym__special_characters] = ACTIONS(5238), - [anon_sym_DQUOTE] = ACTIONS(5236), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5236), - [anon_sym_POUND] = ACTIONS(5236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), - [anon_sym_COLON] = ACTIONS(5238), - [anon_sym_COLON_QMARK] = ACTIONS(5238), - [anon_sym_COLON_DASH] = ACTIONS(5238), - [anon_sym_PERCENT] = ACTIONS(5238), - [anon_sym_DASH] = ACTIONS(5238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), - [anon_sym_BQUOTE] = ACTIONS(5236), - [anon_sym_LT_LPAREN] = ACTIONS(5236), - [anon_sym_GT_LPAREN] = ACTIONS(5236), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5238), - }, - [2544] = { - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2526), - [anon_sym_PIPE_AMP] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_PIPE_PIPE] = ACTIONS(2526), - [anon_sym_BQUOTE] = ACTIONS(2526), - [sym_comment] = ACTIONS(53), - }, - [2545] = { - [sym__terminated_statement] = STATE(1182), - [sym_for_statement] = STATE(680), - [sym_c_style_for_statement] = STATE(680), - [sym_while_statement] = STATE(680), - [sym_if_statement] = STATE(680), - [sym_case_statement] = STATE(680), - [sym_function_definition] = STATE(680), - [sym_subshell] = STATE(680), - [sym_pipeline] = STATE(680), - [sym_list] = STATE(680), - [sym_negated_command] = STATE(680), - [sym_test_command] = STATE(680), - [sym_declaration_command] = STATE(680), - [sym_unset_command] = STATE(680), - [sym_command] = STATE(680), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(681), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1182), - [aux_sym_command_repeat1] = STATE(32), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(5842), + [anon_sym_LF] = ACTIONS(5844), + [anon_sym_AMP] = ACTIONS(5842), + }, + [2387] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2540), + [sym_c_style_for_statement] = STATE(2540), + [sym_while_statement] = STATE(2540), + [sym_if_statement] = STATE(2540), + [sym_case_statement] = STATE(2540), + [sym_function_definition] = STATE(2540), + [sym_subshell] = STATE(2540), + [sym_pipeline] = STATE(2540), + [sym_list] = STATE(2540), + [sym_negated_command] = STATE(2540), + [sym_test_command] = STATE(2540), + [sym_declaration_command] = STATE(2540), + [sym_unset_command] = STATE(2540), + [sym_command] = STATE(2540), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2541), + [sym_subscript] = STATE(67), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(62), + [sym_simple_expansion] = STATE(62), + [sym_string_expansion] = STATE(62), + [sym_expansion] = STATE(62), + [sym_command_substitution] = STATE(62), + [sym_process_substitution] = STATE(62), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), + [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), + [anon_sym_while] = ACTIONS(89), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), + [anon_sym_function] = ACTIONS(91), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(6301), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LBRACK_LBRACK] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_typeset] = ACTIONS(99), + [anon_sym_export] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_local] = ACTIONS(99), + [anon_sym_unset] = ACTIONS(101), + [anon_sym_unsetenv] = ACTIONS(101), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -65056,6720 +64338,3868 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(35), [anon_sym_LT_AMP] = ACTIONS(35), [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), + [sym__special_characters] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), + [sym_raw_string] = ACTIONS(105), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(107), }, - [2546] = { - [anon_sym_PIPE] = ACTIONS(5579), - [anon_sym_RPAREN] = ACTIONS(5581), - [anon_sym_PIPE_AMP] = ACTIONS(5581), - [anon_sym_AMP_AMP] = ACTIONS(5581), - [anon_sym_PIPE_PIPE] = ACTIONS(5581), - [anon_sym_BQUOTE] = ACTIONS(5581), - [sym_comment] = ACTIONS(53), - }, - [2547] = { - [sym_do_group] = STATE(2758), - [sym_compound_statement] = STATE(2758), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(5240), - [sym_comment] = ACTIONS(53), - }, - [2548] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(6303), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_EQ_TILDE] = ACTIONS(3686), - [anon_sym_EQ_EQ] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_GT] = ACTIONS(3684), - [anon_sym_BANG_EQ] = ACTIONS(3684), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3684), - }, - [2549] = { - [anon_sym_PIPE] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5617), - [anon_sym_PIPE_AMP] = ACTIONS(5617), - [anon_sym_AMP_AMP] = ACTIONS(5617), - [anon_sym_PIPE_PIPE] = ACTIONS(5617), - [anon_sym_BQUOTE] = ACTIONS(5617), - [sym_comment] = ACTIONS(53), - }, - [2550] = { - [anon_sym_PIPE] = ACTIONS(5708), - [anon_sym_RPAREN] = ACTIONS(5710), - [anon_sym_PIPE_AMP] = ACTIONS(5710), - [anon_sym_AMP_AMP] = ACTIONS(5710), - [anon_sym_PIPE_PIPE] = ACTIONS(5710), - [anon_sym_BQUOTE] = ACTIONS(5710), - [sym_comment] = ACTIONS(53), - }, - [2551] = { - [anon_sym_esac] = ACTIONS(6305), - [sym_comment] = ACTIONS(53), - }, - [2552] = { - [anon_sym_PIPE] = ACTIONS(5718), - [anon_sym_RPAREN] = ACTIONS(5720), - [anon_sym_PIPE_AMP] = ACTIONS(5720), - [anon_sym_AMP_AMP] = ACTIONS(5720), - [anon_sym_PIPE_PIPE] = ACTIONS(5720), - [anon_sym_BQUOTE] = ACTIONS(5720), - [sym_comment] = ACTIONS(53), - }, - [2553] = { - [anon_sym_esac] = ACTIONS(6307), - [sym_comment] = ACTIONS(53), - }, - [2554] = { - [aux_sym_concatenation_repeat1] = STATE(2554), - [sym__concat] = ACTIONS(4422), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [2555] = { - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1754), - [anon_sym_LT_LT_LT] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [2556] = { - [aux_sym_concatenation_repeat1] = STATE(2556), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1754), - [anon_sym_LT_LT_LT] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [2557] = { - [sym_file_descriptor] = ACTIONS(1761), - [sym__concat] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_PIPE_AMP] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1761), - [anon_sym_AMP_GT] = ACTIONS(1763), - [anon_sym_AMP_GT_GT] = ACTIONS(1761), - [anon_sym_LT_AMP] = ACTIONS(1761), - [anon_sym_GT_AMP] = ACTIONS(1761), - [anon_sym_LT_LT] = ACTIONS(1763), - [anon_sym_LT_LT_DASH] = ACTIONS(1761), - [anon_sym_LT_LT_LT] = ACTIONS(1761), - [anon_sym_BQUOTE] = ACTIONS(1761), - [sym_comment] = ACTIONS(53), - }, - [2558] = { - [anon_sym_DQUOTE] = ACTIONS(6312), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [2388] = { + [sym_concatenation] = STATE(2388), + [sym_string] = STATE(2174), + [sym_simple_expansion] = STATE(2174), + [sym_string_expansion] = STATE(2174), + [sym_expansion] = STATE(2174), + [sym_command_substitution] = STATE(2174), + [sym_process_substitution] = STATE(2174), + [aux_sym_unset_command_repeat1] = STATE(2388), + [anon_sym_esac] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(5849), + [anon_sym_DOLLAR] = ACTIONS(5852), + [sym_raw_string] = ACTIONS(5855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5861), + [anon_sym_BQUOTE] = ACTIONS(5864), + [anon_sym_LT_LPAREN] = ACTIONS(5867), + [anon_sym_GT_LPAREN] = ACTIONS(5867), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5870), + [sym_word] = ACTIONS(5855), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1561), }, - [2559] = { - [sym_concatenation] = STATE(2766), - [sym_string] = STATE(2765), - [sym_simple_expansion] = STATE(2765), - [sym_string_expansion] = STATE(2765), - [sym_expansion] = STATE(2765), - [sym_command_substitution] = STATE(2765), - [sym_process_substitution] = STATE(2765), - [anon_sym_RBRACE] = ACTIONS(6314), - [sym__special_characters] = ACTIONS(6316), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(6318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6318), + [2389] = { + [aux_sym_concatenation_repeat1] = STATE(2389), + [sym__simple_heredoc_body] = ACTIONS(1648), + [sym__heredoc_body_beginning] = ACTIONS(1648), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1652), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_EQ_TILDE] = ACTIONS(1650), + [anon_sym_EQ_EQ] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, - [2560] = { - [sym_file_descriptor] = ACTIONS(1846), - [sym__concat] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_AMP_GT] = ACTIONS(1848), - [anon_sym_AMP_GT_GT] = ACTIONS(1846), - [anon_sym_LT_AMP] = ACTIONS(1846), - [anon_sym_GT_AMP] = ACTIONS(1846), - [anon_sym_LT_LT] = ACTIONS(1848), - [anon_sym_LT_LT_DASH] = ACTIONS(1846), - [anon_sym_LT_LT_LT] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), + [2390] = { + [sym_compound_statement] = STATE(2542), + [anon_sym_LBRACE] = ACTIONS(435), [sym_comment] = ACTIONS(53), }, - [2561] = { + [2391] = { + [anon_sym_esac] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6320), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1880), }, - [2562] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6322), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2392] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_esac] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1880), }, - [2563] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(6324), + [2393] = { + [sym_concatenation] = STATE(922), + [sym_string] = STATE(2544), + [sym_simple_expansion] = STATE(2544), + [sym_string_expansion] = STATE(2544), + [sym_expansion] = STATE(2544), + [sym_command_substitution] = STATE(2544), + [sym_process_substitution] = STATE(2544), + [sym__special_characters] = ACTIONS(5873), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5875), }, - [2564] = { - [sym_concatenation] = STATE(2772), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2772), - [anon_sym_RBRACE] = ACTIONS(6326), - [anon_sym_EQ] = ACTIONS(6328), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6332), - [anon_sym_COLON] = ACTIONS(6328), - [anon_sym_COLON_QMARK] = ACTIONS(6328), - [anon_sym_COLON_DASH] = ACTIONS(6328), - [anon_sym_PERCENT] = ACTIONS(6328), - [anon_sym_DASH] = ACTIONS(6328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2565] = { - [sym_concatenation] = STATE(2775), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2775), - [anon_sym_RBRACE] = ACTIONS(6334), - [anon_sym_EQ] = ACTIONS(6336), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6340), - [anon_sym_COLON] = ACTIONS(6336), - [anon_sym_COLON_QMARK] = ACTIONS(6336), - [anon_sym_COLON_DASH] = ACTIONS(6336), - [anon_sym_PERCENT] = ACTIONS(6336), - [anon_sym_DASH] = ACTIONS(6336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2566] = { - [sym_concatenation] = STATE(2777), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2777), - [anon_sym_RBRACE] = ACTIONS(6314), - [anon_sym_EQ] = ACTIONS(6342), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6346), - [anon_sym_COLON] = ACTIONS(6342), - [anon_sym_COLON_QMARK] = ACTIONS(6342), - [anon_sym_COLON_DASH] = ACTIONS(6342), - [anon_sym_PERCENT] = ACTIONS(6342), - [anon_sym_DASH] = ACTIONS(6342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2567] = { - [sym_file_descriptor] = ACTIONS(1914), - [sym__concat] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1914), + [2394] = { + [aux_sym_concatenation_repeat1] = STATE(2181), + [sym__simple_heredoc_body] = ACTIONS(1912), + [sym__heredoc_body_beginning] = ACTIONS(1912), + [sym_file_descriptor] = ACTIONS(1912), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_SEMI_SEMI] = ACTIONS(1914), [anon_sym_PIPE_AMP] = ACTIONS(1914), [anon_sym_AMP_AMP] = ACTIONS(1914), [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), + [anon_sym_EQ_TILDE] = ACTIONS(1914), + [anon_sym_EQ_EQ] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1914), [anon_sym_GT_GT] = ACTIONS(1914), - [anon_sym_AMP_GT] = ACTIONS(1916), + [anon_sym_AMP_GT] = ACTIONS(1914), [anon_sym_AMP_GT_GT] = ACTIONS(1914), [anon_sym_LT_AMP] = ACTIONS(1914), [anon_sym_GT_AMP] = ACTIONS(1914), - [anon_sym_LT_LT] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1914), [anon_sym_LT_LT_DASH] = ACTIONS(1914), [anon_sym_LT_LT_LT] = ACTIONS(1914), + [sym__special_characters] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [sym_raw_string] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), [anon_sym_BQUOTE] = ACTIONS(1914), - [sym_comment] = ACTIONS(53), - }, - [2568] = { + [anon_sym_LT_LPAREN] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1914), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6348), + [sym_word] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_LF] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1914), }, - [2569] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6350), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2395] = { + [aux_sym_concatenation_repeat1] = STATE(2181), + [sym__simple_heredoc_body] = ACTIONS(1916), + [sym__heredoc_body_beginning] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(1916), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_SEMI_SEMI] = ACTIONS(1918), + [anon_sym_PIPE_AMP] = ACTIONS(1918), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_EQ_TILDE] = ACTIONS(1918), + [anon_sym_EQ_EQ] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_AMP_GT] = ACTIONS(1918), + [anon_sym_AMP_GT_GT] = ACTIONS(1918), + [anon_sym_LT_AMP] = ACTIONS(1918), + [anon_sym_GT_AMP] = ACTIONS(1918), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_LT_LT_DASH] = ACTIONS(1918), + [anon_sym_LT_LT_LT] = ACTIONS(1918), + [sym__special_characters] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [sym_raw_string] = ACTIONS(1918), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), + [anon_sym_BQUOTE] = ACTIONS(1918), + [anon_sym_LT_LPAREN] = ACTIONS(1918), + [anon_sym_GT_LPAREN] = ACTIONS(1918), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1918), }, - [2570] = { - [sym_file_descriptor] = ACTIONS(1922), - [sym__concat] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1922), - [anon_sym_PIPE_AMP] = ACTIONS(1922), - [anon_sym_AMP_AMP] = ACTIONS(1922), - [anon_sym_PIPE_PIPE] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_GT_GT] = ACTIONS(1922), - [anon_sym_AMP_GT] = ACTIONS(1924), - [anon_sym_AMP_GT_GT] = ACTIONS(1922), - [anon_sym_LT_AMP] = ACTIONS(1922), - [anon_sym_GT_AMP] = ACTIONS(1922), - [anon_sym_LT_LT] = ACTIONS(1924), - [anon_sym_LT_LT_DASH] = ACTIONS(1922), - [anon_sym_LT_LT_LT] = ACTIONS(1922), - [anon_sym_BQUOTE] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), - }, - [2571] = { + [2396] = { + [aux_sym_concatenation_repeat1] = STATE(2545), + [sym__simple_heredoc_body] = ACTIONS(649), + [sym__heredoc_body_beginning] = ACTIONS(649), + [sym_file_descriptor] = ACTIONS(649), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_AMP_GT] = ACTIONS(653), + [anon_sym_AMP_GT_GT] = ACTIONS(653), + [anon_sym_LT_AMP] = ACTIONS(653), + [anon_sym_GT_AMP] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_LT] = ACTIONS(653), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6352), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), }, - [2572] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6314), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2397] = { + [aux_sym_concatenation_repeat1] = STATE(2545), + [sym__simple_heredoc_body] = ACTIONS(667), + [sym__heredoc_body_beginning] = ACTIONS(667), + [sym_file_descriptor] = ACTIONS(667), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), }, - [2573] = { - [sym_file_descriptor] = ACTIONS(2066), - [sym__concat] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2066), - [anon_sym_LT_AMP] = ACTIONS(2066), - [anon_sym_GT_AMP] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_LT_LT_DASH] = ACTIONS(2066), - [anon_sym_LT_LT_LT] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [sym_comment] = ACTIONS(53), - }, - [2574] = { - [sym_file_descriptor] = ACTIONS(2132), - [sym__concat] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_PIPE_AMP] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2134), - [anon_sym_GT_GT] = ACTIONS(2132), - [anon_sym_AMP_GT] = ACTIONS(2134), - [anon_sym_AMP_GT_GT] = ACTIONS(2132), - [anon_sym_LT_AMP] = ACTIONS(2132), - [anon_sym_GT_AMP] = ACTIONS(2132), - [anon_sym_LT_LT] = ACTIONS(2134), - [anon_sym_LT_LT_DASH] = ACTIONS(2132), - [anon_sym_LT_LT_LT] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [sym_comment] = ACTIONS(53), - }, - [2575] = { - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - }, - [2576] = { - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - }, - [2577] = { - [sym__concat] = ACTIONS(5210), - [sym_variable_name] = ACTIONS(5210), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_PIPE_AMP] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [sym__special_characters] = ACTIONS(5210), - [anon_sym_DQUOTE] = ACTIONS(5210), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), - [anon_sym_BQUOTE] = ACTIONS(5210), - [anon_sym_LT_LPAREN] = ACTIONS(5210), - [anon_sym_GT_LPAREN] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), - [sym_word] = ACTIONS(5212), - }, - [2578] = { - [sym__concat] = ACTIONS(5214), - [sym_variable_name] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_PIPE_AMP] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [sym__special_characters] = ACTIONS(5214), - [anon_sym_DQUOTE] = ACTIONS(5214), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), - [anon_sym_BQUOTE] = ACTIONS(5214), - [anon_sym_LT_LPAREN] = ACTIONS(5214), - [anon_sym_GT_LPAREN] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), - [sym_word] = ACTIONS(5216), - }, - [2579] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6354), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2398] = { + [aux_sym_concatenation_repeat1] = STATE(2545), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1926), + [anon_sym_PIPE_AMP] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_PIPE_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1926), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1926), + [anon_sym_LT_AMP] = ACTIONS(1926), + [anon_sym_GT_AMP] = ACTIONS(1926), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1926), + [anon_sym_LT_LT_LT] = ACTIONS(1926), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, - [2580] = { - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - }, - [2581] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6356), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2399] = { + [aux_sym_concatenation_repeat1] = STATE(2545), + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), }, - [2582] = { - [sym__concat] = ACTIONS(5226), - [sym_variable_name] = ACTIONS(5226), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5226), - [anon_sym_PIPE_AMP] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_PIPE_PIPE] = ACTIONS(5226), - [sym__special_characters] = ACTIONS(5226), - [anon_sym_DQUOTE] = ACTIONS(5226), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), - [anon_sym_BQUOTE] = ACTIONS(5226), - [anon_sym_LT_LPAREN] = ACTIONS(5226), - [anon_sym_GT_LPAREN] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), - [sym_word] = ACTIONS(5228), - }, - [2583] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6358), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2584] = { - [sym__concat] = ACTIONS(5232), - [sym_variable_name] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_PIPE_AMP] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [sym__special_characters] = ACTIONS(5232), - [anon_sym_DQUOTE] = ACTIONS(5232), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), - [anon_sym_BQUOTE] = ACTIONS(5232), - [anon_sym_LT_LPAREN] = ACTIONS(5232), - [anon_sym_GT_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), - [sym_word] = ACTIONS(5234), - }, - [2585] = { - [sym__concat] = ACTIONS(5236), - [sym_variable_name] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_PIPE_AMP] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [sym__special_characters] = ACTIONS(5236), - [anon_sym_DQUOTE] = ACTIONS(5236), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), - [anon_sym_BQUOTE] = ACTIONS(5236), - [anon_sym_LT_LPAREN] = ACTIONS(5236), - [anon_sym_GT_LPAREN] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), - [sym_word] = ACTIONS(5238), - }, - [2586] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - }, - [2587] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - }, - [2588] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_PIPE_AMP] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [sym__special_characters] = ACTIONS(5210), - [anon_sym_DQUOTE] = ACTIONS(5210), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), - [anon_sym_BQUOTE] = ACTIONS(5210), - [anon_sym_LT_LPAREN] = ACTIONS(5210), - [anon_sym_GT_LPAREN] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), - [sym_word] = ACTIONS(5212), - }, - [2589] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_PIPE_AMP] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [sym__special_characters] = ACTIONS(5214), - [anon_sym_DQUOTE] = ACTIONS(5214), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), - [anon_sym_BQUOTE] = ACTIONS(5214), - [anon_sym_LT_LPAREN] = ACTIONS(5214), - [anon_sym_GT_LPAREN] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), - [sym_word] = ACTIONS(5216), - }, - [2590] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6360), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2591] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - }, - [2592] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6362), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2593] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5226), - [anon_sym_PIPE_AMP] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_PIPE_PIPE] = ACTIONS(5226), - [sym__special_characters] = ACTIONS(5226), - [anon_sym_DQUOTE] = ACTIONS(5226), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), - [anon_sym_BQUOTE] = ACTIONS(5226), - [anon_sym_LT_LPAREN] = ACTIONS(5226), - [anon_sym_GT_LPAREN] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), - [sym_word] = ACTIONS(5228), - }, - [2594] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6364), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2595] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_PIPE_AMP] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [sym__special_characters] = ACTIONS(5232), - [anon_sym_DQUOTE] = ACTIONS(5232), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), - [anon_sym_BQUOTE] = ACTIONS(5232), - [anon_sym_LT_LPAREN] = ACTIONS(5232), - [anon_sym_GT_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), - [sym_word] = ACTIONS(5234), - }, - [2596] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_PIPE_AMP] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [sym__special_characters] = ACTIONS(5236), - [anon_sym_DQUOTE] = ACTIONS(5236), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), - [anon_sym_BQUOTE] = ACTIONS(5236), - [anon_sym_LT_LPAREN] = ACTIONS(5236), - [anon_sym_GT_LPAREN] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), - [sym_word] = ACTIONS(5238), - }, - [2597] = { - [sym__simple_heredoc_body] = ACTIONS(5879), - [sym__heredoc_body_beginning] = ACTIONS(5879), - [sym_file_descriptor] = ACTIONS(5879), - [sym__concat] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5879), - [anon_sym_PIPE_AMP] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [anon_sym_EQ_TILDE] = ACTIONS(5881), - [anon_sym_EQ_EQ] = ACTIONS(5881), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_GT_GT] = ACTIONS(5879), - [anon_sym_AMP_GT] = ACTIONS(5881), - [anon_sym_AMP_GT_GT] = ACTIONS(5879), - [anon_sym_LT_AMP] = ACTIONS(5879), - [anon_sym_GT_AMP] = ACTIONS(5879), - [anon_sym_LT_LT] = ACTIONS(5881), - [anon_sym_LT_LT_DASH] = ACTIONS(5879), - [anon_sym_LT_LT_LT] = ACTIONS(5879), - [sym__special_characters] = ACTIONS(5879), - [anon_sym_DQUOTE] = ACTIONS(5879), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), - [anon_sym_BQUOTE] = ACTIONS(5879), - [anon_sym_LT_LPAREN] = ACTIONS(5879), - [anon_sym_GT_LPAREN] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5881), - }, - [2598] = { - [sym__simple_heredoc_body] = ACTIONS(5883), - [sym__heredoc_body_beginning] = ACTIONS(5883), - [sym_file_descriptor] = ACTIONS(5883), - [sym__concat] = ACTIONS(5883), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5883), - [anon_sym_PIPE_AMP] = ACTIONS(5883), - [anon_sym_AMP_AMP] = ACTIONS(5883), - [anon_sym_PIPE_PIPE] = ACTIONS(5883), - [anon_sym_EQ_TILDE] = ACTIONS(5885), - [anon_sym_EQ_EQ] = ACTIONS(5885), - [anon_sym_LT] = ACTIONS(5885), - [anon_sym_GT] = ACTIONS(5885), - [anon_sym_GT_GT] = ACTIONS(5883), - [anon_sym_AMP_GT] = ACTIONS(5885), - [anon_sym_AMP_GT_GT] = ACTIONS(5883), - [anon_sym_LT_AMP] = ACTIONS(5883), - [anon_sym_GT_AMP] = ACTIONS(5883), - [anon_sym_LT_LT] = ACTIONS(5885), - [anon_sym_LT_LT_DASH] = ACTIONS(5883), + [2400] = { + [sym_file_redirect] = STATE(2400), + [sym_heredoc_redirect] = STATE(2400), + [sym_herestring_redirect] = STATE(2400), + [aux_sym_while_statement_repeat1] = STATE(2400), + [sym__simple_heredoc_body] = ACTIONS(1936), + [sym__heredoc_body_beginning] = ACTIONS(1936), + [sym_file_descriptor] = ACTIONS(5877), + [anon_sym_esac] = ACTIONS(1941), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_SEMI_SEMI] = ACTIONS(1941), + [anon_sym_PIPE_AMP] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(5880), + [anon_sym_GT] = ACTIONS(5880), + [anon_sym_GT_GT] = ACTIONS(5880), + [anon_sym_AMP_GT] = ACTIONS(5880), + [anon_sym_AMP_GT_GT] = ACTIONS(5880), + [anon_sym_LT_AMP] = ACTIONS(5880), + [anon_sym_GT_AMP] = ACTIONS(5880), + [anon_sym_LT_LT] = ACTIONS(1946), + [anon_sym_LT_LT_DASH] = ACTIONS(1946), [anon_sym_LT_LT_LT] = ACTIONS(5883), - [sym__special_characters] = ACTIONS(5883), - [anon_sym_DQUOTE] = ACTIONS(5883), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), - [anon_sym_BQUOTE] = ACTIONS(5883), - [anon_sym_LT_LPAREN] = ACTIONS(5883), - [anon_sym_GT_LPAREN] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5885), - }, - [2599] = { - [sym__simple_heredoc_body] = ACTIONS(5887), - [sym__heredoc_body_beginning] = ACTIONS(5887), - [sym_file_descriptor] = ACTIONS(5887), - [sym__concat] = ACTIONS(5887), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5887), - [anon_sym_PIPE_AMP] = ACTIONS(5887), - [anon_sym_AMP_AMP] = ACTIONS(5887), - [anon_sym_PIPE_PIPE] = ACTIONS(5887), - [anon_sym_EQ_TILDE] = ACTIONS(5889), - [anon_sym_EQ_EQ] = ACTIONS(5889), - [anon_sym_LT] = ACTIONS(5889), - [anon_sym_GT] = ACTIONS(5889), - [anon_sym_GT_GT] = ACTIONS(5887), - [anon_sym_AMP_GT] = ACTIONS(5889), - [anon_sym_AMP_GT_GT] = ACTIONS(5887), - [anon_sym_LT_AMP] = ACTIONS(5887), - [anon_sym_GT_AMP] = ACTIONS(5887), - [anon_sym_LT_LT] = ACTIONS(5889), - [anon_sym_LT_LT_DASH] = ACTIONS(5887), - [anon_sym_LT_LT_LT] = ACTIONS(5887), - [sym__special_characters] = ACTIONS(5887), - [anon_sym_DQUOTE] = ACTIONS(5887), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), - [anon_sym_BQUOTE] = ACTIONS(5887), - [anon_sym_LT_LPAREN] = ACTIONS(5887), - [anon_sym_GT_LPAREN] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5889), - }, - [2600] = { - [aux_sym_concatenation_repeat1] = STATE(2600), - [sym__concat] = ACTIONS(4422), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [2601] = { - [aux_sym_concatenation_repeat1] = STATE(2601), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1754), - [anon_sym_LT_AMP] = ACTIONS(1754), - [anon_sym_GT_AMP] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1754), - [anon_sym_LT_LT_LT] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [sym_comment] = ACTIONS(53), - }, - [2602] = { - [sym__heredoc_body_middle] = ACTIONS(5202), - [sym__heredoc_body_end] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - }, - [2603] = { - [sym__heredoc_body_middle] = ACTIONS(5206), - [sym__heredoc_body_end] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - }, - [2604] = { - [sym__heredoc_body_middle] = ACTIONS(5210), - [sym__heredoc_body_end] = ACTIONS(5210), - [anon_sym_DOLLAR] = ACTIONS(5212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - }, - [2605] = { - [sym__heredoc_body_middle] = ACTIONS(5214), - [sym__heredoc_body_end] = ACTIONS(5214), - [anon_sym_DOLLAR] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - }, - [2606] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6366), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1941), }, - [2607] = { - [sym__heredoc_body_middle] = ACTIONS(5220), - [sym__heredoc_body_end] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - }, - [2608] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6368), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2401] = { + [sym_file_redirect] = STATE(2400), + [sym_heredoc_redirect] = STATE(2400), + [sym_heredoc_body] = STATE(924), + [sym_herestring_redirect] = STATE(2400), + [aux_sym_while_statement_repeat1] = STATE(2400), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(5086), + [anon_sym_esac] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5090), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(5092), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), }, - [2609] = { - [sym__heredoc_body_middle] = ACTIONS(5226), - [sym__heredoc_body_end] = ACTIONS(5226), - [anon_sym_DOLLAR] = ACTIONS(5228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - }, - [2610] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6370), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2611] = { - [sym__heredoc_body_middle] = ACTIONS(5232), - [sym__heredoc_body_end] = ACTIONS(5232), - [anon_sym_DOLLAR] = ACTIONS(5234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - }, - [2612] = { - [sym__heredoc_body_middle] = ACTIONS(5236), - [sym__heredoc_body_end] = ACTIONS(5236), - [anon_sym_DOLLAR] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - }, - [2613] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5202), - }, - [2614] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_RPAREN] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5206), - }, - [2615] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_RPAREN] = ACTIONS(5210), - [sym__special_characters] = ACTIONS(5210), - [anon_sym_DQUOTE] = ACTIONS(5210), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5210), - [anon_sym_BQUOTE] = ACTIONS(5210), - [anon_sym_LT_LPAREN] = ACTIONS(5210), - [anon_sym_GT_LPAREN] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5210), - }, - [2616] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_RPAREN] = ACTIONS(5214), - [sym__special_characters] = ACTIONS(5214), - [anon_sym_DQUOTE] = ACTIONS(5214), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5214), - [anon_sym_BQUOTE] = ACTIONS(5214), - [anon_sym_LT_LPAREN] = ACTIONS(5214), - [anon_sym_GT_LPAREN] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5214), - }, - [2617] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6372), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2618] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_RPAREN] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5220), - [anon_sym_DQUOTE] = ACTIONS(5220), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [anon_sym_LT_LPAREN] = ACTIONS(5220), - [anon_sym_GT_LPAREN] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5220), - }, - [2619] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6374), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2620] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_RPAREN] = ACTIONS(5226), - [sym__special_characters] = ACTIONS(5226), - [anon_sym_DQUOTE] = ACTIONS(5226), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5226), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5226), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5226), - [anon_sym_BQUOTE] = ACTIONS(5226), - [anon_sym_LT_LPAREN] = ACTIONS(5226), - [anon_sym_GT_LPAREN] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5226), - }, - [2621] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6376), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2622] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_RPAREN] = ACTIONS(5232), - [sym__special_characters] = ACTIONS(5232), - [anon_sym_DQUOTE] = ACTIONS(5232), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5232), - [anon_sym_BQUOTE] = ACTIONS(5232), - [anon_sym_LT_LPAREN] = ACTIONS(5232), - [anon_sym_GT_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5232), - }, - [2623] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_RPAREN] = ACTIONS(5236), - [sym__special_characters] = ACTIONS(5236), - [anon_sym_DQUOTE] = ACTIONS(5236), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5236), - [anon_sym_BQUOTE] = ACTIONS(5236), - [anon_sym_LT_LPAREN] = ACTIONS(5236), - [anon_sym_GT_LPAREN] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5236), - }, - [2624] = { - [sym_file_descriptor] = ACTIONS(5879), - [sym__concat] = ACTIONS(5879), - [sym_variable_name] = ACTIONS(5879), - [anon_sym_esac] = ACTIONS(5881), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5881), - [anon_sym_SEMI_SEMI] = ACTIONS(5881), - [anon_sym_PIPE_AMP] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5881), - [anon_sym_PIPE_PIPE] = ACTIONS(5881), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_GT_GT] = ACTIONS(5881), - [anon_sym_AMP_GT] = ACTIONS(5881), - [anon_sym_AMP_GT_GT] = ACTIONS(5881), - [anon_sym_LT_AMP] = ACTIONS(5881), - [anon_sym_GT_AMP] = ACTIONS(5881), - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5881), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), - [anon_sym_BQUOTE] = ACTIONS(5881), - [anon_sym_LT_LPAREN] = ACTIONS(5881), - [anon_sym_GT_LPAREN] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5881), - [anon_sym_SEMI] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5881), - }, - [2625] = { - [sym_file_descriptor] = ACTIONS(5883), - [sym__concat] = ACTIONS(5883), - [sym_variable_name] = ACTIONS(5883), - [anon_sym_esac] = ACTIONS(5885), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5885), - [anon_sym_SEMI_SEMI] = ACTIONS(5885), - [anon_sym_PIPE_AMP] = ACTIONS(5885), - [anon_sym_AMP_AMP] = ACTIONS(5885), - [anon_sym_PIPE_PIPE] = ACTIONS(5885), - [anon_sym_LT] = ACTIONS(5885), - [anon_sym_GT] = ACTIONS(5885), - [anon_sym_GT_GT] = ACTIONS(5885), - [anon_sym_AMP_GT] = ACTIONS(5885), - [anon_sym_AMP_GT_GT] = ACTIONS(5885), - [anon_sym_LT_AMP] = ACTIONS(5885), - [anon_sym_GT_AMP] = ACTIONS(5885), - [sym__special_characters] = ACTIONS(5885), - [anon_sym_DQUOTE] = ACTIONS(5885), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), - [anon_sym_BQUOTE] = ACTIONS(5885), - [anon_sym_LT_LPAREN] = ACTIONS(5885), - [anon_sym_GT_LPAREN] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5885), - [anon_sym_SEMI] = ACTIONS(5885), - [anon_sym_LF] = ACTIONS(5883), - [anon_sym_AMP] = ACTIONS(5885), - }, - [2626] = { - [sym_file_descriptor] = ACTIONS(5887), - [sym__concat] = ACTIONS(5887), - [sym_variable_name] = ACTIONS(5887), - [anon_sym_esac] = ACTIONS(5889), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5889), - [anon_sym_SEMI_SEMI] = ACTIONS(5889), - [anon_sym_PIPE_AMP] = ACTIONS(5889), - [anon_sym_AMP_AMP] = ACTIONS(5889), - [anon_sym_PIPE_PIPE] = ACTIONS(5889), - [anon_sym_LT] = ACTIONS(5889), - [anon_sym_GT] = ACTIONS(5889), - [anon_sym_GT_GT] = ACTIONS(5889), - [anon_sym_AMP_GT] = ACTIONS(5889), - [anon_sym_AMP_GT_GT] = ACTIONS(5889), - [anon_sym_LT_AMP] = ACTIONS(5889), - [anon_sym_GT_AMP] = ACTIONS(5889), + [2402] = { + [sym_concatenation] = STATE(2402), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_command_repeat2] = STATE(2402), + [sym__simple_heredoc_body] = ACTIONS(1916), + [sym__heredoc_body_beginning] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(1916), + [anon_sym_esac] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_SEMI_SEMI] = ACTIONS(1918), + [anon_sym_PIPE_AMP] = ACTIONS(1918), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_EQ_TILDE] = ACTIONS(5886), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1918), + [anon_sym_AMP_GT] = ACTIONS(1918), + [anon_sym_AMP_GT_GT] = ACTIONS(1918), + [anon_sym_LT_AMP] = ACTIONS(1918), + [anon_sym_GT_AMP] = ACTIONS(1918), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_LT_LT_DASH] = ACTIONS(1918), + [anon_sym_LT_LT_LT] = ACTIONS(1918), [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), - [anon_sym_BQUOTE] = ACTIONS(5889), - [anon_sym_LT_LPAREN] = ACTIONS(5889), - [anon_sym_GT_LPAREN] = ACTIONS(5889), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(5892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LT_LPAREN] = ACTIONS(1976), + [anon_sym_GT_LPAREN] = ACTIONS(1976), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5889), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LF] = ACTIONS(5887), - [anon_sym_AMP] = ACTIONS(5889), + [sym_word] = ACTIONS(5892), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1918), }, - [2627] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4164), - [anon_sym_PIPE_PIPE] = ACTIONS(4164), - [anon_sym_EQ_TILDE] = ACTIONS(4164), - [anon_sym_EQ_EQ] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4164), - [anon_sym_GT] = ACTIONS(4164), - [anon_sym_BANG_EQ] = ACTIONS(4164), + [2403] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(5895), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(5897), + [anon_sym_DQUOTE] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5897), + [sym_raw_string] = ACTIONS(5899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5899), + [anon_sym_BQUOTE] = ACTIONS(5899), + [anon_sym_LT_LPAREN] = ACTIONS(5899), + [anon_sym_GT_LPAREN] = ACTIONS(5899), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4164), + [sym_word] = ACTIONS(5897), }, - [2628] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_EQ_TILDE] = ACTIONS(4172), - [anon_sym_EQ_EQ] = ACTIONS(4172), - [anon_sym_EQ] = ACTIONS(4174), - [anon_sym_LT] = ACTIONS(4172), - [anon_sym_GT] = ACTIONS(4172), - [anon_sym_BANG_EQ] = ACTIONS(4172), + [2404] = { + [sym_file_redirect] = STATE(2546), + [sym_heredoc_redirect] = STATE(2546), + [sym_heredoc_body] = STATE(924), + [sym_herestring_redirect] = STATE(2546), + [sym_concatenation] = STATE(2402), + [sym_string] = STATE(2191), + [sym_simple_expansion] = STATE(2191), + [sym_string_expansion] = STATE(2191), + [sym_expansion] = STATE(2191), + [sym_command_substitution] = STATE(2191), + [sym_process_substitution] = STATE(2191), + [aux_sym_while_statement_repeat1] = STATE(2546), + [aux_sym_command_repeat2] = STATE(2402), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(5086), + [anon_sym_esac] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_SEMI_SEMI] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(1932), + [anon_sym_AMP_AMP] = ACTIONS(1932), + [anon_sym_PIPE_PIPE] = ACTIONS(1932), + [anon_sym_EQ_TILDE] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5090), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(5092), + [sym__special_characters] = ACTIONS(5094), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(317), + [anon_sym_LT_LPAREN] = ACTIONS(319), + [anon_sym_GT_LPAREN] = ACTIONS(319), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), + }, + [2405] = { + [anon_sym_esac] = ACTIONS(5895), + [sym__special_characters] = ACTIONS(5899), + [anon_sym_DQUOTE] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5897), + [sym_raw_string] = ACTIONS(5899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5899), + [anon_sym_BQUOTE] = ACTIONS(5899), + [anon_sym_LT_LPAREN] = ACTIONS(5899), + [anon_sym_GT_LPAREN] = ACTIONS(5899), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4172), + [sym_word] = ACTIONS(5897), }, - [2629] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [anon_sym_EQ_TILDE] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4259), - [anon_sym_EQ] = ACTIONS(4261), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_BANG_EQ] = ACTIONS(4259), + [2406] = { + [anon_sym_esac] = ACTIONS(5895), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5901), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2407] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_esac] = ACTIONS(5895), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5901), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2408] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(5903), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(5905), + [anon_sym_DQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR] = ACTIONS(5905), + [sym_raw_string] = ACTIONS(5907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5907), + [anon_sym_BQUOTE] = ACTIONS(5907), + [anon_sym_LT_LPAREN] = ACTIONS(5907), + [anon_sym_GT_LPAREN] = ACTIONS(5907), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4259), + [sym_word] = ACTIONS(5905), }, - [2630] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6378), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2631] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6380), + [2409] = { + [anon_sym_esac] = ACTIONS(5903), + [sym__special_characters] = ACTIONS(5907), + [anon_sym_DQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR] = ACTIONS(5905), + [sym_raw_string] = ACTIONS(5907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5907), + [anon_sym_BQUOTE] = ACTIONS(5907), + [anon_sym_LT_LPAREN] = ACTIONS(5907), + [anon_sym_GT_LPAREN] = ACTIONS(5907), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5905), }, - [2632] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6382), + [2410] = { + [anon_sym_esac] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5909), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2411] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_esac] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5909), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2412] = { + [sym__special_characters] = ACTIONS(5034), + [anon_sym_DQUOTE] = ACTIONS(5034), + [anon_sym_DOLLAR] = ACTIONS(5036), + [sym_raw_string] = ACTIONS(5034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5034), + [anon_sym_BQUOTE] = ACTIONS(5034), + [anon_sym_LT_LPAREN] = ACTIONS(5034), + [anon_sym_GT_LPAREN] = ACTIONS(5034), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5034), }, - [2633] = { - [anon_sym_RBRACE] = ACTIONS(6382), - [sym_comment] = ACTIONS(53), - }, - [2634] = { - [sym_concatenation] = STATE(2797), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2797), - [anon_sym_RBRACE] = ACTIONS(6384), - [anon_sym_EQ] = ACTIONS(6386), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6388), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6386), - [anon_sym_COLON_QMARK] = ACTIONS(6386), - [anon_sym_COLON_DASH] = ACTIONS(6386), - [anon_sym_PERCENT] = ACTIONS(6386), - [anon_sym_DASH] = ACTIONS(6386), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2413] = { + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(5911), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2635] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_EQ_TILDE] = ACTIONS(4275), - [anon_sym_EQ_EQ] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG_EQ] = ACTIONS(4275), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4275), - }, - [2636] = { - [sym_concatenation] = STATE(2799), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2799), - [anon_sym_RBRACE] = ACTIONS(6390), - [anon_sym_EQ] = ACTIONS(6392), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6392), - [anon_sym_COLON_QMARK] = ACTIONS(6392), - [anon_sym_COLON_DASH] = ACTIONS(6392), - [anon_sym_PERCENT] = ACTIONS(6392), - [anon_sym_DASH] = ACTIONS(6392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2414] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(5911), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2637] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4285), - [anon_sym_AMP_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4285), - [anon_sym_EQ_TILDE] = ACTIONS(4285), - [anon_sym_EQ_EQ] = ACTIONS(4285), - [anon_sym_EQ] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4285), - [anon_sym_GT] = ACTIONS(4285), - [anon_sym_BANG_EQ] = ACTIONS(4285), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4285), - }, - [2638] = { - [sym_concatenation] = STATE(2801), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2801), - [anon_sym_RBRACE] = ACTIONS(6396), - [anon_sym_EQ] = ACTIONS(6398), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6398), - [anon_sym_COLON_QMARK] = ACTIONS(6398), - [anon_sym_COLON_DASH] = ACTIONS(6398), - [anon_sym_PERCENT] = ACTIONS(6398), - [anon_sym_DASH] = ACTIONS(6398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2639] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_EQ_TILDE] = ACTIONS(4295), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4295), - [anon_sym_GT] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4295), - }, - [2640] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6402), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2641] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_EQ_TILDE] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4301), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4301), - }, - [2642] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6404), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2643] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_esac] = ACTIONS(5881), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_SEMI_SEMI] = ACTIONS(5881), - [anon_sym_PIPE_AMP] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5881), - [anon_sym_PIPE_PIPE] = ACTIONS(5881), - [anon_sym_EQ_TILDE] = ACTIONS(5881), - [anon_sym_EQ_EQ] = ACTIONS(5881), - [anon_sym_EQ] = ACTIONS(5881), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_BANG_EQ] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5881), - [anon_sym_SEMI] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5881), - }, - [2644] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_esac] = ACTIONS(5885), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_SEMI_SEMI] = ACTIONS(5885), - [anon_sym_PIPE_AMP] = ACTIONS(5885), - [anon_sym_AMP_AMP] = ACTIONS(5885), - [anon_sym_PIPE_PIPE] = ACTIONS(5885), - [anon_sym_EQ_TILDE] = ACTIONS(5885), - [anon_sym_EQ_EQ] = ACTIONS(5885), - [anon_sym_EQ] = ACTIONS(5885), - [anon_sym_LT] = ACTIONS(5885), - [anon_sym_GT] = ACTIONS(5885), - [anon_sym_BANG_EQ] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5885), - [anon_sym_SEMI] = ACTIONS(5885), - [anon_sym_LF] = ACTIONS(5883), - [anon_sym_AMP] = ACTIONS(5885), - }, - [2645] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_esac] = ACTIONS(5889), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_SEMI_SEMI] = ACTIONS(5889), - [anon_sym_PIPE_AMP] = ACTIONS(5889), - [anon_sym_AMP_AMP] = ACTIONS(5889), - [anon_sym_PIPE_PIPE] = ACTIONS(5889), - [anon_sym_EQ_TILDE] = ACTIONS(5889), - [anon_sym_EQ_EQ] = ACTIONS(5889), - [anon_sym_EQ] = ACTIONS(5889), - [anon_sym_LT] = ACTIONS(5889), - [anon_sym_GT] = ACTIONS(5889), - [anon_sym_BANG_EQ] = ACTIONS(5889), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5889), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LF] = ACTIONS(5887), - [anon_sym_AMP] = ACTIONS(5889), - }, - [2646] = { - [anon_sym_esac] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6406), - [anon_sym_RPAREN] = ACTIONS(6406), - [anon_sym_SEMI_SEMI] = ACTIONS(6406), - [anon_sym_PIPE_AMP] = ACTIONS(6406), - [anon_sym_AMP_AMP] = ACTIONS(6406), - [anon_sym_PIPE_PIPE] = ACTIONS(6406), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(6406), - [anon_sym_LF] = ACTIONS(6408), - [anon_sym_AMP] = ACTIONS(6406), - }, - [2647] = { - [aux_sym_concatenation_repeat1] = STATE(2804), - [sym_file_descriptor] = ACTIONS(1173), - [sym__concat] = ACTIONS(1175), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_esac] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_SEMI_SEMI] = ACTIONS(1177), - [anon_sym_PIPE_AMP] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_AMP_GT] = ACTIONS(1177), - [anon_sym_AMP_GT_GT] = ACTIONS(1177), - [anon_sym_LT_AMP] = ACTIONS(1177), - [anon_sym_GT_AMP] = ACTIONS(1177), - [sym__special_characters] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1177), - [anon_sym_LT_LPAREN] = ACTIONS(1177), - [anon_sym_GT_LPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1177), - }, - [2648] = { - [aux_sym_concatenation_repeat1] = STATE(2804), - [sym_file_descriptor] = ACTIONS(1151), - [sym__concat] = ACTIONS(1175), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_esac] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_SEMI_SEMI] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_AMP_GT] = ACTIONS(1153), - [anon_sym_AMP_GT_GT] = ACTIONS(1153), - [anon_sym_LT_AMP] = ACTIONS(1153), - [anon_sym_GT_AMP] = ACTIONS(1153), - [sym__special_characters] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_LT_LPAREN] = ACTIONS(1153), - [anon_sym_GT_LPAREN] = ACTIONS(1153), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - }, - [2649] = { - [sym_file_redirect] = STATE(2805), - [sym_heredoc_redirect] = STATE(2805), - [sym_heredoc_body] = STATE(646), - [sym_herestring_redirect] = STATE(2805), - [aux_sym_while_statement_repeat1] = STATE(2805), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5679), - [anon_sym_esac] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_SEMI_SEMI] = ACTIONS(1263), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_AMP_GT] = ACTIONS(5683), - [anon_sym_AMP_GT_GT] = ACTIONS(5683), - [anon_sym_LT_AMP] = ACTIONS(5683), - [anon_sym_GT_AMP] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(5685), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1263), - }, - [2650] = { - [anon_sym_RPAREN] = ACTIONS(6410), - [sym_comment] = ACTIONS(53), - }, - [2651] = { - [sym_file_redirect] = STATE(685), - [sym_file_descriptor] = ACTIONS(6412), - [anon_sym_esac] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(6414), - [anon_sym_GT] = ACTIONS(6414), - [anon_sym_GT_GT] = ACTIONS(6414), - [anon_sym_AMP_GT] = ACTIONS(6414), - [anon_sym_AMP_GT_GT] = ACTIONS(6414), - [anon_sym_LT_AMP] = ACTIONS(6414), - [anon_sym_GT_AMP] = ACTIONS(6414), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1335), - }, - [2652] = { - [sym_file_redirect] = STATE(2812), - [sym_heredoc_redirect] = STATE(2812), - [sym_herestring_redirect] = STATE(2812), - [aux_sym_while_statement_repeat1] = STATE(2812), - [sym_file_descriptor] = ACTIONS(6416), - [anon_sym_esac] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_SEMI_SEMI] = ACTIONS(1445), - [anon_sym_PIPE_AMP] = ACTIONS(1445), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(6418), - [anon_sym_GT] = ACTIONS(6418), - [anon_sym_GT_GT] = ACTIONS(6418), - [anon_sym_AMP_GT] = ACTIONS(6418), - [anon_sym_AMP_GT_GT] = ACTIONS(6418), - [anon_sym_LT_AMP] = ACTIONS(6418), - [anon_sym_GT_AMP] = ACTIONS(6418), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_LT_LT_DASH] = ACTIONS(1449), - [anon_sym_LT_LT_LT] = ACTIONS(6420), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_LF] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1445), - }, - [2653] = { - [sym_concatenation] = STATE(2813), - [sym_string] = STATE(2816), - [sym_array] = STATE(2813), - [sym_simple_expansion] = STATE(2816), - [sym_string_expansion] = STATE(2816), - [sym_expansion] = STATE(2816), - [sym_command_substitution] = STATE(2816), - [sym_process_substitution] = STATE(2816), - [sym__empty_value] = ACTIONS(6422), - [anon_sym_LPAREN] = ACTIONS(6424), - [sym__special_characters] = ACTIONS(6426), - [anon_sym_DQUOTE] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(5639), - [sym_raw_string] = ACTIONS(6428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6432), - [anon_sym_BQUOTE] = ACTIONS(6434), - [anon_sym_LT_LPAREN] = ACTIONS(6436), - [anon_sym_GT_LPAREN] = ACTIONS(6436), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6428), - }, - [2654] = { - [sym_string] = STATE(2817), - [sym_simple_expansion] = STATE(2817), - [sym_string_expansion] = STATE(2817), - [sym_expansion] = STATE(2817), - [sym_command_substitution] = STATE(2817), - [sym_process_substitution] = STATE(2817), - [sym__special_characters] = ACTIONS(6438), - [anon_sym_DQUOTE] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(5639), - [sym_raw_string] = ACTIONS(6438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6432), - [anon_sym_BQUOTE] = ACTIONS(6434), - [anon_sym_LT_LPAREN] = ACTIONS(6436), - [anon_sym_GT_LPAREN] = ACTIONS(6436), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6438), - }, - [2655] = { - [aux_sym_concatenation_repeat1] = STATE(2818), - [sym__concat] = ACTIONS(6125), - [sym_variable_name] = ACTIONS(731), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2656] = { - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [2657] = { - [anon_sym_DQUOTE] = ACTIONS(6440), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [2658] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(6440), - [anon_sym_DOLLAR] = ACTIONS(6442), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [2659] = { - [sym__concat] = ACTIONS(767), - [sym_variable_name] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), - [sym_word] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), - }, - [2660] = { - [sym__concat] = ACTIONS(771), - [sym_variable_name] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [sym__special_characters] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(773), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), - [sym_word] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LF] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - }, - [2661] = { - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(775), - [anon_sym_esac] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [anon_sym_PIPE_AMP] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [sym__special_characters] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(777), - [anon_sym_GT_LPAREN] = ACTIONS(777), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), - [sym_word] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - }, - [2662] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(6444), - [sym_comment] = ACTIONS(53), - }, - [2663] = { - [sym_concatenation] = STATE(2824), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2824), - [anon_sym_RBRACE] = ACTIONS(6446), - [anon_sym_EQ] = ACTIONS(6448), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6452), - [anon_sym_COLON] = ACTIONS(6448), - [anon_sym_COLON_QMARK] = ACTIONS(6448), - [anon_sym_COLON_DASH] = ACTIONS(6448), - [anon_sym_PERCENT] = ACTIONS(6448), - [anon_sym_DASH] = ACTIONS(6448), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2664] = { - [sym_subscript] = STATE(2828), - [sym_variable_name] = ACTIONS(6454), - [anon_sym_DOLLAR] = ACTIONS(6456), - [anon_sym_DASH] = ACTIONS(6456), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6458), - [anon_sym_STAR] = ACTIONS(6456), - [anon_sym_AT] = ACTIONS(6456), - [anon_sym_QMARK] = ACTIONS(6456), - [anon_sym_0] = ACTIONS(6460), - [anon_sym__] = ACTIONS(6460), - }, - [2665] = { - [sym_concatenation] = STATE(2831), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2831), - [anon_sym_RBRACE] = ACTIONS(6462), - [anon_sym_EQ] = ACTIONS(6464), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6468), - [anon_sym_COLON] = ACTIONS(6464), - [anon_sym_COLON_QMARK] = ACTIONS(6464), - [anon_sym_COLON_DASH] = ACTIONS(6464), - [anon_sym_PERCENT] = ACTIONS(6464), - [anon_sym_DASH] = ACTIONS(6464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2666] = { - [sym_concatenation] = STATE(2834), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2834), - [anon_sym_RBRACE] = ACTIONS(6470), - [anon_sym_EQ] = ACTIONS(6472), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6476), - [anon_sym_COLON] = ACTIONS(6472), - [anon_sym_COLON_QMARK] = ACTIONS(6472), - [anon_sym_COLON_DASH] = ACTIONS(6472), - [anon_sym_PERCENT] = ACTIONS(6472), - [anon_sym_DASH] = ACTIONS(6472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2667] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(6478), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [2668] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(6478), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [2669] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(6478), - [sym_comment] = ACTIONS(53), - }, - [2670] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(6478), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [2671] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(6480), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [2672] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(6480), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [2673] = { - [sym_variable_assignment] = STATE(2432), - [sym_subscript] = STATE(2433), - [sym_concatenation] = STATE(2432), - [sym_string] = STATE(2426), - [sym_simple_expansion] = STATE(2426), - [sym_string_expansion] = STATE(2426), - [sym_expansion] = STATE(2426), - [sym_command_substitution] = STATE(2426), - [sym_process_substitution] = STATE(2426), - [aux_sym_declaration_command_repeat1] = STATE(2673), - [sym_variable_name] = ACTIONS(6482), - [anon_sym_esac] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_SEMI_SEMI] = ACTIONS(1596), - [anon_sym_PIPE_AMP] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_PIPE_PIPE] = ACTIONS(1596), - [sym__special_characters] = ACTIONS(6485), - [anon_sym_DQUOTE] = ACTIONS(6488), - [anon_sym_DOLLAR] = ACTIONS(6491), - [sym_raw_string] = ACTIONS(6494), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6500), - [anon_sym_BQUOTE] = ACTIONS(6503), - [anon_sym_LT_LPAREN] = ACTIONS(6506), - [anon_sym_GT_LPAREN] = ACTIONS(6506), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6509), - [sym_word] = ACTIONS(6494), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_LF] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1596), - }, - [2674] = { - [sym_string] = STATE(2837), - [sym_simple_expansion] = STATE(2837), - [sym_string_expansion] = STATE(2837), - [sym_expansion] = STATE(2837), - [sym_command_substitution] = STATE(2837), - [sym_process_substitution] = STATE(2837), - [sym__special_characters] = ACTIONS(6512), - [anon_sym_DQUOTE] = ACTIONS(6157), - [anon_sym_DOLLAR] = ACTIONS(5657), - [sym_raw_string] = ACTIONS(6512), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6514), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6516), - [anon_sym_BQUOTE] = ACTIONS(6518), - [anon_sym_LT_LPAREN] = ACTIONS(6520), - [anon_sym_GT_LPAREN] = ACTIONS(6520), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6512), - }, - [2675] = { - [aux_sym_concatenation_repeat1] = STATE(2838), - [sym__concat] = ACTIONS(6151), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2676] = { - [sym__concat] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(737), - [sym_word] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - }, - [2677] = { - [anon_sym_DQUOTE] = ACTIONS(6522), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [2678] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(427), - [anon_sym_DQUOTE] = ACTIONS(6522), - [anon_sym_DOLLAR] = ACTIONS(6524), - [sym__string_content] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [sym_comment] = ACTIONS(179), - }, - [2679] = { - [sym__concat] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(769), - [sym_word] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), - }, - [2680] = { - [sym__concat] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [sym__special_characters] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(773), - [sym_raw_string] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(773), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), - [sym_word] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LF] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - }, - [2681] = { - [sym__concat] = ACTIONS(775), - [anon_sym_esac] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(777), - [anon_sym_PIPE_AMP] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [sym__special_characters] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), - [anon_sym_BQUOTE] = ACTIONS(777), - [anon_sym_LT_LPAREN] = ACTIONS(777), - [anon_sym_GT_LPAREN] = ACTIONS(777), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(777), - [sym_word] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - }, - [2682] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(6526), - [sym_comment] = ACTIONS(53), - }, - [2683] = { - [sym_concatenation] = STATE(2844), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2844), - [anon_sym_RBRACE] = ACTIONS(6528), - [anon_sym_EQ] = ACTIONS(6530), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6532), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6534), - [anon_sym_COLON] = ACTIONS(6530), - [anon_sym_COLON_QMARK] = ACTIONS(6530), - [anon_sym_COLON_DASH] = ACTIONS(6530), - [anon_sym_PERCENT] = ACTIONS(6530), - [anon_sym_DASH] = ACTIONS(6530), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2684] = { - [sym_subscript] = STATE(2848), - [sym_variable_name] = ACTIONS(6536), - [anon_sym_DOLLAR] = ACTIONS(6538), - [anon_sym_DASH] = ACTIONS(6538), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6540), - [anon_sym_STAR] = ACTIONS(6538), - [anon_sym_AT] = ACTIONS(6538), - [anon_sym_QMARK] = ACTIONS(6538), - [anon_sym_0] = ACTIONS(6542), - [anon_sym__] = ACTIONS(6542), - }, - [2685] = { - [sym_concatenation] = STATE(2851), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2851), - [anon_sym_RBRACE] = ACTIONS(6544), - [anon_sym_EQ] = ACTIONS(6546), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6550), - [anon_sym_COLON] = ACTIONS(6546), - [anon_sym_COLON_QMARK] = ACTIONS(6546), - [anon_sym_COLON_DASH] = ACTIONS(6546), - [anon_sym_PERCENT] = ACTIONS(6546), - [anon_sym_DASH] = ACTIONS(6546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2686] = { - [sym_concatenation] = STATE(2854), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2854), - [anon_sym_RBRACE] = ACTIONS(6552), - [anon_sym_EQ] = ACTIONS(6554), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6556), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6558), - [anon_sym_COLON] = ACTIONS(6554), - [anon_sym_COLON_QMARK] = ACTIONS(6554), - [anon_sym_COLON_DASH] = ACTIONS(6554), - [anon_sym_PERCENT] = ACTIONS(6554), - [anon_sym_DASH] = ACTIONS(6554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2687] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(6560), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [2688] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(6560), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [2689] = { - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(6560), - [sym_comment] = ACTIONS(53), - }, - [2690] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(6560), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [2691] = { - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(6562), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [sym_comment] = ACTIONS(53), - }, - [2692] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(6562), - [anon_sym_PIPE_AMP] = ACTIONS(917), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(371), - [anon_sym_GT_LPAREN] = ACTIONS(371), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - }, - [2693] = { - [sym_concatenation] = STATE(2693), - [sym_string] = STATE(2438), - [sym_simple_expansion] = STATE(2438), - [sym_string_expansion] = STATE(2438), - [sym_expansion] = STATE(2438), - [sym_command_substitution] = STATE(2438), - [sym_process_substitution] = STATE(2438), - [aux_sym_unset_command_repeat1] = STATE(2693), - [anon_sym_esac] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_SEMI_SEMI] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [sym__special_characters] = ACTIONS(6564), - [anon_sym_DQUOTE] = ACTIONS(6567), - [anon_sym_DOLLAR] = ACTIONS(6570), - [sym_raw_string] = ACTIONS(6573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6579), - [anon_sym_BQUOTE] = ACTIONS(6582), - [anon_sym_LT_LPAREN] = ACTIONS(6585), - [anon_sym_GT_LPAREN] = ACTIONS(6585), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6588), - [sym_word] = ACTIONS(6573), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_LF] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1679), - }, - [2694] = { - [aux_sym_concatenation_repeat1] = STATE(2694), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1758), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_EQ_TILDE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2695] = { - [sym_compound_statement] = STATE(2857), - [anon_sym_LBRACE] = ACTIONS(483), - [sym_comment] = ACTIONS(53), - }, - [2696] = { - [anon_sym_esac] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(2140), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LF] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2140), - }, - [2697] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_esac] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(2140), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LF] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2140), - }, - [2698] = { - [sym_concatenation] = STATE(1046), - [sym_string] = STATE(2859), - [sym_simple_expansion] = STATE(2859), - [sym_string_expansion] = STATE(2859), - [sym_expansion] = STATE(2859), - [sym_command_substitution] = STATE(2859), - [sym_process_substitution] = STATE(2859), - [sym__special_characters] = ACTIONS(6591), + [2415] = { + [sym__terminated_statement] = STATE(2553), + [sym_for_statement] = STATE(2551), + [sym_c_style_for_statement] = STATE(2551), + [sym_while_statement] = STATE(2551), + [sym_if_statement] = STATE(2551), + [sym_case_statement] = STATE(2551), + [sym_function_definition] = STATE(2551), + [sym_subshell] = STATE(2551), + [sym_pipeline] = STATE(2551), + [sym_list] = STATE(2551), + [sym_negated_command] = STATE(2551), + [sym_test_command] = STATE(2551), + [sym_declaration_command] = STATE(2551), + [sym_unset_command] = STATE(2551), + [sym_command] = STATE(2551), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2552), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2553), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(5913), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6593), + [sym_raw_string] = ACTIONS(43), [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), [anon_sym_BQUOTE] = ACTIONS(49), [anon_sym_LT_LPAREN] = ACTIONS(51), [anon_sym_GT_LPAREN] = ACTIONS(51), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6593), + [sym_word] = ACTIONS(55), }, - [2699] = { - [aux_sym_concatenation_repeat1] = STATE(2445), - [sym__simple_heredoc_body] = ACTIONS(2172), - [sym__heredoc_body_beginning] = ACTIONS(2172), - [sym_file_descriptor] = ACTIONS(2172), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_SEMI_SEMI] = ACTIONS(2174), - [anon_sym_PIPE_AMP] = ACTIONS(2174), - [anon_sym_AMP_AMP] = ACTIONS(2174), - [anon_sym_PIPE_PIPE] = ACTIONS(2174), - [anon_sym_EQ_TILDE] = ACTIONS(2174), - [anon_sym_EQ_EQ] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_GT] = ACTIONS(2174), - [anon_sym_GT_GT] = ACTIONS(2174), - [anon_sym_AMP_GT] = ACTIONS(2174), - [anon_sym_AMP_GT_GT] = ACTIONS(2174), - [anon_sym_LT_AMP] = ACTIONS(2174), - [anon_sym_GT_AMP] = ACTIONS(2174), - [anon_sym_LT_LT] = ACTIONS(2174), - [anon_sym_LT_LT_DASH] = ACTIONS(2174), - [anon_sym_LT_LT_LT] = ACTIONS(2174), - [sym__special_characters] = ACTIONS(2174), - [anon_sym_DQUOTE] = ACTIONS(2174), - [anon_sym_DOLLAR] = ACTIONS(2174), - [sym_raw_string] = ACTIONS(2174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2174), - [anon_sym_BQUOTE] = ACTIONS(2174), - [anon_sym_LT_LPAREN] = ACTIONS(2174), - [anon_sym_GT_LPAREN] = ACTIONS(2174), + [2416] = { + [sym__terminated_statement] = STATE(2554), + [sym_for_statement] = STATE(2551), + [sym_c_style_for_statement] = STATE(2551), + [sym_while_statement] = STATE(2551), + [sym_if_statement] = STATE(2551), + [sym_case_statement] = STATE(2551), + [sym_function_definition] = STATE(2551), + [sym_subshell] = STATE(2551), + [sym_pipeline] = STATE(2551), + [sym_list] = STATE(2551), + [sym_negated_command] = STATE(2551), + [sym_test_command] = STATE(2551), + [sym_declaration_command] = STATE(2551), + [sym_unset_command] = STATE(2551), + [sym_command] = STATE(2551), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2552), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2554), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(5913), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [2417] = { + [sym__special_characters] = ACTIONS(5107), + [anon_sym_DQUOTE] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [sym_raw_string] = ACTIONS(5107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5107), + [anon_sym_BQUOTE] = ACTIONS(5107), + [anon_sym_LT_LPAREN] = ACTIONS(5107), + [anon_sym_GT_LPAREN] = ACTIONS(5107), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5107), + }, + [2418] = { + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(5915), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_LF] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2700] = { - [aux_sym_concatenation_repeat1] = STATE(2445), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_SEMI_SEMI] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_EQ_TILDE] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2178), - [anon_sym_LT_LT_LT] = ACTIONS(2178), - [sym__special_characters] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2178), - [sym_raw_string] = ACTIONS(2178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), - [anon_sym_BQUOTE] = ACTIONS(2178), - [anon_sym_LT_LPAREN] = ACTIONS(2178), - [anon_sym_GT_LPAREN] = ACTIONS(2178), + [2419] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(5915), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_LF] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2178), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2701] = { - [aux_sym_concatenation_repeat1] = STATE(2860), - [sym__simple_heredoc_body] = ACTIONS(697), - [sym__heredoc_body_beginning] = ACTIONS(697), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(701), - [anon_sym_LT_AMP] = ACTIONS(701), - [anon_sym_GT_AMP] = ACTIONS(701), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(701), + [2420] = { + [sym__terminated_statement] = STATE(2553), + [sym_for_statement] = STATE(2557), + [sym_c_style_for_statement] = STATE(2557), + [sym_while_statement] = STATE(2557), + [sym_if_statement] = STATE(2557), + [sym_case_statement] = STATE(2557), + [sym_function_definition] = STATE(2557), + [sym_subshell] = STATE(2557), + [sym_pipeline] = STATE(2557), + [sym_list] = STATE(2557), + [sym_negated_command] = STATE(2557), + [sym_test_command] = STATE(2557), + [sym_declaration_command] = STATE(2557), + [sym_unset_command] = STATE(2557), + [sym_command] = STATE(2557), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2558), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2553), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(5917), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [2421] = { + [sym__terminated_statement] = STATE(2559), + [sym_for_statement] = STATE(2557), + [sym_c_style_for_statement] = STATE(2557), + [sym_while_statement] = STATE(2557), + [sym_if_statement] = STATE(2557), + [sym_case_statement] = STATE(2557), + [sym_function_definition] = STATE(2557), + [sym_subshell] = STATE(2557), + [sym_pipeline] = STATE(2557), + [sym_list] = STATE(2557), + [sym_negated_command] = STATE(2557), + [sym_test_command] = STATE(2557), + [sym_declaration_command] = STATE(2557), + [sym_unset_command] = STATE(2557), + [sym_command] = STATE(2557), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2558), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(19), + [sym_simple_expansion] = STATE(19), + [sym_string_expansion] = STATE(19), + [sym_expansion] = STATE(19), + [sym_command_substitution] = STATE(19), + [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(2559), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_SEMI_SEMI] = ACTIONS(5917), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(27), + [anon_sym_declare] = ACTIONS(29), + [anon_sym_typeset] = ACTIONS(29), + [anon_sym_export] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(29), + [anon_sym_local] = ACTIONS(29), + [anon_sym_unset] = ACTIONS(31), + [anon_sym_unsetenv] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(33), + [anon_sym_AMP_GT_GT] = ACTIONS(35), + [anon_sym_LT_AMP] = ACTIONS(35), + [anon_sym_GT_AMP] = ACTIONS(35), + [sym__special_characters] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(43), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(55), + }, + [2422] = { + [sym_file_descriptor] = ACTIONS(3802), + [sym__concat] = ACTIONS(3802), + [anon_sym_esac] = ACTIONS(3804), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_SEMI_SEMI] = ACTIONS(3804), + [anon_sym_PIPE_AMP] = ACTIONS(3804), + [anon_sym_AMP_AMP] = ACTIONS(3804), + [anon_sym_PIPE_PIPE] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_GT] = ACTIONS(3804), + [anon_sym_GT_GT] = ACTIONS(3804), + [anon_sym_AMP_GT] = ACTIONS(3804), + [anon_sym_AMP_GT_GT] = ACTIONS(3804), + [anon_sym_LT_AMP] = ACTIONS(3804), + [anon_sym_GT_AMP] = ACTIONS(3804), + [anon_sym_LT_LT] = ACTIONS(3804), + [anon_sym_LT_LT_DASH] = ACTIONS(3804), + [anon_sym_LT_LT_LT] = ACTIONS(3804), + [anon_sym_BQUOTE] = ACTIONS(3804), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3804), }, - [2702] = { - [aux_sym_concatenation_repeat1] = STATE(2860), - [sym__simple_heredoc_body] = ACTIONS(715), - [sym__heredoc_body_beginning] = ACTIONS(715), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(717), - [anon_sym_LT_AMP] = ACTIONS(717), - [anon_sym_GT_AMP] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(717), - [anon_sym_LT_LT_LT] = ACTIONS(717), + [2423] = { + [sym_file_descriptor] = ACTIONS(3810), + [sym__concat] = ACTIONS(3810), + [anon_sym_esac] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3812), + [anon_sym_RPAREN] = ACTIONS(3812), + [anon_sym_SEMI_SEMI] = ACTIONS(3812), + [anon_sym_PIPE_AMP] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3812), + [anon_sym_LT] = ACTIONS(3812), + [anon_sym_GT] = ACTIONS(3812), + [anon_sym_GT_GT] = ACTIONS(3812), + [anon_sym_AMP_GT] = ACTIONS(3812), + [anon_sym_AMP_GT_GT] = ACTIONS(3812), + [anon_sym_LT_AMP] = ACTIONS(3812), + [anon_sym_GT_AMP] = ACTIONS(3812), + [anon_sym_LT_LT] = ACTIONS(3812), + [anon_sym_LT_LT_DASH] = ACTIONS(3812), + [anon_sym_LT_LT_LT] = ACTIONS(3812), + [anon_sym_BQUOTE] = ACTIONS(3812), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_LF] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3812), }, - [2703] = { - [aux_sym_concatenation_repeat1] = STATE(2860), - [sym__simple_heredoc_body] = ACTIONS(2184), - [sym__heredoc_body_beginning] = ACTIONS(2184), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_SEMI_SEMI] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(2186), - [anon_sym_AMP_AMP] = ACTIONS(2186), - [anon_sym_PIPE_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2186), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2186), - [anon_sym_LT_AMP] = ACTIONS(2186), - [anon_sym_GT_AMP] = ACTIONS(2186), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2186), - [anon_sym_LT_LT_LT] = ACTIONS(2186), + [2424] = { + [sym_file_descriptor] = ACTIONS(3909), + [sym__concat] = ACTIONS(3909), + [anon_sym_esac] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_RPAREN] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [anon_sym_PIPE_AMP] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3911), + [anon_sym_AMP_GT_GT] = ACTIONS(3911), + [anon_sym_LT_AMP] = ACTIONS(3911), + [anon_sym_GT_AMP] = ACTIONS(3911), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_LT_LT_DASH] = ACTIONS(3911), + [anon_sym_LT_LT_LT] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), }, - [2704] = { - [aux_sym_concatenation_repeat1] = STATE(2860), - [sym__simple_heredoc_body] = ACTIONS(2188), - [sym__heredoc_body_beginning] = ACTIONS(2188), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), + [2425] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5919), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2190), + [sym_word] = ACTIONS(759), }, - [2705] = { - [sym_file_redirect] = STATE(2705), - [sym_heredoc_redirect] = STATE(2705), - [sym_herestring_redirect] = STATE(2705), - [aux_sym_while_statement_repeat1] = STATE(2705), - [sym__simple_heredoc_body] = ACTIONS(2196), - [sym__heredoc_body_beginning] = ACTIONS(2196), - [sym_file_descriptor] = ACTIONS(6595), - [anon_sym_esac] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_SEMI_SEMI] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6598), - [anon_sym_GT_GT] = ACTIONS(6598), - [anon_sym_AMP_GT] = ACTIONS(6598), - [anon_sym_AMP_GT_GT] = ACTIONS(6598), - [anon_sym_LT_AMP] = ACTIONS(6598), - [anon_sym_GT_AMP] = ACTIONS(6598), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_LT_LT_DASH] = ACTIONS(2206), - [anon_sym_LT_LT_LT] = ACTIONS(6601), + [2426] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5921), + [sym_comment] = ACTIONS(53), + }, + [2427] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5923), + [sym_comment] = ACTIONS(53), + }, + [2428] = { + [anon_sym_RBRACE] = ACTIONS(5923), + [sym_comment] = ACTIONS(53), + }, + [2429] = { + [sym_concatenation] = STATE(2564), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2564), + [anon_sym_RBRACE] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(5927), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5927), + [anon_sym_COLON_QMARK] = ACTIONS(5927), + [anon_sym_COLON_DASH] = ACTIONS(5927), + [anon_sym_PERCENT] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2201), + [sym_word] = ACTIONS(759), }, - [2706] = { - [sym_file_redirect] = STATE(2705), - [sym_heredoc_redirect] = STATE(2705), - [sym_heredoc_body] = STATE(1048), - [sym_herestring_redirect] = STATE(2705), - [aux_sym_while_statement_repeat1] = STATE(2705), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5679), - [anon_sym_esac] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_AMP_GT] = ACTIONS(5683), - [anon_sym_AMP_GT_GT] = ACTIONS(5683), - [anon_sym_LT_AMP] = ACTIONS(5683), - [anon_sym_GT_AMP] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(5685), + [2430] = { + [sym_file_descriptor] = ACTIONS(3945), + [sym__concat] = ACTIONS(3945), + [anon_sym_esac] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3947), + [anon_sym_PIPE_AMP] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3947), + [anon_sym_AMP_GT] = ACTIONS(3947), + [anon_sym_AMP_GT_GT] = ACTIONS(3947), + [anon_sym_LT_AMP] = ACTIONS(3947), + [anon_sym_GT_AMP] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_LT_LT_DASH] = ACTIONS(3947), + [anon_sym_LT_LT_LT] = ACTIONS(3947), + [anon_sym_BQUOTE] = ACTIONS(3947), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3947), }, - [2707] = { - [sym_concatenation] = STATE(202), - [sym_string] = STATE(2455), - [sym_simple_expansion] = STATE(2455), - [sym_string_expansion] = STATE(2455), - [sym_expansion] = STATE(2455), - [sym_command_substitution] = STATE(2455), - [sym_process_substitution] = STATE(2455), - [aux_sym_command_repeat2] = STATE(2707), - [sym__simple_heredoc_body] = ACTIONS(2176), - [sym__heredoc_body_beginning] = ACTIONS(2176), - [sym_file_descriptor] = ACTIONS(2176), - [anon_sym_esac] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_SEMI_SEMI] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_EQ_TILDE] = ACTIONS(6604), - [anon_sym_EQ_EQ] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_AMP_GT] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(2178), - [anon_sym_LT_AMP] = ACTIONS(2178), - [anon_sym_GT_AMP] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_LT_LT_DASH] = ACTIONS(2178), - [anon_sym_LT_LT_LT] = ACTIONS(2178), - [sym__special_characters] = ACTIONS(6607), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2221), - [sym_raw_string] = ACTIONS(6610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2233), - [anon_sym_LT_LPAREN] = ACTIONS(2236), - [anon_sym_GT_LPAREN] = ACTIONS(2236), + [2431] = { + [sym_concatenation] = STATE(2566), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2566), + [anon_sym_RBRACE] = ACTIONS(5931), + [anon_sym_EQ] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5933), + [anon_sym_COLON_QMARK] = ACTIONS(5933), + [anon_sym_COLON_DASH] = ACTIONS(5933), + [anon_sym_PERCENT] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(6610), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_LF] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2178), + [sym_word] = ACTIONS(759), }, - [2708] = { - [sym_file_descriptor] = ACTIONS(995), + [2432] = { + [sym_file_descriptor] = ACTIONS(3955), + [sym__concat] = ACTIONS(3955), + [anon_sym_esac] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_SEMI_SEMI] = ACTIONS(3957), + [anon_sym_PIPE_AMP] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3957), + [anon_sym_GT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3957), + [anon_sym_AMP_GT] = ACTIONS(3957), + [anon_sym_AMP_GT_GT] = ACTIONS(3957), + [anon_sym_LT_AMP] = ACTIONS(3957), + [anon_sym_GT_AMP] = ACTIONS(3957), + [anon_sym_LT_LT] = ACTIONS(3957), + [anon_sym_LT_LT_DASH] = ACTIONS(3957), + [anon_sym_LT_LT_LT] = ACTIONS(3957), + [anon_sym_BQUOTE] = ACTIONS(3957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), + }, + [2433] = { + [sym_concatenation] = STATE(2568), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2568), + [anon_sym_RBRACE] = ACTIONS(5937), + [anon_sym_EQ] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(5939), + [anon_sym_COLON_QMARK] = ACTIONS(5939), + [anon_sym_COLON_DASH] = ACTIONS(5939), + [anon_sym_PERCENT] = ACTIONS(5939), + [anon_sym_DASH] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2434] = { + [sym_file_descriptor] = ACTIONS(3965), + [sym__concat] = ACTIONS(3965), + [anon_sym_esac] = ACTIONS(3967), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_RPAREN] = ACTIONS(3967), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_GT] = ACTIONS(3967), + [anon_sym_GT_GT] = ACTIONS(3967), + [anon_sym_AMP_GT] = ACTIONS(3967), + [anon_sym_AMP_GT_GT] = ACTIONS(3967), + [anon_sym_LT_AMP] = ACTIONS(3967), + [anon_sym_GT_AMP] = ACTIONS(3967), + [anon_sym_LT_LT] = ACTIONS(3967), + [anon_sym_LT_LT_DASH] = ACTIONS(3967), + [anon_sym_LT_LT_LT] = ACTIONS(3967), + [anon_sym_BQUOTE] = ACTIONS(3967), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), + }, + [2435] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5943), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2436] = { + [sym_file_descriptor] = ACTIONS(3971), + [sym__concat] = ACTIONS(3971), + [anon_sym_esac] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3973), + [anon_sym_RPAREN] = ACTIONS(3973), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3973), + [anon_sym_GT] = ACTIONS(3973), + [anon_sym_GT_GT] = ACTIONS(3973), + [anon_sym_AMP_GT] = ACTIONS(3973), + [anon_sym_AMP_GT_GT] = ACTIONS(3973), + [anon_sym_LT_AMP] = ACTIONS(3973), + [anon_sym_GT_AMP] = ACTIONS(3973), + [anon_sym_LT_LT] = ACTIONS(3973), + [anon_sym_LT_LT_DASH] = ACTIONS(3973), + [anon_sym_LT_LT_LT] = ACTIONS(3973), + [anon_sym_BQUOTE] = ACTIONS(3973), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_LF] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3973), + }, + [2437] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5945), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2438] = { + [sym_file_descriptor] = ACTIONS(3977), + [sym__concat] = ACTIONS(3977), + [anon_sym_esac] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_RPAREN] = ACTIONS(3979), + [anon_sym_SEMI_SEMI] = ACTIONS(3979), + [anon_sym_PIPE_AMP] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [anon_sym_GT_GT] = ACTIONS(3979), + [anon_sym_AMP_GT] = ACTIONS(3979), + [anon_sym_AMP_GT_GT] = ACTIONS(3979), + [anon_sym_LT_AMP] = ACTIONS(3979), + [anon_sym_GT_AMP] = ACTIONS(3979), + [anon_sym_LT_LT] = ACTIONS(3979), + [anon_sym_LT_LT_DASH] = ACTIONS(3979), + [anon_sym_LT_LT_LT] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_LF] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3979), + }, + [2439] = { + [sym_file_descriptor] = ACTIONS(4001), + [sym__concat] = ACTIONS(4001), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_RPAREN] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4003), + [anon_sym_PIPE_AMP] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_PIPE_PIPE] = ACTIONS(4003), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [anon_sym_GT_GT] = ACTIONS(4003), + [anon_sym_AMP_GT] = ACTIONS(4003), + [anon_sym_AMP_GT_GT] = ACTIONS(4003), + [anon_sym_LT_AMP] = ACTIONS(4003), + [anon_sym_GT_AMP] = ACTIONS(4003), + [anon_sym_LT_LT] = ACTIONS(4003), + [anon_sym_LT_LT_DASH] = ACTIONS(4003), + [anon_sym_LT_LT_LT] = ACTIONS(4003), + [anon_sym_BQUOTE] = ACTIONS(4003), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [2440] = { + [sym__concat] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [sym_comment] = ACTIONS(53), + }, + [2441] = { + [sym__concat] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [sym_comment] = ACTIONS(53), + }, + [2442] = { + [sym__concat] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [sym_comment] = ACTIONS(53), + }, + [2443] = { + [sym__concat] = ACTIONS(4772), + [anon_sym_RBRACE] = ACTIONS(4772), + [sym_comment] = ACTIONS(53), + }, + [2444] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5947), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2445] = { + [sym__concat] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [sym_comment] = ACTIONS(53), + }, + [2446] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5949), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2447] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(4784), + [sym_comment] = ACTIONS(53), + }, + [2448] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2449] = { + [sym__concat] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [sym_comment] = ACTIONS(53), + }, + [2450] = { + [sym__concat] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [sym_comment] = ACTIONS(53), + }, + [2451] = { + [sym__concat] = ACTIONS(5310), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5310), + [anon_sym_POUND] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5310), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_COLON_QMARK] = ACTIONS(5312), + [anon_sym_COLON_DASH] = ACTIONS(5312), + [anon_sym_PERCENT] = ACTIONS(5312), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5310), + [anon_sym_BQUOTE] = ACTIONS(5310), + [anon_sym_LT_LPAREN] = ACTIONS(5310), + [anon_sym_GT_LPAREN] = ACTIONS(5310), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5312), + }, + [2452] = { + [sym__concat] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5316), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5314), + [anon_sym_POUND] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_COLON_QMARK] = ACTIONS(5316), + [anon_sym_COLON_DASH] = ACTIONS(5316), + [anon_sym_PERCENT] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5314), + [anon_sym_BQUOTE] = ACTIONS(5314), + [anon_sym_LT_LPAREN] = ACTIONS(5314), + [anon_sym_GT_LPAREN] = ACTIONS(5314), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5316), + }, + [2453] = { + [sym__concat] = ACTIONS(5318), + [anon_sym_RBRACE] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5320), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5318), + [anon_sym_POUND] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5318), + [anon_sym_COLON] = ACTIONS(5320), + [anon_sym_COLON_QMARK] = ACTIONS(5320), + [anon_sym_COLON_DASH] = ACTIONS(5320), + [anon_sym_PERCENT] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5318), + [anon_sym_BQUOTE] = ACTIONS(5318), + [anon_sym_LT_LPAREN] = ACTIONS(5318), + [anon_sym_GT_LPAREN] = ACTIONS(5318), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5320), + }, + [2454] = { + [sym__heredoc_body_middle] = ACTIONS(5310), + [sym__heredoc_body_end] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5310), + [sym_comment] = ACTIONS(53), + }, + [2455] = { + [sym__heredoc_body_middle] = ACTIONS(5314), + [sym__heredoc_body_end] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), + [sym_comment] = ACTIONS(53), + }, + [2456] = { + [sym__heredoc_body_middle] = ACTIONS(5318), + [sym__heredoc_body_end] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5318), + [sym_comment] = ACTIONS(53), + }, + [2457] = { + [sym__concat] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(5310), + [sym__special_characters] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5310), + [anon_sym_BQUOTE] = ACTIONS(5310), + [anon_sym_LT_LPAREN] = ACTIONS(5310), + [anon_sym_GT_LPAREN] = ACTIONS(5310), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5310), + }, + [2458] = { + [sym__concat] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(5314), + [sym__special_characters] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5314), + [anon_sym_BQUOTE] = ACTIONS(5314), + [anon_sym_LT_LPAREN] = ACTIONS(5314), + [anon_sym_GT_LPAREN] = ACTIONS(5314), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5314), + }, + [2459] = { + [sym__concat] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [sym__special_characters] = ACTIONS(5318), + [anon_sym_DQUOTE] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5318), + [anon_sym_BQUOTE] = ACTIONS(5318), + [anon_sym_LT_LPAREN] = ACTIONS(5318), + [anon_sym_GT_LPAREN] = ACTIONS(5318), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5318), + }, + [2460] = { + [sym__concat] = ACTIONS(4756), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_EQ_TILDE] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4756), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4756), + }, + [2461] = { + [sym__concat] = ACTIONS(4764), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_EQ_TILDE] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4764), + [anon_sym_GT] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4764), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4764), + }, + [2462] = { + [sym__concat] = ACTIONS(4768), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_EQ_TILDE] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4768), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4768), + }, + [2463] = { + [sym__concat] = ACTIONS(4772), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4772), + [anon_sym_AMP_AMP] = ACTIONS(4772), + [anon_sym_PIPE_PIPE] = ACTIONS(4772), + [anon_sym_EQ_TILDE] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4772), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4772), + [anon_sym_GT] = ACTIONS(4772), + [anon_sym_BANG_EQ] = ACTIONS(4772), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4772), + }, + [2464] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5953), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2465] = { + [sym__concat] = ACTIONS(4778), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4778), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE_PIPE] = ACTIONS(4778), + [anon_sym_EQ_TILDE] = ACTIONS(4778), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4778), + }, + [2466] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2467] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_EQ_TILDE] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4784), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4784), + }, + [2468] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5957), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2469] = { + [sym__concat] = ACTIONS(4790), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_EQ_TILDE] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4790), + [anon_sym_GT] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4790), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4790), + }, + [2470] = { + [sym__concat] = ACTIONS(4794), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_EQ_TILDE] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4794), + [anon_sym_GT] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4794), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4794), + }, + [2471] = { + [aux_sym_concatenation_repeat1] = STATE(2577), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(997), + [sym_variable_name] = ACTIONS(683), + [anon_sym_esac] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [sym__special_characters] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(685), + [sym_raw_string] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [anon_sym_LT_LPAREN] = ACTIONS(685), + [anon_sym_GT_LPAREN] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [2472] = { + [sym_file_redirect] = STATE(2400), + [sym_heredoc_redirect] = STATE(2400), + [sym_heredoc_body] = STATE(1037), + [sym_herestring_redirect] = STATE(2400), + [aux_sym_while_statement_repeat1] = STATE(2400), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(5086), + [anon_sym_esac] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_SEMI_SEMI] = ACTIONS(2209), + [anon_sym_PIPE_AMP] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5090), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(5092), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2209), + }, + [2473] = { + [sym_compound_statement] = STATE(2578), + [anon_sym_LBRACE] = ACTIONS(435), + [sym_comment] = ACTIONS(53), + }, + [2474] = { + [anon_sym_LT] = ACTIONS(5959), + [anon_sym_GT] = ACTIONS(5959), + [anon_sym_GT_GT] = ACTIONS(5961), + [anon_sym_AMP_GT] = ACTIONS(5959), + [anon_sym_AMP_GT_GT] = ACTIONS(5961), + [anon_sym_LT_AMP] = ACTIONS(5961), + [anon_sym_GT_AMP] = ACTIONS(5961), + [sym_comment] = ACTIONS(53), + }, + [2475] = { + [sym_concatenation] = STATE(1087), + [sym_string] = STATE(2581), + [sym_simple_expansion] = STATE(2581), + [sym_string_expansion] = STATE(2581), + [sym_expansion] = STATE(2581), + [sym_command_substitution] = STATE(2581), + [sym_process_substitution] = STATE(2581), + [sym__special_characters] = ACTIONS(5963), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [anon_sym_GT_LPAREN] = ACTIONS(1041), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5965), + }, + [2476] = { + [anon_sym_LT] = ACTIONS(5967), + [anon_sym_GT] = ACTIONS(5967), + [anon_sym_GT_GT] = ACTIONS(5969), + [anon_sym_AMP_GT] = ACTIONS(5967), + [anon_sym_AMP_GT_GT] = ACTIONS(5969), + [anon_sym_LT_AMP] = ACTIONS(5969), + [anon_sym_GT_AMP] = ACTIONS(5969), + [sym_comment] = ACTIONS(53), + }, + [2477] = { + [sym_concatenation] = STATE(1143), + [sym_string] = STATE(2584), + [sym_simple_expansion] = STATE(2584), + [sym_string_expansion] = STATE(2584), + [sym_expansion] = STATE(2584), + [sym_command_substitution] = STATE(2584), + [sym_process_substitution] = STATE(2584), + [sym__special_characters] = ACTIONS(5971), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(5973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5973), + }, + [2478] = { + [sym_concatenation] = STATE(1147), + [sym_string] = STATE(2586), + [sym_simple_expansion] = STATE(2586), + [sym_string_expansion] = STATE(2586), + [sym_expansion] = STATE(2586), + [sym_command_substitution] = STATE(2586), + [sym_process_substitution] = STATE(2586), + [sym__special_characters] = ACTIONS(5975), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(5977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5977), + }, + [2479] = { + [sym_file_redirect] = STATE(2587), + [sym_heredoc_redirect] = STATE(2587), + [sym_herestring_redirect] = STATE(2587), + [aux_sym_while_statement_repeat1] = STATE(2587), + [sym_file_descriptor] = ACTIONS(5674), + [anon_sym_esac] = ACTIONS(2496), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_SEMI_SEMI] = ACTIONS(2496), + [anon_sym_PIPE_AMP] = ACTIONS(2496), + [anon_sym_AMP_AMP] = ACTIONS(2496), + [anon_sym_PIPE_PIPE] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5676), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_AMP_GT] = ACTIONS(5676), + [anon_sym_AMP_GT_GT] = ACTIONS(5676), + [anon_sym_LT_AMP] = ACTIONS(5676), + [anon_sym_GT_AMP] = ACTIONS(5676), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_LT_LT_DASH] = ACTIONS(1295), + [anon_sym_LT_LT_LT] = ACTIONS(5678), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_LF] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + }, + [2480] = { + [sym_variable_name] = ACTIONS(973), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + }, + [2481] = { + [sym_concatenation] = STATE(2589), + [sym_string] = STATE(505), + [sym_simple_expansion] = STATE(505), + [sym_string_expansion] = STATE(505), + [sym_expansion] = STATE(505), + [sym_command_substitution] = STATE(505), + [sym_process_substitution] = STATE(505), + [aux_sym_for_statement_repeat1] = STATE(2589), + [anon_sym_RPAREN] = ACTIONS(5979), + [sym__special_characters] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LT_LPAREN] = ACTIONS(993), + [anon_sym_GT_LPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(985), + }, + [2482] = { + [aux_sym_concatenation_repeat1] = STATE(2344), + [sym__concat] = ACTIONS(5444), [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_esac] = ACTIONS(6613), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6615), - [anon_sym_DQUOTE] = ACTIONS(6617), - [anon_sym_DOLLAR] = ACTIONS(6615), - [sym_raw_string] = ACTIONS(6617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), - [anon_sym_BQUOTE] = ACTIONS(6617), - [anon_sym_LT_LPAREN] = ACTIONS(6617), - [anon_sym_GT_LPAREN] = ACTIONS(6617), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6615), - }, - [2709] = { - [sym_file_redirect] = STATE(2861), - [sym_heredoc_redirect] = STATE(2861), - [sym_heredoc_body] = STATE(1048), - [sym_herestring_redirect] = STATE(2861), - [sym_concatenation] = STATE(202), - [sym_string] = STATE(2455), - [sym_simple_expansion] = STATE(2455), - [sym_string_expansion] = STATE(2455), - [sym_expansion] = STATE(2455), - [sym_command_substitution] = STATE(2455), - [sym_process_substitution] = STATE(2455), - [aux_sym_while_statement_repeat1] = STATE(2861), - [aux_sym_command_repeat2] = STATE(2707), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5679), - [anon_sym_esac] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(5681), - [anon_sym_EQ_EQ] = ACTIONS(5681), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_AMP_GT] = ACTIONS(5683), - [anon_sym_AMP_GT_GT] = ACTIONS(5683), - [anon_sym_LT_AMP] = ACTIONS(5683), - [anon_sym_GT_AMP] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(5685), - [sym__special_characters] = ACTIONS(5687), - [anon_sym_DQUOTE] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), + [anon_sym_esac] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_SEMI_SEMI] = ACTIONS(999), + [anon_sym_PIPE_AMP] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [sym__special_characters] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [sym_raw_string] = ACTIONS(999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(999), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(999), + [anon_sym_BQUOTE] = ACTIONS(999), + [anon_sym_LT_LPAREN] = ACTIONS(999), + [anon_sym_GT_LPAREN] = ACTIONS(999), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5689), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2192), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(999), + [sym_word] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LF] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(999), }, - [2710] = { - [anon_sym_esac] = ACTIONS(6613), - [sym__special_characters] = ACTIONS(6617), - [anon_sym_DQUOTE] = ACTIONS(6617), - [anon_sym_DOLLAR] = ACTIONS(6615), - [sym_raw_string] = ACTIONS(6617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), - [anon_sym_BQUOTE] = ACTIONS(6617), - [anon_sym_LT_LPAREN] = ACTIONS(6617), - [anon_sym_GT_LPAREN] = ACTIONS(6617), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6615), - }, - [2711] = { - [anon_sym_esac] = ACTIONS(6613), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(6619), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [2483] = { + [aux_sym_concatenation_repeat1] = STATE(2344), + [sym__concat] = ACTIONS(5444), + [sym_variable_name] = ACTIONS(973), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__special_characters] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), }, - [2712] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_esac] = ACTIONS(6613), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(6619), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), + [2484] = { + [sym__concat] = ACTIONS(1648), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, - [2713] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_esac] = ACTIONS(6621), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6625), - [anon_sym_DOLLAR] = ACTIONS(6623), - [sym_raw_string] = ACTIONS(6625), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6625), - [anon_sym_BQUOTE] = ACTIONS(6625), - [anon_sym_LT_LPAREN] = ACTIONS(6625), - [anon_sym_GT_LPAREN] = ACTIONS(6625), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6623), - }, - [2714] = { - [anon_sym_esac] = ACTIONS(6621), - [sym__special_characters] = ACTIONS(6625), - [anon_sym_DQUOTE] = ACTIONS(6625), - [anon_sym_DOLLAR] = ACTIONS(6623), - [sym_raw_string] = ACTIONS(6625), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6625), - [anon_sym_BQUOTE] = ACTIONS(6625), - [anon_sym_LT_LPAREN] = ACTIONS(6625), - [anon_sym_GT_LPAREN] = ACTIONS(6625), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6623), - }, - [2715] = { - [anon_sym_esac] = ACTIONS(6621), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(6627), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), + [2485] = { + [aux_sym_concatenation_repeat1] = STATE(2485), + [sym__concat] = ACTIONS(5981), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, - [2716] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_esac] = ACTIONS(6621), - [anon_sym_PIPE] = ACTIONS(5673), - [anon_sym_SEMI_SEMI] = ACTIONS(6627), - [anon_sym_PIPE_AMP] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), + [2486] = { + [sym__concat] = ACTIONS(1655), + [sym_variable_name] = ACTIONS(1655), + [anon_sym_esac] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [anon_sym_PIPE_AMP] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [sym__special_characters] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [anon_sym_LT_LPAREN] = ACTIONS(1657), + [anon_sym_GT_LPAREN] = ACTIONS(1657), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1657), + [sym_word] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), }, - [2717] = { - [sym__special_characters] = ACTIONS(5627), - [anon_sym_DQUOTE] = ACTIONS(5627), - [anon_sym_DOLLAR] = ACTIONS(5629), - [sym_raw_string] = ACTIONS(5627), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5627), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5627), - [anon_sym_BQUOTE] = ACTIONS(5627), - [anon_sym_LT_LPAREN] = ACTIONS(5627), - [anon_sym_GT_LPAREN] = ACTIONS(5627), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5627), - }, - [2718] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6629), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), + [2487] = { + [anon_sym_DQUOTE] = ACTIONS(5984), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, - [2719] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6629), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), + [2488] = { + [sym_concatenation] = STATE(2594), + [sym_string] = STATE(2593), + [sym_simple_expansion] = STATE(2593), + [sym_string_expansion] = STATE(2593), + [sym_expansion] = STATE(2593), + [sym_command_substitution] = STATE(2593), + [sym_process_substitution] = STATE(2593), + [anon_sym_RBRACE] = ACTIONS(5986), + [sym__special_characters] = ACTIONS(5988), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(5990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5990), + }, + [2489] = { + [sym__concat] = ACTIONS(1748), + [sym_variable_name] = ACTIONS(1748), + [anon_sym_esac] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_SEMI_SEMI] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [sym__special_characters] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), + [anon_sym_BQUOTE] = ACTIONS(1750), + [anon_sym_LT_LPAREN] = ACTIONS(1750), + [anon_sym_GT_LPAREN] = ACTIONS(1750), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1750), + [sym_word] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LF] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1750), }, - [2720] = { - [sym__terminated_statement] = STATE(2868), - [sym_for_statement] = STATE(2866), - [sym_c_style_for_statement] = STATE(2866), - [sym_while_statement] = STATE(2866), - [sym_if_statement] = STATE(2866), - [sym_case_statement] = STATE(2866), - [sym_function_definition] = STATE(2866), - [sym_subshell] = STATE(2866), - [sym_pipeline] = STATE(2866), - [sym_list] = STATE(2866), - [sym_negated_command] = STATE(2866), - [sym_test_command] = STATE(2866), - [sym_declaration_command] = STATE(2866), - [sym_unset_command] = STATE(2866), - [sym_command] = STATE(2866), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2867), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2868), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6631), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2721] = { - [sym__terminated_statement] = STATE(2869), - [sym_for_statement] = STATE(2866), - [sym_c_style_for_statement] = STATE(2866), - [sym_while_statement] = STATE(2866), - [sym_if_statement] = STATE(2866), - [sym_case_statement] = STATE(2866), - [sym_function_definition] = STATE(2866), - [sym_subshell] = STATE(2866), - [sym_pipeline] = STATE(2866), - [sym_list] = STATE(2866), - [sym_negated_command] = STATE(2866), - [sym_test_command] = STATE(2866), - [sym_declaration_command] = STATE(2866), - [sym_unset_command] = STATE(2866), - [sym_command] = STATE(2866), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2867), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2869), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6631), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2722] = { - [sym__special_characters] = ACTIONS(5700), - [anon_sym_DQUOTE] = ACTIONS(5700), - [anon_sym_DOLLAR] = ACTIONS(5702), - [sym_raw_string] = ACTIONS(5700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5700), - [anon_sym_BQUOTE] = ACTIONS(5700), - [anon_sym_LT_LPAREN] = ACTIONS(5700), - [anon_sym_GT_LPAREN] = ACTIONS(5700), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5700), - }, - [2723] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6633), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), + [2490] = { [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [sym_regex_without_right_brace] = ACTIONS(5992), }, - [2724] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6633), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), + [2491] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5994), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(759), }, - [2725] = { - [sym__terminated_statement] = STATE(2868), - [sym_for_statement] = STATE(2872), - [sym_c_style_for_statement] = STATE(2872), - [sym_while_statement] = STATE(2872), - [sym_if_statement] = STATE(2872), - [sym_case_statement] = STATE(2872), - [sym_function_definition] = STATE(2872), - [sym_subshell] = STATE(2872), - [sym_pipeline] = STATE(2872), - [sym_list] = STATE(2872), - [sym_negated_command] = STATE(2872), - [sym_test_command] = STATE(2872), - [sym_declaration_command] = STATE(2872), - [sym_unset_command] = STATE(2872), - [sym_command] = STATE(2872), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2873), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2868), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6635), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [2492] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(5996), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), }, - [2726] = { - [sym__terminated_statement] = STATE(2874), - [sym_for_statement] = STATE(2872), - [sym_c_style_for_statement] = STATE(2872), - [sym_while_statement] = STATE(2872), - [sym_if_statement] = STATE(2872), - [sym_case_statement] = STATE(2872), - [sym_function_definition] = STATE(2872), - [sym_subshell] = STATE(2872), - [sym_pipeline] = STATE(2872), - [sym_list] = STATE(2872), - [sym_negated_command] = STATE(2872), - [sym_test_command] = STATE(2872), - [sym_declaration_command] = STATE(2872), - [sym_unset_command] = STATE(2872), - [sym_command] = STATE(2872), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2873), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2874), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6635), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [2727] = { - [sym_file_descriptor] = ACTIONS(4164), - [sym__concat] = ACTIONS(4164), - [anon_sym_esac] = ACTIONS(4166), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4166), - [anon_sym_SEMI_SEMI] = ACTIONS(4166), - [anon_sym_PIPE_AMP] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_LT] = ACTIONS(4166), - [anon_sym_GT] = ACTIONS(4166), - [anon_sym_GT_GT] = ACTIONS(4166), - [anon_sym_AMP_GT] = ACTIONS(4166), - [anon_sym_AMP_GT_GT] = ACTIONS(4166), - [anon_sym_LT_AMP] = ACTIONS(4166), - [anon_sym_GT_AMP] = ACTIONS(4166), - [anon_sym_LT_LT] = ACTIONS(4166), - [anon_sym_LT_LT_DASH] = ACTIONS(4166), - [anon_sym_LT_LT_LT] = ACTIONS(4166), + [2493] = { + [sym_concatenation] = STATE(2600), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2600), + [anon_sym_RBRACE] = ACTIONS(5998), + [anon_sym_EQ] = ACTIONS(6000), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(6004), + [anon_sym_COLON] = ACTIONS(6000), + [anon_sym_COLON_QMARK] = ACTIONS(6000), + [anon_sym_COLON_DASH] = ACTIONS(6000), + [anon_sym_PERCENT] = ACTIONS(6000), + [anon_sym_DASH] = ACTIONS(6000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4166), + [sym_word] = ACTIONS(759), }, - [2728] = { - [sym_file_descriptor] = ACTIONS(4172), - [sym__concat] = ACTIONS(4172), - [anon_sym_esac] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4174), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE_PIPE] = ACTIONS(4174), - [anon_sym_LT] = ACTIONS(4174), - [anon_sym_GT] = ACTIONS(4174), - [anon_sym_GT_GT] = ACTIONS(4174), - [anon_sym_AMP_GT] = ACTIONS(4174), - [anon_sym_AMP_GT_GT] = ACTIONS(4174), - [anon_sym_LT_AMP] = ACTIONS(4174), - [anon_sym_GT_AMP] = ACTIONS(4174), - [anon_sym_LT_LT] = ACTIONS(4174), - [anon_sym_LT_LT_DASH] = ACTIONS(4174), - [anon_sym_LT_LT_LT] = ACTIONS(4174), + [2494] = { + [sym_concatenation] = STATE(2603), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2603), + [anon_sym_RBRACE] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(6008), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(6012), + [anon_sym_COLON] = ACTIONS(6008), + [anon_sym_COLON_QMARK] = ACTIONS(6008), + [anon_sym_COLON_DASH] = ACTIONS(6008), + [anon_sym_PERCENT] = ACTIONS(6008), + [anon_sym_DASH] = ACTIONS(6008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4174), + [sym_word] = ACTIONS(759), }, - [2729] = { - [sym_file_descriptor] = ACTIONS(4259), - [sym__concat] = ACTIONS(4259), - [anon_sym_esac] = ACTIONS(4261), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4261), - [anon_sym_SEMI_SEMI] = ACTIONS(4261), - [anon_sym_PIPE_AMP] = ACTIONS(4261), - [anon_sym_AMP_AMP] = ACTIONS(4261), - [anon_sym_PIPE_PIPE] = ACTIONS(4261), - [anon_sym_LT] = ACTIONS(4261), - [anon_sym_GT] = ACTIONS(4261), - [anon_sym_GT_GT] = ACTIONS(4261), - [anon_sym_AMP_GT] = ACTIONS(4261), - [anon_sym_AMP_GT_GT] = ACTIONS(4261), - [anon_sym_LT_AMP] = ACTIONS(4261), - [anon_sym_GT_AMP] = ACTIONS(4261), - [anon_sym_LT_LT] = ACTIONS(4261), - [anon_sym_LT_LT_DASH] = ACTIONS(4261), - [anon_sym_LT_LT_LT] = ACTIONS(4261), + [2495] = { + [sym_concatenation] = STATE(2605), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2605), + [anon_sym_RBRACE] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(6014), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(6018), + [anon_sym_COLON] = ACTIONS(6014), + [anon_sym_COLON_QMARK] = ACTIONS(6014), + [anon_sym_COLON_DASH] = ACTIONS(6014), + [anon_sym_PERCENT] = ACTIONS(6014), + [anon_sym_DASH] = ACTIONS(6014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), + [sym_word] = ACTIONS(759), }, - [2730] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6637), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2496] = { + [sym__concat] = ACTIONS(1816), + [sym_variable_name] = ACTIONS(1816), + [anon_sym_esac] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [sym__special_characters] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1818), + [sym_word] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), }, - [2731] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6639), - [sym_comment] = ACTIONS(53), - }, - [2732] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6641), - [sym_comment] = ACTIONS(53), - }, - [2733] = { - [anon_sym_RBRACE] = ACTIONS(6641), - [sym_comment] = ACTIONS(53), - }, - [2734] = { - [sym_concatenation] = STATE(2879), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2879), - [anon_sym_RBRACE] = ACTIONS(6643), - [anon_sym_EQ] = ACTIONS(6645), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6645), - [anon_sym_COLON_QMARK] = ACTIONS(6645), - [anon_sym_COLON_DASH] = ACTIONS(6645), - [anon_sym_PERCENT] = ACTIONS(6645), - [anon_sym_DASH] = ACTIONS(6645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2497] = { [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_regex_without_right_brace] = ACTIONS(6020), }, - [2735] = { - [sym_file_descriptor] = ACTIONS(4275), - [sym__concat] = ACTIONS(4275), - [anon_sym_esac] = ACTIONS(4277), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_SEMI_SEMI] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_GT] = ACTIONS(4277), - [anon_sym_AMP_GT] = ACTIONS(4277), - [anon_sym_AMP_GT_GT] = ACTIONS(4277), - [anon_sym_LT_AMP] = ACTIONS(4277), - [anon_sym_GT_AMP] = ACTIONS(4277), - [anon_sym_LT_LT] = ACTIONS(4277), - [anon_sym_LT_LT_DASH] = ACTIONS(4277), - [anon_sym_LT_LT_LT] = ACTIONS(4277), + [2498] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6022), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), + [sym_word] = ACTIONS(759), }, - [2736] = { - [sym_concatenation] = STATE(2881), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2881), - [anon_sym_RBRACE] = ACTIONS(6649), - [anon_sym_EQ] = ACTIONS(6651), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6653), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6651), - [anon_sym_COLON_QMARK] = ACTIONS(6651), - [anon_sym_COLON_DASH] = ACTIONS(6651), - [anon_sym_PERCENT] = ACTIONS(6651), - [anon_sym_DASH] = ACTIONS(6651), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2499] = { + [sym__concat] = ACTIONS(1824), + [sym_variable_name] = ACTIONS(1824), + [anon_sym_esac] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1826), + [sym_word] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), }, - [2737] = { - [sym_file_descriptor] = ACTIONS(4285), - [sym__concat] = ACTIONS(4285), - [anon_sym_esac] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4287), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [anon_sym_PIPE_AMP] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4287), - [anon_sym_AMP_GT] = ACTIONS(4287), - [anon_sym_AMP_GT_GT] = ACTIONS(4287), - [anon_sym_LT_AMP] = ACTIONS(4287), - [anon_sym_GT_AMP] = ACTIONS(4287), - [anon_sym_LT_LT] = ACTIONS(4287), - [anon_sym_LT_LT_DASH] = ACTIONS(4287), - [anon_sym_LT_LT_LT] = ACTIONS(4287), + [2500] = { [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(4287), + [sym_regex_without_right_brace] = ACTIONS(6024), }, - [2738] = { - [sym_concatenation] = STATE(2883), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2883), - [anon_sym_RBRACE] = ACTIONS(6655), - [anon_sym_EQ] = ACTIONS(6657), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6657), - [anon_sym_COLON_QMARK] = ACTIONS(6657), - [anon_sym_COLON_DASH] = ACTIONS(6657), - [anon_sym_PERCENT] = ACTIONS(6657), - [anon_sym_DASH] = ACTIONS(6657), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2501] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2739] = { - [sym_file_descriptor] = ACTIONS(4295), - [sym__concat] = ACTIONS(4295), - [anon_sym_esac] = ACTIONS(4297), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_GT_GT] = ACTIONS(4297), - [anon_sym_AMP_GT] = ACTIONS(4297), - [anon_sym_AMP_GT_GT] = ACTIONS(4297), - [anon_sym_LT_AMP] = ACTIONS(4297), - [anon_sym_GT_AMP] = ACTIONS(4297), - [anon_sym_LT_LT] = ACTIONS(4297), - [anon_sym_LT_LT_DASH] = ACTIONS(4297), - [anon_sym_LT_LT_LT] = ACTIONS(4297), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4297), - }, - [2740] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6661), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2741] = { - [sym_file_descriptor] = ACTIONS(4301), - [sym__concat] = ACTIONS(4301), - [anon_sym_esac] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4303), - [anon_sym_GT] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_AMP_GT] = ACTIONS(4303), - [anon_sym_AMP_GT_GT] = ACTIONS(4303), - [anon_sym_LT_AMP] = ACTIONS(4303), - [anon_sym_GT_AMP] = ACTIONS(4303), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_LT_LT_DASH] = ACTIONS(4303), - [anon_sym_LT_LT_LT] = ACTIONS(4303), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4303), - }, - [2742] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6663), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2743] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_RBRACE] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - }, - [2744] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_RBRACE] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - }, - [2745] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - }, - [2746] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_RBRACE] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - }, - [2747] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6665), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2748] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_RBRACE] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - }, - [2749] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6667), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2750] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_RBRACE] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - }, - [2751] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6669), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2752] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_RBRACE] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - }, - [2753] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_RBRACE] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - }, - [2754] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_RBRACE] = ACTIONS(5879), - [anon_sym_EQ] = ACTIONS(5881), - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5879), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5879), - [anon_sym_POUND] = ACTIONS(5879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), - [anon_sym_COLON] = ACTIONS(5881), - [anon_sym_COLON_QMARK] = ACTIONS(5881), - [anon_sym_COLON_DASH] = ACTIONS(5881), - [anon_sym_PERCENT] = ACTIONS(5881), - [anon_sym_DASH] = ACTIONS(5881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), - [anon_sym_BQUOTE] = ACTIONS(5879), - [anon_sym_LT_LPAREN] = ACTIONS(5879), - [anon_sym_GT_LPAREN] = ACTIONS(5879), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5881), - }, - [2755] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_RBRACE] = ACTIONS(5883), - [anon_sym_EQ] = ACTIONS(5885), - [sym__special_characters] = ACTIONS(5885), - [anon_sym_DQUOTE] = ACTIONS(5883), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5883), - [anon_sym_POUND] = ACTIONS(5883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), - [anon_sym_COLON] = ACTIONS(5885), - [anon_sym_COLON_QMARK] = ACTIONS(5885), - [anon_sym_COLON_DASH] = ACTIONS(5885), - [anon_sym_PERCENT] = ACTIONS(5885), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), - [anon_sym_BQUOTE] = ACTIONS(5883), - [anon_sym_LT_LPAREN] = ACTIONS(5883), - [anon_sym_GT_LPAREN] = ACTIONS(5883), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5885), - }, - [2756] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_RBRACE] = ACTIONS(5887), - [anon_sym_EQ] = ACTIONS(5889), - [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5887), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(5887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), - [anon_sym_COLON] = ACTIONS(5889), - [anon_sym_COLON_QMARK] = ACTIONS(5889), - [anon_sym_COLON_DASH] = ACTIONS(5889), - [anon_sym_PERCENT] = ACTIONS(5889), - [anon_sym_DASH] = ACTIONS(5889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), - [anon_sym_BQUOTE] = ACTIONS(5887), - [anon_sym_LT_LPAREN] = ACTIONS(5887), - [anon_sym_GT_LPAREN] = ACTIONS(5887), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5889), - }, - [2757] = { - [anon_sym_PIPE] = ACTIONS(3860), - [anon_sym_RPAREN] = ACTIONS(3858), - [anon_sym_PIPE_AMP] = ACTIONS(3858), - [anon_sym_AMP_AMP] = ACTIONS(3858), - [anon_sym_PIPE_PIPE] = ACTIONS(3858), - [anon_sym_BQUOTE] = ACTIONS(3858), - [sym_comment] = ACTIONS(53), - }, - [2758] = { - [anon_sym_PIPE] = ACTIONS(6105), - [anon_sym_RPAREN] = ACTIONS(6107), - [anon_sym_PIPE_AMP] = ACTIONS(6107), - [anon_sym_AMP_AMP] = ACTIONS(6107), - [anon_sym_PIPE_PIPE] = ACTIONS(6107), - [anon_sym_BQUOTE] = ACTIONS(6107), - [sym_comment] = ACTIONS(53), - }, - [2759] = { - [sym_do_group] = STATE(2889), - [sym_compound_statement] = STATE(2889), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(5240), - [sym_comment] = ACTIONS(53), - }, - [2760] = { - [anon_sym_PIPE] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6225), - [anon_sym_PIPE_AMP] = ACTIONS(6225), - [anon_sym_AMP_AMP] = ACTIONS(6225), - [anon_sym_PIPE_PIPE] = ACTIONS(6225), - [anon_sym_BQUOTE] = ACTIONS(6225), - [sym_comment] = ACTIONS(53), - }, - [2761] = { - [anon_sym_PIPE] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6229), - [anon_sym_PIPE_AMP] = ACTIONS(6229), - [anon_sym_AMP_AMP] = ACTIONS(6229), - [anon_sym_PIPE_PIPE] = ACTIONS(6229), - [anon_sym_BQUOTE] = ACTIONS(6229), - [sym_comment] = ACTIONS(53), - }, - [2762] = { - [sym_file_descriptor] = ACTIONS(2920), - [sym__concat] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2920), - [anon_sym_PIPE_AMP] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2920), - [anon_sym_AMP_GT] = ACTIONS(2922), - [anon_sym_AMP_GT_GT] = ACTIONS(2920), - [anon_sym_LT_AMP] = ACTIONS(2920), - [anon_sym_GT_AMP] = ACTIONS(2920), - [anon_sym_LT_LT] = ACTIONS(2922), - [anon_sym_LT_LT_DASH] = ACTIONS(2920), - [anon_sym_LT_LT_LT] = ACTIONS(2920), - [anon_sym_BQUOTE] = ACTIONS(2920), - [sym_comment] = ACTIONS(53), - }, - [2763] = { - [sym_file_descriptor] = ACTIONS(2934), - [sym__concat] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_PIPE_AMP] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_GT] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(2934), - [anon_sym_LT_AMP] = ACTIONS(2934), - [anon_sym_GT_AMP] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_LT_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT_LT] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [sym_comment] = ACTIONS(53), - }, - [2764] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6671), - [sym_comment] = ACTIONS(53), - }, - [2765] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6673), - [sym_comment] = ACTIONS(53), - }, - [2766] = { - [anon_sym_RBRACE] = ACTIONS(6673), - [sym_comment] = ACTIONS(53), - }, - [2767] = { - [sym_concatenation] = STATE(2893), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2893), - [anon_sym_RBRACE] = ACTIONS(6675), - [anon_sym_EQ] = ACTIONS(6677), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6677), - [anon_sym_COLON_QMARK] = ACTIONS(6677), - [anon_sym_COLON_DASH] = ACTIONS(6677), - [anon_sym_PERCENT] = ACTIONS(6677), - [anon_sym_DASH] = ACTIONS(6677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2768] = { - [sym_file_descriptor] = ACTIONS(3016), - [sym__concat] = ACTIONS(3016), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_PIPE_AMP] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_GT_GT] = ACTIONS(3016), - [anon_sym_AMP_GT] = ACTIONS(3018), - [anon_sym_AMP_GT_GT] = ACTIONS(3016), - [anon_sym_LT_AMP] = ACTIONS(3016), - [anon_sym_GT_AMP] = ACTIONS(3016), - [anon_sym_LT_LT] = ACTIONS(3018), - [anon_sym_LT_LT_DASH] = ACTIONS(3016), - [anon_sym_LT_LT_LT] = ACTIONS(3016), - [anon_sym_BQUOTE] = ACTIONS(3016), - [sym_comment] = ACTIONS(53), - }, - [2769] = { - [sym_concatenation] = STATE(2896), - [sym_string] = STATE(2895), - [sym_simple_expansion] = STATE(2895), - [sym_string_expansion] = STATE(2895), - [sym_expansion] = STATE(2895), - [sym_command_substitution] = STATE(2895), - [sym_process_substitution] = STATE(2895), - [anon_sym_RBRACE] = ACTIONS(6673), - [sym__special_characters] = ACTIONS(6681), + [2502] = { + [sym__concat] = ACTIONS(1830), + [sym_variable_name] = ACTIONS(1830), + [anon_sym_esac] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(6683), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6683), - }, - [2770] = { - [sym_file_descriptor] = ACTIONS(3059), - [sym__concat] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3059), - [anon_sym_PIPE_AMP] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(3059), - [anon_sym_LT_AMP] = ACTIONS(3059), - [anon_sym_GT_AMP] = ACTIONS(3059), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_LT_LT_DASH] = ACTIONS(3059), - [anon_sym_LT_LT_LT] = ACTIONS(3059), - [anon_sym_BQUOTE] = ACTIONS(3059), - [sym_comment] = ACTIONS(53), - }, - [2771] = { + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6685), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1832), + [sym_word] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1832), }, - [2772] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6687), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2503] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(6026), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2504] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(6028), + [anon_sym_SEMI_SEMI] = ACTIONS(6030), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(6030), + [anon_sym_LF] = ACTIONS(6032), + [anon_sym_AMP] = ACTIONS(6030), }, - [2773] = { - [sym_file_descriptor] = ACTIONS(3067), - [sym__concat] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_PIPE_AMP] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_AMP_GT] = ACTIONS(3069), - [anon_sym_AMP_GT_GT] = ACTIONS(3067), - [anon_sym_LT_AMP] = ACTIONS(3067), - [anon_sym_GT_AMP] = ACTIONS(3067), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_LT_LT_DASH] = ACTIONS(3067), - [anon_sym_LT_LT_LT] = ACTIONS(3067), - [anon_sym_BQUOTE] = ACTIONS(3067), - [sym_comment] = ACTIONS(53), - }, - [2774] = { + [2505] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(6028), + [anon_sym_SEMI_SEMI] = ACTIONS(6030), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6689), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(6030), + [anon_sym_LF] = ACTIONS(6032), + [anon_sym_AMP] = ACTIONS(6030), }, - [2775] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6691), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2506] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(6026), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2507] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(6034), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(6028), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(6034), + [anon_sym_LF] = ACTIONS(6036), + [anon_sym_AMP] = ACTIONS(6034), }, - [2776] = { + [2508] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(6034), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6028), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6693), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(6034), + [anon_sym_LF] = ACTIONS(6036), + [anon_sym_AMP] = ACTIONS(6034), }, - [2777] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6673), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2509] = { + [sym__concat] = ACTIONS(1864), + [sym_variable_name] = ACTIONS(1864), + [anon_sym_esac] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [anon_sym_PIPE_AMP] = ACTIONS(1866), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), + [anon_sym_BQUOTE] = ACTIONS(1866), + [anon_sym_LT_LPAREN] = ACTIONS(1866), + [anon_sym_GT_LPAREN] = ACTIONS(1866), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1866), + [sym_word] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), }, - [2778] = { - [sym_concatenation] = STATE(2903), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2903), - [anon_sym_RBRACE] = ACTIONS(6695), - [anon_sym_EQ] = ACTIONS(6697), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6697), - [anon_sym_COLON_QMARK] = ACTIONS(6697), - [anon_sym_COLON_DASH] = ACTIONS(6697), - [anon_sym_PERCENT] = ACTIONS(6697), - [anon_sym_DASH] = ACTIONS(6697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2510] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(6038), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2511] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(6040), + [anon_sym_SEMI_SEMI] = ACTIONS(6042), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(6042), + [anon_sym_LF] = ACTIONS(6044), + [anon_sym_AMP] = ACTIONS(6042), }, - [2779] = { - [sym_file_descriptor] = ACTIONS(3083), - [sym__concat] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_PIPE_AMP] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3083), - [anon_sym_AMP_GT] = ACTIONS(3085), - [anon_sym_AMP_GT_GT] = ACTIONS(3083), - [anon_sym_LT_AMP] = ACTIONS(3083), - [anon_sym_GT_AMP] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_LT_LT_DASH] = ACTIONS(3083), - [anon_sym_LT_LT_LT] = ACTIONS(3083), - [anon_sym_BQUOTE] = ACTIONS(3083), - [sym_comment] = ACTIONS(53), - }, - [2780] = { - [sym_concatenation] = STATE(2905), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2905), - [anon_sym_RBRACE] = ACTIONS(6701), - [anon_sym_EQ] = ACTIONS(6703), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6703), - [anon_sym_COLON_QMARK] = ACTIONS(6703), - [anon_sym_COLON_DASH] = ACTIONS(6703), - [anon_sym_PERCENT] = ACTIONS(6703), - [anon_sym_DASH] = ACTIONS(6703), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2512] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(6040), + [anon_sym_SEMI_SEMI] = ACTIONS(6042), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(6042), + [anon_sym_LF] = ACTIONS(6044), + [anon_sym_AMP] = ACTIONS(6042), }, - [2781] = { - [sym__concat] = ACTIONS(5879), - [sym_variable_name] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5879), - [anon_sym_PIPE_AMP] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [sym__special_characters] = ACTIONS(5879), - [anon_sym_DQUOTE] = ACTIONS(5879), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), - [anon_sym_BQUOTE] = ACTIONS(5879), - [anon_sym_LT_LPAREN] = ACTIONS(5879), - [anon_sym_GT_LPAREN] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), - [sym_word] = ACTIONS(5881), - }, - [2782] = { - [sym__concat] = ACTIONS(5883), - [sym_variable_name] = ACTIONS(5883), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5883), - [anon_sym_PIPE_AMP] = ACTIONS(5883), - [anon_sym_AMP_AMP] = ACTIONS(5883), - [anon_sym_PIPE_PIPE] = ACTIONS(5883), - [sym__special_characters] = ACTIONS(5883), - [anon_sym_DQUOTE] = ACTIONS(5883), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), - [anon_sym_BQUOTE] = ACTIONS(5883), - [anon_sym_LT_LPAREN] = ACTIONS(5883), - [anon_sym_GT_LPAREN] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), - [sym_word] = ACTIONS(5885), - }, - [2783] = { - [sym__concat] = ACTIONS(5887), - [sym_variable_name] = ACTIONS(5887), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5887), - [anon_sym_PIPE_AMP] = ACTIONS(5887), - [anon_sym_AMP_AMP] = ACTIONS(5887), - [anon_sym_PIPE_PIPE] = ACTIONS(5887), - [sym__special_characters] = ACTIONS(5887), - [anon_sym_DQUOTE] = ACTIONS(5887), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), - [anon_sym_BQUOTE] = ACTIONS(5887), - [anon_sym_LT_LPAREN] = ACTIONS(5887), - [anon_sym_GT_LPAREN] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), - [sym_word] = ACTIONS(5889), - }, - [2784] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5879), - [anon_sym_PIPE_AMP] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [sym__special_characters] = ACTIONS(5879), - [anon_sym_DQUOTE] = ACTIONS(5879), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), - [anon_sym_BQUOTE] = ACTIONS(5879), - [anon_sym_LT_LPAREN] = ACTIONS(5879), - [anon_sym_GT_LPAREN] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), - [sym_word] = ACTIONS(5881), - }, - [2785] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5883), - [anon_sym_PIPE_AMP] = ACTIONS(5883), - [anon_sym_AMP_AMP] = ACTIONS(5883), - [anon_sym_PIPE_PIPE] = ACTIONS(5883), - [sym__special_characters] = ACTIONS(5883), - [anon_sym_DQUOTE] = ACTIONS(5883), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), - [anon_sym_BQUOTE] = ACTIONS(5883), - [anon_sym_LT_LPAREN] = ACTIONS(5883), - [anon_sym_GT_LPAREN] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), - [sym_word] = ACTIONS(5885), - }, - [2786] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5887), - [anon_sym_PIPE_AMP] = ACTIONS(5887), - [anon_sym_AMP_AMP] = ACTIONS(5887), - [anon_sym_PIPE_PIPE] = ACTIONS(5887), - [sym__special_characters] = ACTIONS(5887), - [anon_sym_DQUOTE] = ACTIONS(5887), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), - [anon_sym_BQUOTE] = ACTIONS(5887), - [anon_sym_LT_LPAREN] = ACTIONS(5887), - [anon_sym_GT_LPAREN] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), - [sym_word] = ACTIONS(5889), - }, - [2787] = { - [sym__heredoc_body_middle] = ACTIONS(5879), - [sym__heredoc_body_end] = ACTIONS(5879), - [anon_sym_DOLLAR] = ACTIONS(5881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - }, - [2788] = { - [sym__heredoc_body_middle] = ACTIONS(5883), - [sym__heredoc_body_end] = ACTIONS(5883), - [anon_sym_DOLLAR] = ACTIONS(5885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - }, - [2789] = { - [sym__heredoc_body_middle] = ACTIONS(5887), - [sym__heredoc_body_end] = ACTIONS(5887), - [anon_sym_DOLLAR] = ACTIONS(5889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - }, - [2790] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_RPAREN] = ACTIONS(5879), - [sym__special_characters] = ACTIONS(5879), - [anon_sym_DQUOTE] = ACTIONS(5879), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5879), - [anon_sym_BQUOTE] = ACTIONS(5879), - [anon_sym_LT_LPAREN] = ACTIONS(5879), - [anon_sym_GT_LPAREN] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5879), - }, - [2791] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_RPAREN] = ACTIONS(5883), - [sym__special_characters] = ACTIONS(5883), - [anon_sym_DQUOTE] = ACTIONS(5883), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5883), - [anon_sym_BQUOTE] = ACTIONS(5883), - [anon_sym_LT_LPAREN] = ACTIONS(5883), - [anon_sym_GT_LPAREN] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5883), - }, - [2792] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_RPAREN] = ACTIONS(5887), - [sym__special_characters] = ACTIONS(5887), - [anon_sym_DQUOTE] = ACTIONS(5887), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5887), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5887), - [anon_sym_BQUOTE] = ACTIONS(5887), - [anon_sym_LT_LPAREN] = ACTIONS(5887), - [anon_sym_GT_LPAREN] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5887), - }, - [2793] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5202), - [anon_sym_EQ_EQ] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5202), - [anon_sym_GT] = ACTIONS(5202), - [anon_sym_BANG_EQ] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5202), - }, - [2794] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5206), - [anon_sym_EQ_EQ] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5206), - [anon_sym_GT] = ACTIONS(5206), - [anon_sym_BANG_EQ] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5206), - }, - [2795] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [anon_sym_EQ_TILDE] = ACTIONS(5210), - [anon_sym_EQ_EQ] = ACTIONS(5210), - [anon_sym_EQ] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5210), - [anon_sym_GT] = ACTIONS(5210), - [anon_sym_BANG_EQ] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5210), - }, - [2796] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_EQ_TILDE] = ACTIONS(5214), - [anon_sym_EQ_EQ] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5214), - [anon_sym_BANG_EQ] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5214), - }, - [2797] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2513] = { + [sym__concat] = ACTIONS(1648), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, - [2798] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_EQ_TILDE] = ACTIONS(5220), - [anon_sym_EQ_EQ] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5220), - [anon_sym_GT] = ACTIONS(5220), - [anon_sym_BANG_EQ] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5220), - }, - [2799] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6709), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2514] = { + [aux_sym_concatenation_repeat1] = STATE(2514), + [sym__concat] = ACTIONS(6046), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1650), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), }, - [2800] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_PIPE_PIPE] = ACTIONS(5226), - [anon_sym_EQ_TILDE] = ACTIONS(5226), - [anon_sym_EQ_EQ] = ACTIONS(5226), - [anon_sym_EQ] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5226), - [anon_sym_GT] = ACTIONS(5226), - [anon_sym_BANG_EQ] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5226), - }, - [2801] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6711), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2515] = { + [sym__concat] = ACTIONS(1655), + [anon_sym_esac] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [anon_sym_PIPE_AMP] = ACTIONS(1657), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(1657), + [sym__special_characters] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1657), + [sym_raw_string] = ACTIONS(1657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [anon_sym_LT_LPAREN] = ACTIONS(1657), + [anon_sym_GT_LPAREN] = ACTIONS(1657), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1657), + [sym_word] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), }, - [2802] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_EQ_TILDE] = ACTIONS(5232), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(5234), - [anon_sym_LT] = ACTIONS(5232), - [anon_sym_GT] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5232), - }, - [2803] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_EQ_TILDE] = ACTIONS(5236), - [anon_sym_EQ_EQ] = ACTIONS(5236), - [anon_sym_EQ] = ACTIONS(5238), - [anon_sym_LT] = ACTIONS(5236), - [anon_sym_GT] = ACTIONS(5236), - [anon_sym_BANG_EQ] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5236), - }, - [2804] = { - [aux_sym_concatenation_repeat1] = STATE(2909), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(1175), - [sym_variable_name] = ACTIONS(731), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [sym__special_characters] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [2516] = { + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(693), + [sym__string_content] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_0] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), }, - [2805] = { - [sym_file_redirect] = STATE(2705), - [sym_heredoc_redirect] = STATE(2705), - [sym_heredoc_body] = STATE(1140), - [sym_herestring_redirect] = STATE(2705), - [aux_sym_while_statement_repeat1] = STATE(2705), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5679), - [anon_sym_esac] = ACTIONS(2445), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_SEMI_SEMI] = ACTIONS(2445), - [anon_sym_PIPE_AMP] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_PIPE_PIPE] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_AMP_GT] = ACTIONS(5683), - [anon_sym_AMP_GT_GT] = ACTIONS(5683), - [anon_sym_LT_AMP] = ACTIONS(5683), - [anon_sym_GT_AMP] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(5685), + [2517] = { + [sym_concatenation] = STATE(2618), + [sym_string] = STATE(2617), + [sym_simple_expansion] = STATE(2617), + [sym_string_expansion] = STATE(2617), + [sym_expansion] = STATE(2617), + [sym_command_substitution] = STATE(2617), + [sym_process_substitution] = STATE(2617), + [anon_sym_RBRACE] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6053), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6055), + }, + [2518] = { + [sym__concat] = ACTIONS(1748), + [anon_sym_esac] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_SEMI_SEMI] = ACTIONS(1750), + [anon_sym_PIPE_AMP] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [sym__special_characters] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1750), + [sym_raw_string] = ACTIONS(1750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), + [anon_sym_BQUOTE] = ACTIONS(1750), + [anon_sym_LT_LPAREN] = ACTIONS(1750), + [anon_sym_GT_LPAREN] = ACTIONS(1750), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2445), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1750), + [sym_word] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LF] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1750), }, - [2806] = { - [sym_compound_statement] = STATE(2910), - [anon_sym_LBRACE] = ACTIONS(483), + [2519] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6057), + }, + [2520] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2521] = { + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(6061), [sym_comment] = ACTIONS(53), }, - [2807] = { - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_GT] = ACTIONS(6713), - [anon_sym_GT_GT] = ACTIONS(6715), - [anon_sym_AMP_GT] = ACTIONS(6713), - [anon_sym_AMP_GT_GT] = ACTIONS(6715), - [anon_sym_LT_AMP] = ACTIONS(6715), - [anon_sym_GT_AMP] = ACTIONS(6715), - [sym_comment] = ACTIONS(53), - }, - [2808] = { - [sym_concatenation] = STATE(1186), - [sym_string] = STATE(2913), - [sym_simple_expansion] = STATE(2913), - [sym_string_expansion] = STATE(2913), - [sym_expansion] = STATE(2913), - [sym_command_substitution] = STATE(2913), - [sym_process_substitution] = STATE(2913), - [sym__special_characters] = ACTIONS(6717), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(6719), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1217), - [anon_sym_LT_LPAREN] = ACTIONS(1219), - [anon_sym_GT_LPAREN] = ACTIONS(1219), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6719), - }, - [2809] = { - [anon_sym_LT] = ACTIONS(6721), - [anon_sym_GT] = ACTIONS(6721), - [anon_sym_GT_GT] = ACTIONS(6723), - [anon_sym_AMP_GT] = ACTIONS(6721), - [anon_sym_AMP_GT_GT] = ACTIONS(6723), - [anon_sym_LT_AMP] = ACTIONS(6723), - [anon_sym_GT_AMP] = ACTIONS(6723), - [sym_comment] = ACTIONS(53), - }, - [2810] = { - [sym_concatenation] = STATE(1237), - [sym_string] = STATE(2916), - [sym_simple_expansion] = STATE(2916), - [sym_string_expansion] = STATE(2916), - [sym_expansion] = STATE(2916), - [sym_command_substitution] = STATE(2916), - [sym_process_substitution] = STATE(2916), - [sym__special_characters] = ACTIONS(6725), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(6727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6727), - }, - [2811] = { - [sym_concatenation] = STATE(1241), - [sym_string] = STATE(2918), - [sym_simple_expansion] = STATE(2918), - [sym_string_expansion] = STATE(2918), - [sym_expansion] = STATE(2918), - [sym_command_substitution] = STATE(2918), - [sym_process_substitution] = STATE(2918), - [sym__special_characters] = ACTIONS(6729), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(6731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6731), - }, - [2812] = { - [sym_file_redirect] = STATE(2919), - [sym_heredoc_redirect] = STATE(2919), - [sym_herestring_redirect] = STATE(2919), - [aux_sym_while_statement_repeat1] = STATE(2919), - [sym_file_descriptor] = ACTIONS(6416), - [anon_sym_esac] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_SEMI_SEMI] = ACTIONS(2690), - [anon_sym_PIPE_AMP] = ACTIONS(2690), - [anon_sym_AMP_AMP] = ACTIONS(2690), - [anon_sym_PIPE_PIPE] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(6418), - [anon_sym_GT] = ACTIONS(6418), - [anon_sym_GT_GT] = ACTIONS(6418), - [anon_sym_AMP_GT] = ACTIONS(6418), - [anon_sym_AMP_GT_GT] = ACTIONS(6418), - [anon_sym_LT_AMP] = ACTIONS(6418), - [anon_sym_GT_AMP] = ACTIONS(6418), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_LT_LT_DASH] = ACTIONS(1449), - [anon_sym_LT_LT_LT] = ACTIONS(6420), + [2522] = { + [sym_concatenation] = STATE(2624), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2624), + [anon_sym_RBRACE] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_COLON_QMARK] = ACTIONS(6065), + [anon_sym_COLON_DASH] = ACTIONS(6065), + [anon_sym_PERCENT] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_LF] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2690), + [sym_word] = ACTIONS(759), }, - [2813] = { - [sym_variable_name] = ACTIONS(1151), - [anon_sym_esac] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_SEMI_SEMI] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [sym__special_characters] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_LT_LPAREN] = ACTIONS(1153), - [anon_sym_GT_LPAREN] = ACTIONS(1153), + [2523] = { + [sym_concatenation] = STATE(2627), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2627), + [anon_sym_RBRACE] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_COLON_QMARK] = ACTIONS(6073), + [anon_sym_COLON_DASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), - [sym_word] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), + [sym_word] = ACTIONS(759), }, - [2814] = { - [sym_concatenation] = STATE(2921), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(2921), - [anon_sym_RPAREN] = ACTIONS(6733), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), - }, - [2815] = { - [aux_sym_concatenation_repeat1] = STATE(2655), - [sym__concat] = ACTIONS(6125), - [sym_variable_name] = ACTIONS(1173), - [anon_sym_esac] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_SEMI_SEMI] = ACTIONS(1177), - [anon_sym_PIPE_AMP] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [sym__special_characters] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [sym_raw_string] = ACTIONS(1177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1177), - [anon_sym_LT_LPAREN] = ACTIONS(1177), - [anon_sym_GT_LPAREN] = ACTIONS(1177), + [2524] = { + [sym_concatenation] = STATE(2629), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2629), + [anon_sym_RBRACE] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6079), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(6083), + [anon_sym_COLON] = ACTIONS(6079), + [anon_sym_COLON_QMARK] = ACTIONS(6079), + [anon_sym_COLON_DASH] = ACTIONS(6079), + [anon_sym_PERCENT] = ACTIONS(6079), + [anon_sym_DASH] = ACTIONS(6079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1177), - [sym_word] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1177), + [sym_word] = ACTIONS(759), }, - [2816] = { - [aux_sym_concatenation_repeat1] = STATE(2655), - [sym__concat] = ACTIONS(6125), - [sym_variable_name] = ACTIONS(1151), - [anon_sym_esac] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_SEMI_SEMI] = ACTIONS(1153), - [anon_sym_PIPE_AMP] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [sym__special_characters] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym_raw_string] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_LT_LPAREN] = ACTIONS(1153), - [anon_sym_GT_LPAREN] = ACTIONS(1153), + [2525] = { + [sym__concat] = ACTIONS(1816), + [anon_sym_esac] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_SEMI_SEMI] = ACTIONS(1818), + [anon_sym_PIPE_AMP] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1818), + [anon_sym_PIPE_PIPE] = ACTIONS(1818), + [sym__special_characters] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym_raw_string] = ACTIONS(1818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT_LPAREN] = ACTIONS(1818), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1153), - [sym_word] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1818), + [sym_word] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), }, - [2817] = { - [sym__concat] = ACTIONS(1754), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), + [2526] = { [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [sym_regex_without_right_brace] = ACTIONS(6085), }, - [2818] = { - [aux_sym_concatenation_repeat1] = STATE(2818), - [sym__concat] = ACTIONS(6735), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), + [2527] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6087), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), + [sym_word] = ACTIONS(759), }, - [2819] = { - [sym__concat] = ACTIONS(1761), - [sym_variable_name] = ACTIONS(1761), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), + [2528] = { + [sym__concat] = ACTIONS(1824), + [anon_sym_esac] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_SEMI_SEMI] = ACTIONS(1826), + [anon_sym_PIPE_AMP] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [sym__special_characters] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [sym_raw_string] = ACTIONS(1826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_LT_LPAREN] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1826), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), - [sym_word] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1826), + [sym_word] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_LF] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), }, - [2820] = { - [anon_sym_DQUOTE] = ACTIONS(6738), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), + [2529] = { [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [sym_regex_without_right_brace] = ACTIONS(6089), }, - [2821] = { - [sym_concatenation] = STATE(2926), - [sym_string] = STATE(2925), - [sym_simple_expansion] = STATE(2925), - [sym_string_expansion] = STATE(2925), - [sym_expansion] = STATE(2925), - [sym_command_substitution] = STATE(2925), - [sym_process_substitution] = STATE(2925), - [anon_sym_RBRACE] = ACTIONS(6740), - [sym__special_characters] = ACTIONS(6742), + [2530] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2531] = { + [sym__concat] = ACTIONS(1830), + [anon_sym_esac] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [anon_sym_PIPE_AMP] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(6744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1832), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1832), + [sym_word] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1832), + }, + [2532] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(6091), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6744), + [sym_word] = ACTIONS(819), }, - [2822] = { - [sym__concat] = ACTIONS(1846), - [sym_variable_name] = ACTIONS(1846), - [anon_sym_esac] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_SEMI_SEMI] = ACTIONS(1848), - [anon_sym_PIPE_AMP] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [sym__special_characters] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), - [anon_sym_BQUOTE] = ACTIONS(1848), - [anon_sym_LT_LPAREN] = ACTIONS(1848), - [anon_sym_GT_LPAREN] = ACTIONS(1848), + [2533] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(6093), + [anon_sym_SEMI_SEMI] = ACTIONS(6095), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), - [sym_word] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6095), + [anon_sym_LF] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6095), }, - [2823] = { + [2534] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(6093), + [anon_sym_SEMI_SEMI] = ACTIONS(6095), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6746), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(6095), + [anon_sym_LF] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6095), }, - [2824] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6748), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2825] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(6750), + [2535] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(6091), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), }, - [2826] = { - [sym_concatenation] = STATE(2932), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2932), - [anon_sym_RBRACE] = ACTIONS(6752), - [anon_sym_EQ] = ACTIONS(6754), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6758), - [anon_sym_COLON] = ACTIONS(6754), - [anon_sym_COLON_QMARK] = ACTIONS(6754), - [anon_sym_COLON_DASH] = ACTIONS(6754), - [anon_sym_PERCENT] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2536] = { + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(6099), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(6093), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(6099), + [anon_sym_LF] = ACTIONS(6101), + [anon_sym_AMP] = ACTIONS(6099), }, - [2827] = { - [sym_concatenation] = STATE(2935), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2935), - [anon_sym_RBRACE] = ACTIONS(6760), - [anon_sym_EQ] = ACTIONS(6762), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6766), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_COLON_QMARK] = ACTIONS(6762), - [anon_sym_COLON_DASH] = ACTIONS(6762), - [anon_sym_PERCENT] = ACTIONS(6762), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2537] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_SEMI_SEMI] = ACTIONS(6099), + [anon_sym_PIPE_AMP] = ACTIONS(795), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6093), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(6099), + [anon_sym_LF] = ACTIONS(6101), + [anon_sym_AMP] = ACTIONS(6099), }, - [2828] = { - [sym_concatenation] = STATE(2937), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2937), - [anon_sym_RBRACE] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6768), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6772), - [anon_sym_COLON] = ACTIONS(6768), - [anon_sym_COLON_QMARK] = ACTIONS(6768), - [anon_sym_COLON_DASH] = ACTIONS(6768), - [anon_sym_PERCENT] = ACTIONS(6768), - [anon_sym_DASH] = ACTIONS(6768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2538] = { + [sym__concat] = ACTIONS(1864), + [anon_sym_esac] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [anon_sym_PIPE_AMP] = ACTIONS(1866), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), + [anon_sym_BQUOTE] = ACTIONS(1866), + [anon_sym_LT_LPAREN] = ACTIONS(1866), + [anon_sym_GT_LPAREN] = ACTIONS(1866), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1866), + [sym_word] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), }, - [2829] = { - [sym__concat] = ACTIONS(1914), - [sym_variable_name] = ACTIONS(1914), - [anon_sym_esac] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), - [sym_word] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), - }, - [2830] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6774), - }, - [2831] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6776), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2832] = { - [sym__concat] = ACTIONS(1922), - [sym_variable_name] = ACTIONS(1922), - [anon_sym_esac] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [sym__special_characters] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), - [sym_word] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1924), - }, - [2833] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6778), - }, - [2834] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2835] = { - [sym__concat] = ACTIONS(2066), - [sym_variable_name] = ACTIONS(2066), - [anon_sym_esac] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [anon_sym_LT_LPAREN] = ACTIONS(2068), - [anon_sym_GT_LPAREN] = ACTIONS(2068), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), - [sym_word] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), - }, - [2836] = { - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(2132), - [anon_sym_esac] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), - [anon_sym_BQUOTE] = ACTIONS(2134), - [anon_sym_LT_LPAREN] = ACTIONS(2134), - [anon_sym_GT_LPAREN] = ACTIONS(2134), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), - [sym_word] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), - }, - [2837] = { - [sym__concat] = ACTIONS(1754), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2838] = { - [aux_sym_concatenation_repeat1] = STATE(2838), - [sym__concat] = ACTIONS(6780), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1756), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2839] = { - [sym__concat] = ACTIONS(1761), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1763), - [sym_word] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), - }, - [2840] = { - [anon_sym_DQUOTE] = ACTIONS(6783), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym__string_content] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), - }, - [2841] = { - [sym_concatenation] = STATE(2945), - [sym_string] = STATE(2944), - [sym_simple_expansion] = STATE(2944), - [sym_string_expansion] = STATE(2944), - [sym_expansion] = STATE(2944), - [sym_command_substitution] = STATE(2944), - [sym_process_substitution] = STATE(2944), - [anon_sym_RBRACE] = ACTIONS(6785), - [sym__special_characters] = ACTIONS(6787), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(6789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), + [2539] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(6103), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6789), + [sym_word] = ACTIONS(819), }, - [2842] = { - [sym__concat] = ACTIONS(1846), - [anon_sym_esac] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_SEMI_SEMI] = ACTIONS(1848), - [anon_sym_PIPE_AMP] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [sym__special_characters] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [sym_raw_string] = ACTIONS(1848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1848), - [anon_sym_BQUOTE] = ACTIONS(1848), - [anon_sym_LT_LPAREN] = ACTIONS(1848), - [anon_sym_GT_LPAREN] = ACTIONS(1848), + [2540] = { + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(6105), + [anon_sym_SEMI_SEMI] = ACTIONS(6107), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1848), - [sym_word] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_LF] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6107), + [anon_sym_LF] = ACTIONS(6109), + [anon_sym_AMP] = ACTIONS(6107), }, - [2843] = { + [2541] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(6105), + [anon_sym_SEMI_SEMI] = ACTIONS(6107), + [anon_sym_PIPE_AMP] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6791), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(6107), + [anon_sym_LF] = ACTIONS(6109), + [anon_sym_AMP] = ACTIONS(6107), }, - [2844] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6793), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2542] = { + [sym_file_redirect] = STATE(1355), + [sym_file_descriptor] = ACTIONS(5670), + [anon_sym_esac] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_SEMI_SEMI] = ACTIONS(2330), + [anon_sym_PIPE_AMP] = ACTIONS(2330), + [anon_sym_AMP_AMP] = ACTIONS(2330), + [anon_sym_PIPE_PIPE] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(5672), + [anon_sym_GT] = ACTIONS(5672), + [anon_sym_GT_GT] = ACTIONS(5672), + [anon_sym_AMP_GT] = ACTIONS(5672), + [anon_sym_AMP_GT_GT] = ACTIONS(5672), + [anon_sym_LT_AMP] = ACTIONS(5672), + [anon_sym_GT_AMP] = ACTIONS(5672), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_LF] = ACTIONS(2332), + [anon_sym_AMP] = ACTIONS(2330), }, - [2845] = { - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(6795), - [sym_comment] = ACTIONS(53), - }, - [2846] = { - [sym_concatenation] = STATE(2951), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2951), - [anon_sym_RBRACE] = ACTIONS(6797), - [anon_sym_EQ] = ACTIONS(6799), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6801), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6803), - [anon_sym_COLON] = ACTIONS(6799), - [anon_sym_COLON_QMARK] = ACTIONS(6799), - [anon_sym_COLON_DASH] = ACTIONS(6799), - [anon_sym_PERCENT] = ACTIONS(6799), - [anon_sym_DASH] = ACTIONS(6799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2847] = { - [sym_concatenation] = STATE(2954), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2954), - [anon_sym_RBRACE] = ACTIONS(6805), - [anon_sym_EQ] = ACTIONS(6807), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6809), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6811), - [anon_sym_COLON] = ACTIONS(6807), - [anon_sym_COLON_QMARK] = ACTIONS(6807), - [anon_sym_COLON_DASH] = ACTIONS(6807), - [anon_sym_PERCENT] = ACTIONS(6807), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2848] = { - [sym_concatenation] = STATE(2956), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2956), - [anon_sym_RBRACE] = ACTIONS(6785), - [anon_sym_EQ] = ACTIONS(6813), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6815), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(6817), - [anon_sym_COLON] = ACTIONS(6813), - [anon_sym_COLON_QMARK] = ACTIONS(6813), - [anon_sym_COLON_DASH] = ACTIONS(6813), - [anon_sym_PERCENT] = ACTIONS(6813), - [anon_sym_DASH] = ACTIONS(6813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2849] = { - [sym__concat] = ACTIONS(1914), - [anon_sym_esac] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1916), - [sym_word] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), - }, - [2850] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6819), - }, - [2851] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6821), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2852] = { - [sym__concat] = ACTIONS(1922), - [anon_sym_esac] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [sym__special_characters] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1924), - [sym_word] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1924), - }, - [2853] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6823), - }, - [2854] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6785), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2855] = { - [sym__concat] = ACTIONS(2066), - [anon_sym_esac] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [anon_sym_PIPE_AMP] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [sym__special_characters] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym_raw_string] = ACTIONS(2068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [anon_sym_LT_LPAREN] = ACTIONS(2068), - [anon_sym_GT_LPAREN] = ACTIONS(2068), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), - [sym_word] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), - }, - [2856] = { - [sym__concat] = ACTIONS(2132), - [anon_sym_esac] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2134), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2134), - [anon_sym_BQUOTE] = ACTIONS(2134), - [anon_sym_LT_LPAREN] = ACTIONS(2134), - [anon_sym_GT_LPAREN] = ACTIONS(2134), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), - [sym_word] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), - }, - [2857] = { - [sym_file_redirect] = STATE(1520), - [sym_file_descriptor] = ACTIONS(6412), - [anon_sym_esac] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_SEMI_SEMI] = ACTIONS(2544), - [anon_sym_PIPE_AMP] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(6414), - [anon_sym_GT] = ACTIONS(6414), - [anon_sym_GT_GT] = ACTIONS(6414), - [anon_sym_AMP_GT] = ACTIONS(6414), - [anon_sym_AMP_GT_GT] = ACTIONS(6414), - [anon_sym_LT_AMP] = ACTIONS(6414), - [anon_sym_GT_AMP] = ACTIONS(6414), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LF] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(2544), - }, - [2858] = { - [aux_sym_concatenation_repeat1] = STATE(2860), - [sym__simple_heredoc_body] = ACTIONS(1133), - [sym__heredoc_body_beginning] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1133), + [2543] = { + [aux_sym_concatenation_repeat1] = STATE(2545), + [sym__simple_heredoc_body] = ACTIONS(955), + [sym__heredoc_body_beginning] = ACTIONS(955), + [sym_file_descriptor] = ACTIONS(955), [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1135), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1135), - [anon_sym_LT_AMP] = ACTIONS(1135), - [anon_sym_GT_AMP] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1135), - [anon_sym_LT_LT_LT] = ACTIONS(1135), + [anon_sym_esac] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LF] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), }, - [2859] = { - [aux_sym_concatenation_repeat1] = STATE(2860), - [sym__simple_heredoc_body] = ACTIONS(1137), - [sym__heredoc_body_beginning] = ACTIONS(1137), - [sym_file_descriptor] = ACTIONS(1137), + [2544] = { + [aux_sym_concatenation_repeat1] = STATE(2545), + [sym__simple_heredoc_body] = ACTIONS(959), + [sym__heredoc_body_beginning] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1139), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1139), - [anon_sym_LT_AMP] = ACTIONS(1139), - [anon_sym_GT_AMP] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), + [anon_sym_esac] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), }, - [2860] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), + [2545] = { + [aux_sym_concatenation_repeat1] = STATE(2638), + [sym__simple_heredoc_body] = ACTIONS(683), + [sym__heredoc_body_beginning] = ACTIONS(683), + [sym_file_descriptor] = ACTIONS(683), [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), + [anon_sym_esac] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), }, - [2861] = { - [sym_file_redirect] = STATE(2705), - [sym_heredoc_redirect] = STATE(2705), - [sym_heredoc_body] = STATE(1536), - [sym_herestring_redirect] = STATE(2705), - [aux_sym_while_statement_repeat1] = STATE(2705), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5679), - [anon_sym_esac] = ACTIONS(3525), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_SEMI_SEMI] = ACTIONS(3525), - [anon_sym_PIPE_AMP] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_AMP_GT] = ACTIONS(5683), - [anon_sym_AMP_GT_GT] = ACTIONS(5683), - [anon_sym_LT_AMP] = ACTIONS(5683), - [anon_sym_GT_AMP] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_LT_LT_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(5685), + [2546] = { + [sym_file_redirect] = STATE(2400), + [sym_heredoc_redirect] = STATE(2400), + [sym_heredoc_body] = STATE(1371), + [sym_herestring_redirect] = STATE(2400), + [aux_sym_while_statement_repeat1] = STATE(2400), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(5086), + [anon_sym_esac] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5090), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_LT_LT_DASH] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(5092), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_LF] = ACTIONS(3527), - [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), }, - [2862] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_esac] = ACTIONS(6825), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6827), - [anon_sym_DQUOTE] = ACTIONS(6829), - [anon_sym_DOLLAR] = ACTIONS(6827), - [sym_raw_string] = ACTIONS(6829), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6829), - [anon_sym_BQUOTE] = ACTIONS(6829), - [anon_sym_LT_LPAREN] = ACTIONS(6829), - [anon_sym_GT_LPAREN] = ACTIONS(6829), + [2547] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(6111), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(6113), + [anon_sym_DQUOTE] = ACTIONS(6115), + [anon_sym_DOLLAR] = ACTIONS(6113), + [sym_raw_string] = ACTIONS(6115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6115), + [anon_sym_BQUOTE] = ACTIONS(6115), + [anon_sym_LT_LPAREN] = ACTIONS(6115), + [anon_sym_GT_LPAREN] = ACTIONS(6115), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6827), + [sym_word] = ACTIONS(6113), }, - [2863] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_esac] = ACTIONS(6831), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6833), - [anon_sym_DQUOTE] = ACTIONS(6835), - [anon_sym_DOLLAR] = ACTIONS(6833), - [sym_raw_string] = ACTIONS(6835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6835), - [anon_sym_BQUOTE] = ACTIONS(6835), - [anon_sym_LT_LPAREN] = ACTIONS(6835), - [anon_sym_GT_LPAREN] = ACTIONS(6835), + [2548] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(6117), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(6119), + [anon_sym_DQUOTE] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6119), + [sym_raw_string] = ACTIONS(6121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6121), + [anon_sym_BQUOTE] = ACTIONS(6121), + [anon_sym_LT_LPAREN] = ACTIONS(6121), + [anon_sym_GT_LPAREN] = ACTIONS(6121), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6833), + [sym_word] = ACTIONS(6119), }, - [2864] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6181), - [anon_sym_DQUOTE] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [sym_raw_string] = ACTIONS(6183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6183), - [anon_sym_BQUOTE] = ACTIONS(6183), - [anon_sym_LT_LPAREN] = ACTIONS(6183), - [anon_sym_GT_LPAREN] = ACTIONS(6183), + [2549] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(5500), + [anon_sym_DQUOTE] = ACTIONS(5502), + [anon_sym_DOLLAR] = ACTIONS(5500), + [sym_raw_string] = ACTIONS(5502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5502), + [anon_sym_BQUOTE] = ACTIONS(5502), + [anon_sym_LT_LPAREN] = ACTIONS(5502), + [anon_sym_GT_LPAREN] = ACTIONS(5502), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6181), + [sym_word] = ACTIONS(5500), }, - [2865] = { - [sym__special_characters] = ACTIONS(6183), - [anon_sym_DQUOTE] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [sym_raw_string] = ACTIONS(6183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6183), - [anon_sym_BQUOTE] = ACTIONS(6183), - [anon_sym_LT_LPAREN] = ACTIONS(6183), - [anon_sym_GT_LPAREN] = ACTIONS(6183), + [2550] = { + [sym__special_characters] = ACTIONS(5502), + [anon_sym_DQUOTE] = ACTIONS(5502), + [anon_sym_DOLLAR] = ACTIONS(5500), + [sym_raw_string] = ACTIONS(5502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5502), + [anon_sym_BQUOTE] = ACTIONS(5502), + [anon_sym_LT_LPAREN] = ACTIONS(5502), + [anon_sym_GT_LPAREN] = ACTIONS(5502), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6183), + [sym_word] = ACTIONS(5502), }, - [2866] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6837), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), + [2551] = { + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(6123), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2867] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6837), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), + [2552] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(6123), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2868] = { - [sym__terminated_statement] = STATE(2868), + [2553] = { + [sym__terminated_statement] = STATE(2553), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -71787,90 +68217,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_name] = STATE(27), [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2868), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(1043), - [sym_variable_name] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_SEMI_SEMI] = ACTIONS(1049), - [anon_sym_function] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1075), - [anon_sym_declare] = ACTIONS(1078), - [anon_sym_typeset] = ACTIONS(1078), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_readonly] = ACTIONS(1078), - [anon_sym_local] = ACTIONS(1078), - [anon_sym_unset] = ACTIONS(1081), - [anon_sym_unsetenv] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1087), - [anon_sym_LT_AMP] = ACTIONS(1087), - [anon_sym_GT_AMP] = ACTIONS(1087), - [sym__special_characters] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1096), - [sym_raw_string] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1108), - [anon_sym_LT_LPAREN] = ACTIONS(1111), - [anon_sym_GT_LPAREN] = ACTIONS(1111), + [aux_sym_program_repeat1] = STATE(2553), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(865), + [sym_variable_name] = ACTIONS(868), + [anon_sym_for] = ACTIONS(873), + [anon_sym_while] = ACTIONS(876), + [anon_sym_if] = ACTIONS(879), + [anon_sym_case] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(871), + [anon_sym_function] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(897), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_typeset] = ACTIONS(900), + [anon_sym_export] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_local] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(903), + [anon_sym_unsetenv] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_AMP_GT] = ACTIONS(906), + [anon_sym_AMP_GT_GT] = ACTIONS(909), + [anon_sym_LT_AMP] = ACTIONS(909), + [anon_sym_GT_AMP] = ACTIONS(909), + [sym__special_characters] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(918), + [sym_raw_string] = ACTIONS(921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(930), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1114), + [sym_word] = ACTIONS(936), }, - [2869] = { - [sym__terminated_statement] = STATE(2868), - [sym_for_statement] = STATE(2963), - [sym_c_style_for_statement] = STATE(2963), - [sym_while_statement] = STATE(2963), - [sym_if_statement] = STATE(2963), - [sym_case_statement] = STATE(2963), - [sym_function_definition] = STATE(2963), - [sym_subshell] = STATE(2963), - [sym_pipeline] = STATE(2963), - [sym_list] = STATE(2963), - [sym_negated_command] = STATE(2963), - [sym_test_command] = STATE(2963), - [sym_declaration_command] = STATE(2963), - [sym_unset_command] = STATE(2963), - [sym_command] = STATE(2963), + [2554] = { + [sym__terminated_statement] = STATE(2553), + [sym_for_statement] = STATE(2641), + [sym_c_style_for_statement] = STATE(2641), + [sym_while_statement] = STATE(2641), + [sym_if_statement] = STATE(2641), + [sym_case_statement] = STATE(2641), + [sym_function_definition] = STATE(2641), + [sym_subshell] = STATE(2641), + [sym_pipeline] = STATE(2641), + [sym_list] = STATE(2641), + [sym_negated_command] = STATE(2641), + [sym_test_command] = STATE(2641), + [sym_declaration_command] = STATE(2641), + [sym_unset_command] = STATE(2641), + [sym_command] = STATE(2641), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2964), + [sym_variable_assignment] = STATE(2642), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2868), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(2553), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6839), + [anon_sym_SEMI_SEMI] = ACTIONS(6125), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -71902,135 +68332,135 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2870] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6207), - [anon_sym_DQUOTE] = ACTIONS(6209), - [anon_sym_DOLLAR] = ACTIONS(6207), - [sym_raw_string] = ACTIONS(6209), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6209), - [anon_sym_BQUOTE] = ACTIONS(6209), - [anon_sym_LT_LPAREN] = ACTIONS(6209), - [anon_sym_GT_LPAREN] = ACTIONS(6209), + [2555] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(5526), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5528), + [anon_sym_BQUOTE] = ACTIONS(5528), + [anon_sym_LT_LPAREN] = ACTIONS(5528), + [anon_sym_GT_LPAREN] = ACTIONS(5528), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6207), + [sym_word] = ACTIONS(5526), }, - [2871] = { - [sym__special_characters] = ACTIONS(6209), - [anon_sym_DQUOTE] = ACTIONS(6209), - [anon_sym_DOLLAR] = ACTIONS(6207), - [sym_raw_string] = ACTIONS(6209), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6209), - [anon_sym_BQUOTE] = ACTIONS(6209), - [anon_sym_LT_LPAREN] = ACTIONS(6209), - [anon_sym_GT_LPAREN] = ACTIONS(6209), + [2556] = { + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5528), + [anon_sym_BQUOTE] = ACTIONS(5528), + [anon_sym_LT_LPAREN] = ACTIONS(5528), + [anon_sym_GT_LPAREN] = ACTIONS(5528), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6209), + [sym_word] = ACTIONS(5528), }, - [2872] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6841), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), + [2557] = { + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(6127), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2873] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6841), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), + [2558] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(6127), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), }, - [2874] = { - [sym__terminated_statement] = STATE(2868), - [sym_for_statement] = STATE(2967), - [sym_c_style_for_statement] = STATE(2967), - [sym_while_statement] = STATE(2967), - [sym_if_statement] = STATE(2967), - [sym_case_statement] = STATE(2967), - [sym_function_definition] = STATE(2967), - [sym_subshell] = STATE(2967), - [sym_pipeline] = STATE(2967), - [sym_list] = STATE(2967), - [sym_negated_command] = STATE(2967), - [sym_test_command] = STATE(2967), - [sym_declaration_command] = STATE(2967), - [sym_unset_command] = STATE(2967), - [sym_command] = STATE(2967), + [2559] = { + [sym__terminated_statement] = STATE(2553), + [sym_for_statement] = STATE(2645), + [sym_c_style_for_statement] = STATE(2645), + [sym_while_statement] = STATE(2645), + [sym_if_statement] = STATE(2645), + [sym_case_statement] = STATE(2645), + [sym_function_definition] = STATE(2645), + [sym_subshell] = STATE(2645), + [sym_pipeline] = STATE(2645), + [sym_list] = STATE(2645), + [sym_negated_command] = STATE(2645), + [sym_test_command] = STATE(2645), + [sym_declaration_command] = STATE(2645), + [sym_unset_command] = STATE(2645), + [sym_command] = STATE(2645), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2968), + [sym_variable_assignment] = STATE(2646), [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), [sym_string] = STATE(19), [sym_simple_expansion] = STATE(19), [sym_string_expansion] = STATE(19), [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2868), - [aux_sym_command_repeat1] = STATE(32), + [aux_sym_program_repeat1] = STATE(2553), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6843), + [anon_sym_SEMI_SEMI] = ACTIONS(6129), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -72062,4030 +68492,3805 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2875] = { - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [anon_sym_PIPE_AMP] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5204), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5204), - [anon_sym_LT_AMP] = ACTIONS(5204), - [anon_sym_GT_AMP] = ACTIONS(5204), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_LT_LT_DASH] = ACTIONS(5204), - [anon_sym_LT_LT_LT] = ACTIONS(5204), + [2560] = { + [sym_file_descriptor] = ACTIONS(4756), + [sym__concat] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4758), + [anon_sym_SEMI_SEMI] = ACTIONS(4758), + [anon_sym_PIPE_AMP] = ACTIONS(4758), + [anon_sym_AMP_AMP] = ACTIONS(4758), + [anon_sym_PIPE_PIPE] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_GT_GT] = ACTIONS(4758), + [anon_sym_AMP_GT] = ACTIONS(4758), + [anon_sym_AMP_GT_GT] = ACTIONS(4758), + [anon_sym_LT_AMP] = ACTIONS(4758), + [anon_sym_GT_AMP] = ACTIONS(4758), + [anon_sym_LT_LT] = ACTIONS(4758), + [anon_sym_LT_LT_DASH] = ACTIONS(4758), + [anon_sym_LT_LT_LT] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4758), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_LF] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4758), }, - [2876] = { - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [anon_sym_PIPE_AMP] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5208), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5208), - [anon_sym_LT_AMP] = ACTIONS(5208), - [anon_sym_GT_AMP] = ACTIONS(5208), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_LT_LT_DASH] = ACTIONS(5208), - [anon_sym_LT_LT_LT] = ACTIONS(5208), + [2561] = { + [sym_file_descriptor] = ACTIONS(4764), + [sym__concat] = ACTIONS(4764), + [anon_sym_esac] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_RPAREN] = ACTIONS(4766), + [anon_sym_SEMI_SEMI] = ACTIONS(4766), + [anon_sym_PIPE_AMP] = ACTIONS(4766), + [anon_sym_AMP_AMP] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_GT_GT] = ACTIONS(4766), + [anon_sym_AMP_GT] = ACTIONS(4766), + [anon_sym_AMP_GT_GT] = ACTIONS(4766), + [anon_sym_LT_AMP] = ACTIONS(4766), + [anon_sym_GT_AMP] = ACTIONS(4766), + [anon_sym_LT_LT] = ACTIONS(4766), + [anon_sym_LT_LT_DASH] = ACTIONS(4766), + [anon_sym_LT_LT_LT] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_LF] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4766), }, - [2877] = { - [sym_file_descriptor] = ACTIONS(5210), - [sym__concat] = ACTIONS(5210), - [anon_sym_esac] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_SEMI_SEMI] = ACTIONS(5212), - [anon_sym_PIPE_AMP] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_LT] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5212), - [anon_sym_AMP_GT] = ACTIONS(5212), - [anon_sym_AMP_GT_GT] = ACTIONS(5212), - [anon_sym_LT_AMP] = ACTIONS(5212), - [anon_sym_GT_AMP] = ACTIONS(5212), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_LT_LT_DASH] = ACTIONS(5212), - [anon_sym_LT_LT_LT] = ACTIONS(5212), + [2562] = { + [sym_file_descriptor] = ACTIONS(4768), + [sym__concat] = ACTIONS(4768), + [anon_sym_esac] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_RPAREN] = ACTIONS(4770), + [anon_sym_SEMI_SEMI] = ACTIONS(4770), + [anon_sym_PIPE_AMP] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_GT_GT] = ACTIONS(4770), + [anon_sym_AMP_GT] = ACTIONS(4770), + [anon_sym_AMP_GT_GT] = ACTIONS(4770), + [anon_sym_LT_AMP] = ACTIONS(4770), + [anon_sym_GT_AMP] = ACTIONS(4770), + [anon_sym_LT_LT] = ACTIONS(4770), + [anon_sym_LT_LT_DASH] = ACTIONS(4770), + [anon_sym_LT_LT_LT] = ACTIONS(4770), + [anon_sym_BQUOTE] = ACTIONS(4770), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LF] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_LF] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4770), }, - [2878] = { - [sym_file_descriptor] = ACTIONS(5214), - [sym__concat] = ACTIONS(5214), - [anon_sym_esac] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_AMP_GT] = ACTIONS(5216), - [anon_sym_AMP_GT_GT] = ACTIONS(5216), - [anon_sym_LT_AMP] = ACTIONS(5216), - [anon_sym_GT_AMP] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_LT_LT_DASH] = ACTIONS(5216), - [anon_sym_LT_LT_LT] = ACTIONS(5216), + [2563] = { + [sym_file_descriptor] = ACTIONS(4772), + [sym__concat] = ACTIONS(4772), + [anon_sym_esac] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_RPAREN] = ACTIONS(4774), + [anon_sym_SEMI_SEMI] = ACTIONS(4774), + [anon_sym_PIPE_AMP] = ACTIONS(4774), + [anon_sym_AMP_AMP] = ACTIONS(4774), + [anon_sym_PIPE_PIPE] = ACTIONS(4774), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_GT_GT] = ACTIONS(4774), + [anon_sym_AMP_GT] = ACTIONS(4774), + [anon_sym_AMP_GT_GT] = ACTIONS(4774), + [anon_sym_LT_AMP] = ACTIONS(4774), + [anon_sym_GT_AMP] = ACTIONS(4774), + [anon_sym_LT_LT] = ACTIONS(4774), + [anon_sym_LT_LT_DASH] = ACTIONS(4774), + [anon_sym_LT_LT_LT] = ACTIONS(4774), + [anon_sym_BQUOTE] = ACTIONS(4774), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_LF] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4774), }, - [2879] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6845), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2564] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6131), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2880] = { - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5222), - [anon_sym_PIPE_AMP] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_PIPE_PIPE] = ACTIONS(5222), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5222), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5222), - [anon_sym_LT_AMP] = ACTIONS(5222), - [anon_sym_GT_AMP] = ACTIONS(5222), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5222), - [anon_sym_LT_LT_LT] = ACTIONS(5222), + [2565] = { + [sym_file_descriptor] = ACTIONS(4778), + [sym__concat] = ACTIONS(4778), + [anon_sym_esac] = ACTIONS(4780), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [anon_sym_PIPE_AMP] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_GT_GT] = ACTIONS(4780), + [anon_sym_AMP_GT] = ACTIONS(4780), + [anon_sym_AMP_GT_GT] = ACTIONS(4780), + [anon_sym_LT_AMP] = ACTIONS(4780), + [anon_sym_GT_AMP] = ACTIONS(4780), + [anon_sym_LT_LT] = ACTIONS(4780), + [anon_sym_LT_LT_DASH] = ACTIONS(4780), + [anon_sym_LT_LT_LT] = ACTIONS(4780), + [anon_sym_BQUOTE] = ACTIONS(4780), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_LF] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), }, - [2881] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6847), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2566] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2882] = { - [sym_file_descriptor] = ACTIONS(5226), - [sym__concat] = ACTIONS(5226), - [anon_sym_esac] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5228), - [anon_sym_SEMI_SEMI] = ACTIONS(5228), - [anon_sym_PIPE_AMP] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [anon_sym_LT] = ACTIONS(5228), - [anon_sym_GT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5228), - [anon_sym_AMP_GT] = ACTIONS(5228), - [anon_sym_AMP_GT_GT] = ACTIONS(5228), - [anon_sym_LT_AMP] = ACTIONS(5228), - [anon_sym_GT_AMP] = ACTIONS(5228), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_LT_LT_DASH] = ACTIONS(5228), - [anon_sym_LT_LT_LT] = ACTIONS(5228), + [2567] = { + [sym_file_descriptor] = ACTIONS(4784), + [sym__concat] = ACTIONS(4784), + [anon_sym_esac] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_RPAREN] = ACTIONS(4786), + [anon_sym_SEMI_SEMI] = ACTIONS(4786), + [anon_sym_PIPE_AMP] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4786), + [anon_sym_GT] = ACTIONS(4786), + [anon_sym_GT_GT] = ACTIONS(4786), + [anon_sym_AMP_GT] = ACTIONS(4786), + [anon_sym_AMP_GT_GT] = ACTIONS(4786), + [anon_sym_LT_AMP] = ACTIONS(4786), + [anon_sym_GT_AMP] = ACTIONS(4786), + [anon_sym_LT_LT] = ACTIONS(4786), + [anon_sym_LT_LT_DASH] = ACTIONS(4786), + [anon_sym_LT_LT_LT] = ACTIONS(4786), + [anon_sym_BQUOTE] = ACTIONS(4786), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LF] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_LF] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4786), }, - [2883] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6849), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2568] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6135), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2884] = { - [sym_file_descriptor] = ACTIONS(5232), - [sym__concat] = ACTIONS(5232), - [anon_sym_esac] = ACTIONS(5234), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5234), - [anon_sym_SEMI_SEMI] = ACTIONS(5234), - [anon_sym_PIPE_AMP] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_PIPE_PIPE] = ACTIONS(5234), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_GT_GT] = ACTIONS(5234), - [anon_sym_AMP_GT] = ACTIONS(5234), - [anon_sym_AMP_GT_GT] = ACTIONS(5234), - [anon_sym_LT_AMP] = ACTIONS(5234), - [anon_sym_GT_AMP] = ACTIONS(5234), - [anon_sym_LT_LT] = ACTIONS(5234), - [anon_sym_LT_LT_DASH] = ACTIONS(5234), - [anon_sym_LT_LT_LT] = ACTIONS(5234), + [2569] = { + [sym_file_descriptor] = ACTIONS(4790), + [sym__concat] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_RPAREN] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_GT_GT] = ACTIONS(4792), + [anon_sym_AMP_GT] = ACTIONS(4792), + [anon_sym_AMP_GT_GT] = ACTIONS(4792), + [anon_sym_LT_AMP] = ACTIONS(4792), + [anon_sym_GT_AMP] = ACTIONS(4792), + [anon_sym_LT_LT] = ACTIONS(4792), + [anon_sym_LT_LT_DASH] = ACTIONS(4792), + [anon_sym_LT_LT_LT] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5234), - [anon_sym_LF] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), }, - [2885] = { - [sym_file_descriptor] = ACTIONS(5236), - [sym__concat] = ACTIONS(5236), - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5238), - [anon_sym_PIPE_AMP] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_PIPE_PIPE] = ACTIONS(5238), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_GT_GT] = ACTIONS(5238), - [anon_sym_AMP_GT] = ACTIONS(5238), - [anon_sym_AMP_GT_GT] = ACTIONS(5238), - [anon_sym_LT_AMP] = ACTIONS(5238), - [anon_sym_GT_AMP] = ACTIONS(5238), - [anon_sym_LT_LT] = ACTIONS(5238), - [anon_sym_LT_LT_DASH] = ACTIONS(5238), - [anon_sym_LT_LT_LT] = ACTIONS(5238), + [2570] = { + [sym_file_descriptor] = ACTIONS(4794), + [sym__concat] = ACTIONS(4794), + [anon_sym_esac] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_GT_GT] = ACTIONS(4796), + [anon_sym_AMP_GT] = ACTIONS(4796), + [anon_sym_AMP_GT_GT] = ACTIONS(4796), + [anon_sym_LT_AMP] = ACTIONS(4796), + [anon_sym_GT_AMP] = ACTIONS(4796), + [anon_sym_LT_LT] = ACTIONS(4796), + [anon_sym_LT_LT_DASH] = ACTIONS(4796), + [anon_sym_LT_LT_LT] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5238), - [anon_sym_LF] = ACTIONS(5236), - [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LF] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), }, - [2886] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_RBRACE] = ACTIONS(5879), + [2571] = { + [sym__concat] = ACTIONS(5310), + [anon_sym_RBRACE] = ACTIONS(5310), [sym_comment] = ACTIONS(53), }, - [2887] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_RBRACE] = ACTIONS(5883), + [2572] = { + [sym__concat] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5314), [sym_comment] = ACTIONS(53), }, - [2888] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_RBRACE] = ACTIONS(5887), + [2573] = { + [sym__concat] = ACTIONS(5318), + [anon_sym_RBRACE] = ACTIONS(5318), [sym_comment] = ACTIONS(53), }, - [2889] = { - [anon_sym_PIPE] = ACTIONS(6406), - [anon_sym_RPAREN] = ACTIONS(6408), - [anon_sym_PIPE_AMP] = ACTIONS(6408), - [anon_sym_AMP_AMP] = ACTIONS(6408), - [anon_sym_PIPE_PIPE] = ACTIONS(6408), - [anon_sym_BQUOTE] = ACTIONS(6408), + [2574] = { + [sym__concat] = ACTIONS(5310), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5310), + [anon_sym_AMP_AMP] = ACTIONS(5310), + [anon_sym_PIPE_PIPE] = ACTIONS(5310), + [anon_sym_EQ_TILDE] = ACTIONS(5310), + [anon_sym_EQ_EQ] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_BANG_EQ] = ACTIONS(5310), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5310), + }, + [2575] = { + [sym__concat] = ACTIONS(5314), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(5314), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_EQ_TILDE] = ACTIONS(5314), + [anon_sym_EQ_EQ] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_BANG_EQ] = ACTIONS(5314), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5314), + }, + [2576] = { + [sym__concat] = ACTIONS(5318), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5318), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_EQ_TILDE] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_BANG_EQ] = ACTIONS(5318), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5318), + }, + [2577] = { + [aux_sym_concatenation_repeat1] = STATE(2577), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(3187), + [sym_variable_name] = ACTIONS(1648), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [sym__special_characters] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_LT_LPAREN] = ACTIONS(1650), + [anon_sym_GT_LPAREN] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [2578] = { + [sym_file_redirect] = STATE(1522), + [sym_file_descriptor] = ACTIONS(5670), + [anon_sym_esac] = ACTIONS(3470), + [anon_sym_PIPE] = ACTIONS(3470), + [anon_sym_SEMI_SEMI] = ACTIONS(3470), + [anon_sym_PIPE_AMP] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_PIPE_PIPE] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(5672), + [anon_sym_GT] = ACTIONS(5672), + [anon_sym_GT_GT] = ACTIONS(5672), + [anon_sym_AMP_GT] = ACTIONS(5672), + [anon_sym_AMP_GT_GT] = ACTIONS(5672), + [anon_sym_LT_AMP] = ACTIONS(5672), + [anon_sym_GT_AMP] = ACTIONS(5672), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_LF] = ACTIONS(3472), + [anon_sym_AMP] = ACTIONS(3470), + }, + [2579] = { + [sym_concatenation] = STATE(1525), + [sym_string] = STATE(2651), + [sym_simple_expansion] = STATE(2651), + [sym_string_expansion] = STATE(2651), + [sym_expansion] = STATE(2651), + [sym_command_substitution] = STATE(2651), + [sym_process_substitution] = STATE(2651), + [sym__special_characters] = ACTIONS(6137), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(6139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [anon_sym_GT_LPAREN] = ACTIONS(1041), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6139), + }, + [2580] = { + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym__concat] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), + }, + [2581] = { + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym__concat] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), + }, + [2582] = { + [sym_concatenation] = STATE(1560), + [sym_string] = STATE(2654), + [sym_simple_expansion] = STATE(2654), + [sym_string_expansion] = STATE(2654), + [sym_expansion] = STATE(2654), + [sym_command_substitution] = STATE(2654), + [sym_process_substitution] = STATE(2654), + [sym__special_characters] = ACTIONS(6141), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(6143), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2486), + [anon_sym_LT_LPAREN] = ACTIONS(2488), + [anon_sym_GT_LPAREN] = ACTIONS(2488), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6143), + }, + [2583] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym_file_descriptor] = ACTIONS(649), + [sym__concat] = ACTIONS(3552), + [anon_sym_esac] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_AMP_GT] = ACTIONS(653), + [anon_sym_AMP_GT_GT] = ACTIONS(653), + [anon_sym_LT_AMP] = ACTIONS(653), + [anon_sym_GT_AMP] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_LT] = ACTIONS(653), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(653), + }, + [2584] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym_file_descriptor] = ACTIONS(667), + [sym__concat] = ACTIONS(3552), + [anon_sym_esac] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(669), + }, + [2585] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(3552), + [anon_sym_esac] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1926), + [anon_sym_PIPE_AMP] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_PIPE_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1926), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1926), + [anon_sym_LT_AMP] = ACTIONS(1926), + [anon_sym_GT_AMP] = ACTIONS(1926), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1926), + [anon_sym_LT_LT_LT] = ACTIONS(1926), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), + }, + [2586] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(3552), + [anon_sym_esac] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1930), + [anon_sym_LT_AMP] = ACTIONS(1930), + [anon_sym_GT_AMP] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [2587] = { + [sym_file_redirect] = STATE(2587), + [sym_heredoc_redirect] = STATE(2587), + [sym_herestring_redirect] = STATE(2587), + [aux_sym_while_statement_repeat1] = STATE(2587), + [sym_file_descriptor] = ACTIONS(6145), + [anon_sym_esac] = ACTIONS(1941), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_SEMI_SEMI] = ACTIONS(1941), + [anon_sym_PIPE_AMP] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(6148), + [anon_sym_GT] = ACTIONS(6148), + [anon_sym_GT_GT] = ACTIONS(6148), + [anon_sym_AMP_GT] = ACTIONS(6148), + [anon_sym_AMP_GT_GT] = ACTIONS(6148), + [anon_sym_LT_AMP] = ACTIONS(6148), + [anon_sym_GT_AMP] = ACTIONS(6148), + [anon_sym_LT_LT] = ACTIONS(3582), + [anon_sym_LT_LT_DASH] = ACTIONS(3582), + [anon_sym_LT_LT_LT] = ACTIONS(6151), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1941), + }, + [2588] = { + [sym_variable_name] = ACTIONS(1993), + [anon_sym_esac] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_SEMI_SEMI] = ACTIONS(1995), + [anon_sym_PIPE_AMP] = ACTIONS(1995), + [anon_sym_AMP_AMP] = ACTIONS(1995), + [anon_sym_PIPE_PIPE] = ACTIONS(1995), + [sym__special_characters] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1995), + [sym_raw_string] = ACTIONS(1995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1995), + [anon_sym_BQUOTE] = ACTIONS(1995), + [anon_sym_LT_LPAREN] = ACTIONS(1995), + [anon_sym_GT_LPAREN] = ACTIONS(1995), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1995), + [sym_word] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_LF] = ACTIONS(1993), + [anon_sym_AMP] = ACTIONS(1995), + }, + [2589] = { + [sym_concatenation] = STATE(954), + [sym_string] = STATE(505), + [sym_simple_expansion] = STATE(505), + [sym_string_expansion] = STATE(505), + [sym_expansion] = STATE(505), + [sym_command_substitution] = STATE(505), + [sym_process_substitution] = STATE(505), + [aux_sym_for_statement_repeat1] = STATE(954), + [anon_sym_RPAREN] = ACTIONS(6154), + [sym__special_characters] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LT_LPAREN] = ACTIONS(993), + [anon_sym_GT_LPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(985), + }, + [2590] = { + [sym__concat] = ACTIONS(2818), + [sym_variable_name] = ACTIONS(2818), + [anon_sym_esac] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_SEMI_SEMI] = ACTIONS(2820), + [anon_sym_PIPE_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [sym__special_characters] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), + [anon_sym_BQUOTE] = ACTIONS(2820), + [anon_sym_LT_LPAREN] = ACTIONS(2820), + [anon_sym_GT_LPAREN] = ACTIONS(2820), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2820), + [sym_word] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + }, + [2591] = { + [sym__concat] = ACTIONS(2832), + [sym_variable_name] = ACTIONS(2832), + [anon_sym_esac] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_SEMI_SEMI] = ACTIONS(2834), + [anon_sym_PIPE_AMP] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [sym__special_characters] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2834), + [anon_sym_LT_LPAREN] = ACTIONS(2834), + [anon_sym_GT_LPAREN] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2834), + [sym_word] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), + }, + [2592] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6156), [sym_comment] = ACTIONS(53), }, - [2890] = { - [sym_file_descriptor] = ACTIONS(4164), - [sym__concat] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_RPAREN] = ACTIONS(4164), - [anon_sym_PIPE_AMP] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4164), - [anon_sym_PIPE_PIPE] = ACTIONS(4164), - [anon_sym_LT] = ACTIONS(4166), - [anon_sym_GT] = ACTIONS(4166), - [anon_sym_GT_GT] = ACTIONS(4164), - [anon_sym_AMP_GT] = ACTIONS(4166), - [anon_sym_AMP_GT_GT] = ACTIONS(4164), - [anon_sym_LT_AMP] = ACTIONS(4164), - [anon_sym_GT_AMP] = ACTIONS(4164), - [anon_sym_LT_LT] = ACTIONS(4166), - [anon_sym_LT_LT_DASH] = ACTIONS(4164), - [anon_sym_LT_LT_LT] = ACTIONS(4164), - [anon_sym_BQUOTE] = ACTIONS(4164), + [2593] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6158), [sym_comment] = ACTIONS(53), }, - [2891] = { - [sym_file_descriptor] = ACTIONS(4172), - [sym__concat] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4172), - [anon_sym_PIPE_AMP] = ACTIONS(4172), - [anon_sym_AMP_AMP] = ACTIONS(4172), - [anon_sym_PIPE_PIPE] = ACTIONS(4172), - [anon_sym_LT] = ACTIONS(4174), - [anon_sym_GT] = ACTIONS(4174), - [anon_sym_GT_GT] = ACTIONS(4172), - [anon_sym_AMP_GT] = ACTIONS(4174), - [anon_sym_AMP_GT_GT] = ACTIONS(4172), - [anon_sym_LT_AMP] = ACTIONS(4172), - [anon_sym_GT_AMP] = ACTIONS(4172), - [anon_sym_LT_LT] = ACTIONS(4174), - [anon_sym_LT_LT_DASH] = ACTIONS(4172), - [anon_sym_LT_LT_LT] = ACTIONS(4172), - [anon_sym_BQUOTE] = ACTIONS(4172), + [2594] = { + [anon_sym_RBRACE] = ACTIONS(6158), [sym_comment] = ACTIONS(53), }, - [2892] = { - [sym_file_descriptor] = ACTIONS(4259), - [sym__concat] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4259), - [anon_sym_PIPE_AMP] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [anon_sym_LT] = ACTIONS(4261), - [anon_sym_GT] = ACTIONS(4261), - [anon_sym_GT_GT] = ACTIONS(4259), - [anon_sym_AMP_GT] = ACTIONS(4261), - [anon_sym_AMP_GT_GT] = ACTIONS(4259), - [anon_sym_LT_AMP] = ACTIONS(4259), - [anon_sym_GT_AMP] = ACTIONS(4259), - [anon_sym_LT_LT] = ACTIONS(4261), - [anon_sym_LT_LT_DASH] = ACTIONS(4259), - [anon_sym_LT_LT_LT] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4259), + [2595] = { + [sym_concatenation] = STATE(2660), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2660), + [anon_sym_RBRACE] = ACTIONS(6160), + [anon_sym_EQ] = ACTIONS(6162), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6162), + [anon_sym_COLON_QMARK] = ACTIONS(6162), + [anon_sym_COLON_DASH] = ACTIONS(6162), + [anon_sym_PERCENT] = ACTIONS(6162), + [anon_sym_DASH] = ACTIONS(6162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2596] = { + [sym__concat] = ACTIONS(2926), + [sym_variable_name] = ACTIONS(2926), + [anon_sym_esac] = ACTIONS(2928), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [sym__special_characters] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_LT_LPAREN] = ACTIONS(2928), + [anon_sym_GT_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), + [sym_word] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2928), + }, + [2597] = { + [sym_concatenation] = STATE(2663), + [sym_string] = STATE(2662), + [sym_simple_expansion] = STATE(2662), + [sym_string_expansion] = STATE(2662), + [sym_expansion] = STATE(2662), + [sym_command_substitution] = STATE(2662), + [sym_process_substitution] = STATE(2662), + [anon_sym_RBRACE] = ACTIONS(6158), + [sym__special_characters] = ACTIONS(6166), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(6168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6168), + }, + [2598] = { + [sym__concat] = ACTIONS(2969), + [sym_variable_name] = ACTIONS(2969), + [anon_sym_esac] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [sym__special_characters] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_LT_LPAREN] = ACTIONS(2971), + [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), + [sym_word] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + }, + [2599] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6170), + }, + [2600] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6172), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2601] = { + [sym__concat] = ACTIONS(2977), + [sym_variable_name] = ACTIONS(2977), + [anon_sym_esac] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2979), + [anon_sym_PIPE_AMP] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2979), + [anon_sym_LT_LPAREN] = ACTIONS(2979), + [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2979), + [sym_word] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + }, + [2602] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6174), + }, + [2603] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6176), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2604] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6178), + }, + [2605] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6158), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2606] = { + [sym_concatenation] = STATE(2670), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2670), + [anon_sym_RBRACE] = ACTIONS(6180), + [anon_sym_EQ] = ACTIONS(6182), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6182), + [anon_sym_COLON_QMARK] = ACTIONS(6182), + [anon_sym_COLON_DASH] = ACTIONS(6182), + [anon_sym_PERCENT] = ACTIONS(6182), + [anon_sym_DASH] = ACTIONS(6182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2607] = { + [sym__concat] = ACTIONS(2993), + [sym_variable_name] = ACTIONS(2993), + [anon_sym_esac] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), + [anon_sym_PIPE_AMP] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [sym__special_characters] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2995), + [anon_sym_BQUOTE] = ACTIONS(2995), + [anon_sym_LT_LPAREN] = ACTIONS(2995), + [anon_sym_GT_LPAREN] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2995), + [sym_word] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), + }, + [2608] = { + [sym_concatenation] = STATE(2672), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2672), + [anon_sym_RBRACE] = ACTIONS(6186), + [anon_sym_EQ] = ACTIONS(6188), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6188), + [anon_sym_COLON_QMARK] = ACTIONS(6188), + [anon_sym_COLON_DASH] = ACTIONS(6188), + [anon_sym_PERCENT] = ACTIONS(6188), + [anon_sym_DASH] = ACTIONS(6188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2609] = { + [sym__concat] = ACTIONS(3003), + [sym_variable_name] = ACTIONS(3003), + [anon_sym_esac] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_SEMI_SEMI] = ACTIONS(3005), + [anon_sym_PIPE_AMP] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [sym__special_characters] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3005), + [anon_sym_LT_LPAREN] = ACTIONS(3005), + [anon_sym_GT_LPAREN] = ACTIONS(3005), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3005), + [sym_word] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + }, + [2610] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(6192), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2611] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(6192), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2612] = { + [sym__concat] = ACTIONS(3034), + [sym_variable_name] = ACTIONS(3034), + [anon_sym_esac] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3036), + [sym_word] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), + }, + [2613] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(6194), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2614] = { + [sym__concat] = ACTIONS(2818), + [anon_sym_esac] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_SEMI_SEMI] = ACTIONS(2820), + [anon_sym_PIPE_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [sym__special_characters] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_DOLLAR] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2820), + [anon_sym_BQUOTE] = ACTIONS(2820), + [anon_sym_LT_LPAREN] = ACTIONS(2820), + [anon_sym_GT_LPAREN] = ACTIONS(2820), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2820), + [sym_word] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + }, + [2615] = { + [sym__concat] = ACTIONS(2832), + [anon_sym_esac] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_SEMI_SEMI] = ACTIONS(2834), + [anon_sym_PIPE_AMP] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [sym__special_characters] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_DOLLAR] = ACTIONS(2834), + [sym_raw_string] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2834), + [anon_sym_LT_LPAREN] = ACTIONS(2834), + [anon_sym_GT_LPAREN] = ACTIONS(2834), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2834), + [sym_word] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), + }, + [2616] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6196), [sym_comment] = ACTIONS(53), }, - [2893] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6851), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2894] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6853), + [2617] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6198), [sym_comment] = ACTIONS(53), }, - [2895] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6855), + [2618] = { + [anon_sym_RBRACE] = ACTIONS(6198), [sym_comment] = ACTIONS(53), }, - [2896] = { - [anon_sym_RBRACE] = ACTIONS(6855), + [2619] = { + [sym_concatenation] = STATE(2678), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2678), + [anon_sym_RBRACE] = ACTIONS(6200), + [anon_sym_EQ] = ACTIONS(6202), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6202), + [anon_sym_COLON_QMARK] = ACTIONS(6202), + [anon_sym_COLON_DASH] = ACTIONS(6202), + [anon_sym_PERCENT] = ACTIONS(6202), + [anon_sym_DASH] = ACTIONS(6202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2620] = { + [sym__concat] = ACTIONS(2926), + [anon_sym_esac] = ACTIONS(2928), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [sym__special_characters] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_DOLLAR] = ACTIONS(2928), + [sym_raw_string] = ACTIONS(2928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_LT_LPAREN] = ACTIONS(2928), + [anon_sym_GT_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), + [sym_word] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2928), + }, + [2621] = { + [sym_concatenation] = STATE(2681), + [sym_string] = STATE(2680), + [sym_simple_expansion] = STATE(2680), + [sym_string_expansion] = STATE(2680), + [sym_expansion] = STATE(2680), + [sym_command_substitution] = STATE(2680), + [sym_process_substitution] = STATE(2680), + [anon_sym_RBRACE] = ACTIONS(6198), + [sym__special_characters] = ACTIONS(6206), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(6208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6208), + }, + [2622] = { + [sym__concat] = ACTIONS(2969), + [anon_sym_esac] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [sym__special_characters] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_DOLLAR] = ACTIONS(2971), + [sym_raw_string] = ACTIONS(2971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_LT_LPAREN] = ACTIONS(2971), + [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), + [sym_word] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + }, + [2623] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6210), + }, + [2624] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6212), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2625] = { + [sym__concat] = ACTIONS(2977), + [anon_sym_esac] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2979), + [anon_sym_PIPE_AMP] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [sym__special_characters] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_DOLLAR] = ACTIONS(2979), + [sym_raw_string] = ACTIONS(2979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2979), + [anon_sym_LT_LPAREN] = ACTIONS(2979), + [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2979), + [sym_word] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + }, + [2626] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6214), + }, + [2627] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6216), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2628] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6218), + }, + [2629] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6198), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2630] = { + [sym_concatenation] = STATE(2688), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2688), + [anon_sym_RBRACE] = ACTIONS(6220), + [anon_sym_EQ] = ACTIONS(6222), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6224), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6222), + [anon_sym_COLON_QMARK] = ACTIONS(6222), + [anon_sym_COLON_DASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(6222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2631] = { + [sym__concat] = ACTIONS(2993), + [anon_sym_esac] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_SEMI_SEMI] = ACTIONS(2995), + [anon_sym_PIPE_AMP] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [sym__special_characters] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2995), + [sym_raw_string] = ACTIONS(2995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2995), + [anon_sym_BQUOTE] = ACTIONS(2995), + [anon_sym_LT_LPAREN] = ACTIONS(2995), + [anon_sym_GT_LPAREN] = ACTIONS(2995), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2995), + [sym_word] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), + }, + [2632] = { + [sym_concatenation] = STATE(2690), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2690), + [anon_sym_RBRACE] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6228), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6228), + [anon_sym_COLON_QMARK] = ACTIONS(6228), + [anon_sym_COLON_DASH] = ACTIONS(6228), + [anon_sym_PERCENT] = ACTIONS(6228), + [anon_sym_DASH] = ACTIONS(6228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2633] = { + [sym__concat] = ACTIONS(3003), + [anon_sym_esac] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_SEMI_SEMI] = ACTIONS(3005), + [anon_sym_PIPE_AMP] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [sym__special_characters] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_raw_string] = ACTIONS(3005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3005), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3005), + [anon_sym_LT_LPAREN] = ACTIONS(3005), + [anon_sym_GT_LPAREN] = ACTIONS(3005), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3005), + [sym_word] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + }, + [2634] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(6232), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2635] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(6232), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2636] = { + [sym__concat] = ACTIONS(3034), + [anon_sym_esac] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3036), + [sym_word] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), + }, + [2637] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(6234), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(819), + }, + [2638] = { + [aux_sym_concatenation_repeat1] = STATE(2638), + [sym__simple_heredoc_body] = ACTIONS(1648), + [sym__heredoc_body_beginning] = ACTIONS(1648), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(1652), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [2639] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(5897), + [anon_sym_DQUOTE] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5897), + [sym_raw_string] = ACTIONS(5899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5899), + [anon_sym_BQUOTE] = ACTIONS(5899), + [anon_sym_LT_LPAREN] = ACTIONS(5899), + [anon_sym_GT_LPAREN] = ACTIONS(5899), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5897), + }, + [2640] = { + [sym__special_characters] = ACTIONS(5899), + [anon_sym_DQUOTE] = ACTIONS(5899), + [anon_sym_DOLLAR] = ACTIONS(5897), + [sym_raw_string] = ACTIONS(5899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5899), + [anon_sym_BQUOTE] = ACTIONS(5899), + [anon_sym_LT_LPAREN] = ACTIONS(5899), + [anon_sym_GT_LPAREN] = ACTIONS(5899), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5899), + }, + [2641] = { + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(6236), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2642] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(6236), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2643] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(5905), + [anon_sym_DQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR] = ACTIONS(5905), + [sym_raw_string] = ACTIONS(5907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5907), + [anon_sym_BQUOTE] = ACTIONS(5907), + [anon_sym_LT_LPAREN] = ACTIONS(5907), + [anon_sym_GT_LPAREN] = ACTIONS(5907), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5905), + }, + [2644] = { + [sym__special_characters] = ACTIONS(5907), + [anon_sym_DQUOTE] = ACTIONS(5907), + [anon_sym_DOLLAR] = ACTIONS(5905), + [sym_raw_string] = ACTIONS(5907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5907), + [anon_sym_BQUOTE] = ACTIONS(5907), + [anon_sym_LT_LPAREN] = ACTIONS(5907), + [anon_sym_GT_LPAREN] = ACTIONS(5907), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5907), + }, + [2645] = { + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(6238), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2646] = { + [sym_file_descriptor] = ACTIONS(323), + [sym_variable_name] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_SEMI_SEMI] = ACTIONS(6238), + [anon_sym_PIPE_AMP] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(325), + [anon_sym_LT_AMP] = ACTIONS(325), + [anon_sym_GT_AMP] = ACTIONS(325), + [sym__special_characters] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(325), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(285), + }, + [2647] = { + [sym_file_descriptor] = ACTIONS(5310), + [sym__concat] = ACTIONS(5310), + [anon_sym_esac] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(5312), + [anon_sym_SEMI_SEMI] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(5312), + [anon_sym_AMP_AMP] = ACTIONS(5312), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(5312), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(5312), + [anon_sym_LT_AMP] = ACTIONS(5312), + [anon_sym_GT_AMP] = ACTIONS(5312), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_LT_LT_DASH] = ACTIONS(5312), + [anon_sym_LT_LT_LT] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(5312), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym_LF] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), + }, + [2648] = { + [sym_file_descriptor] = ACTIONS(5314), + [sym__concat] = ACTIONS(5314), + [anon_sym_esac] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(5316), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5316), + [anon_sym_AMP_AMP] = ACTIONS(5316), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(5316), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(5316), + [anon_sym_LT_AMP] = ACTIONS(5316), + [anon_sym_GT_AMP] = ACTIONS(5316), + [anon_sym_LT_LT] = ACTIONS(5316), + [anon_sym_LT_LT_DASH] = ACTIONS(5316), + [anon_sym_LT_LT_LT] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_LF] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + }, + [2649] = { + [sym_file_descriptor] = ACTIONS(5318), + [sym__concat] = ACTIONS(5318), + [anon_sym_esac] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(5320), + [anon_sym_SEMI_SEMI] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(5320), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(5320), + [anon_sym_LT_AMP] = ACTIONS(5320), + [anon_sym_GT_AMP] = ACTIONS(5320), + [anon_sym_LT_LT] = ACTIONS(5320), + [anon_sym_LT_LT_DASH] = ACTIONS(5320), + [anon_sym_LT_LT_LT] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_LF] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5320), + }, + [2650] = { + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym__concat] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [2651] = { + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym__concat] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [2652] = { + [aux_sym_concatenation_repeat1] = STATE(2695), + [sym__concat] = ACTIONS(1045), + [anon_sym_esac] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [2653] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym_file_descriptor] = ACTIONS(955), + [sym__concat] = ACTIONS(3552), + [anon_sym_esac] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + }, + [2654] = { + [aux_sym_concatenation_repeat1] = STATE(2655), + [sym_file_descriptor] = ACTIONS(959), + [sym__concat] = ACTIONS(3552), + [anon_sym_esac] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + }, + [2655] = { + [aux_sym_concatenation_repeat1] = STATE(2696), + [sym_file_descriptor] = ACTIONS(683), + [sym__concat] = ACTIONS(3552), + [anon_sym_esac] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SEMI_SEMI] = ACTIONS(685), + [anon_sym_PIPE_AMP] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(685), + [anon_sym_AMP_GT] = ACTIONS(685), + [anon_sym_AMP_GT_GT] = ACTIONS(685), + [anon_sym_LT_AMP] = ACTIONS(685), + [anon_sym_GT_AMP] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_LT] = ACTIONS(685), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LF] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + }, + [2656] = { + [sym_variable_name] = ACTIONS(3157), + [anon_sym_esac] = ACTIONS(3159), + [anon_sym_PIPE] = ACTIONS(3159), + [anon_sym_SEMI_SEMI] = ACTIONS(3159), + [anon_sym_PIPE_AMP] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [sym__special_characters] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_DOLLAR] = ACTIONS(3159), + [sym_raw_string] = ACTIONS(3159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3159), + [anon_sym_BQUOTE] = ACTIONS(3159), + [anon_sym_LT_LPAREN] = ACTIONS(3159), + [anon_sym_GT_LPAREN] = ACTIONS(3159), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3159), + [sym_word] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_LF] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + }, + [2657] = { + [sym__concat] = ACTIONS(3802), + [sym_variable_name] = ACTIONS(3802), + [anon_sym_esac] = ACTIONS(3804), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_SEMI_SEMI] = ACTIONS(3804), + [anon_sym_PIPE_AMP] = ACTIONS(3804), + [anon_sym_AMP_AMP] = ACTIONS(3804), + [anon_sym_PIPE_PIPE] = ACTIONS(3804), + [sym__special_characters] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3804), + [anon_sym_BQUOTE] = ACTIONS(3804), + [anon_sym_LT_LPAREN] = ACTIONS(3804), + [anon_sym_GT_LPAREN] = ACTIONS(3804), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3804), + [sym_word] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3804), + }, + [2658] = { + [sym__concat] = ACTIONS(3810), + [sym_variable_name] = ACTIONS(3810), + [anon_sym_esac] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3812), + [anon_sym_SEMI_SEMI] = ACTIONS(3812), + [anon_sym_PIPE_AMP] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3812), + [anon_sym_BQUOTE] = ACTIONS(3812), + [anon_sym_LT_LPAREN] = ACTIONS(3812), + [anon_sym_GT_LPAREN] = ACTIONS(3812), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3812), + [sym_word] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_LF] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3812), + }, + [2659] = { + [sym__concat] = ACTIONS(3909), + [sym_variable_name] = ACTIONS(3909), + [anon_sym_esac] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [anon_sym_PIPE_AMP] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), + [anon_sym_LT_LPAREN] = ACTIONS(3911), + [anon_sym_GT_LPAREN] = ACTIONS(3911), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3911), + [sym_word] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + }, + [2660] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6240), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2661] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6242), [sym_comment] = ACTIONS(53), }, - [2897] = { - [sym_concatenation] = STATE(2976), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2976), - [anon_sym_RBRACE] = ACTIONS(6857), - [anon_sym_EQ] = ACTIONS(6859), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6859), - [anon_sym_COLON_QMARK] = ACTIONS(6859), - [anon_sym_COLON_DASH] = ACTIONS(6859), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_DASH] = ACTIONS(6859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2898] = { - [sym_file_descriptor] = ACTIONS(4275), - [sym__concat] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_GT] = ACTIONS(4275), - [anon_sym_AMP_GT] = ACTIONS(4277), - [anon_sym_AMP_GT_GT] = ACTIONS(4275), - [anon_sym_LT_AMP] = ACTIONS(4275), - [anon_sym_GT_AMP] = ACTIONS(4275), - [anon_sym_LT_LT] = ACTIONS(4277), - [anon_sym_LT_LT_DASH] = ACTIONS(4275), - [anon_sym_LT_LT_LT] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4275), + [2662] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6244), [sym_comment] = ACTIONS(53), }, - [2899] = { - [sym_concatenation] = STATE(2978), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2978), - [anon_sym_RBRACE] = ACTIONS(6863), - [anon_sym_EQ] = ACTIONS(6865), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6865), - [anon_sym_COLON_QMARK] = ACTIONS(6865), - [anon_sym_COLON_DASH] = ACTIONS(6865), - [anon_sym_PERCENT] = ACTIONS(6865), - [anon_sym_DASH] = ACTIONS(6865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2900] = { - [sym_file_descriptor] = ACTIONS(4285), - [sym__concat] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_PIPE_AMP] = ACTIONS(4285), - [anon_sym_AMP_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4285), - [anon_sym_LT] = ACTIONS(4287), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4285), - [anon_sym_AMP_GT] = ACTIONS(4287), - [anon_sym_AMP_GT_GT] = ACTIONS(4285), - [anon_sym_LT_AMP] = ACTIONS(4285), - [anon_sym_GT_AMP] = ACTIONS(4285), - [anon_sym_LT_LT] = ACTIONS(4287), - [anon_sym_LT_LT_DASH] = ACTIONS(4285), - [anon_sym_LT_LT_LT] = ACTIONS(4285), - [anon_sym_BQUOTE] = ACTIONS(4285), + [2663] = { + [anon_sym_RBRACE] = ACTIONS(6244), [sym_comment] = ACTIONS(53), }, - [2901] = { - [sym_concatenation] = STATE(2980), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2980), - [anon_sym_RBRACE] = ACTIONS(6869), - [anon_sym_EQ] = ACTIONS(6871), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6871), - [anon_sym_COLON_QMARK] = ACTIONS(6871), - [anon_sym_COLON_DASH] = ACTIONS(6871), - [anon_sym_PERCENT] = ACTIONS(6871), - [anon_sym_DASH] = ACTIONS(6871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), + [2664] = { + [sym_concatenation] = STATE(2701), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2701), + [anon_sym_RBRACE] = ACTIONS(6246), + [anon_sym_EQ] = ACTIONS(6248), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6248), + [anon_sym_COLON_QMARK] = ACTIONS(6248), + [anon_sym_COLON_DASH] = ACTIONS(6248), + [anon_sym_PERCENT] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), + [sym_word] = ACTIONS(759), }, - [2902] = { - [sym_file_descriptor] = ACTIONS(4295), - [sym__concat] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_PIPE_AMP] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_GT_GT] = ACTIONS(4295), - [anon_sym_AMP_GT] = ACTIONS(4297), - [anon_sym_AMP_GT_GT] = ACTIONS(4295), - [anon_sym_LT_AMP] = ACTIONS(4295), - [anon_sym_GT_AMP] = ACTIONS(4295), - [anon_sym_LT_LT] = ACTIONS(4297), - [anon_sym_LT_LT_DASH] = ACTIONS(4295), - [anon_sym_LT_LT_LT] = ACTIONS(4295), - [anon_sym_BQUOTE] = ACTIONS(4295), + [2665] = { + [sym__concat] = ACTIONS(3945), + [sym_variable_name] = ACTIONS(3945), + [anon_sym_esac] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3947), + [anon_sym_PIPE_AMP] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [sym__special_characters] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), + [anon_sym_BQUOTE] = ACTIONS(3947), + [anon_sym_LT_LPAREN] = ACTIONS(3947), + [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3947), + [sym_word] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3947), + }, + [2666] = { + [sym_concatenation] = STATE(2703), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2703), + [anon_sym_RBRACE] = ACTIONS(6252), + [anon_sym_EQ] = ACTIONS(6254), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_QMARK] = ACTIONS(6254), + [anon_sym_COLON_DASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2667] = { + [sym__concat] = ACTIONS(3955), + [sym_variable_name] = ACTIONS(3955), + [anon_sym_esac] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3957), + [anon_sym_SEMI_SEMI] = ACTIONS(3957), + [anon_sym_PIPE_AMP] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [sym__special_characters] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), + [anon_sym_BQUOTE] = ACTIONS(3957), + [anon_sym_LT_LPAREN] = ACTIONS(3957), + [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3957), + [sym_word] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), + }, + [2668] = { + [sym_concatenation] = STATE(2705), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2705), + [anon_sym_RBRACE] = ACTIONS(6258), + [anon_sym_EQ] = ACTIONS(6260), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6260), + [anon_sym_COLON_QMARK] = ACTIONS(6260), + [anon_sym_COLON_DASH] = ACTIONS(6260), + [anon_sym_PERCENT] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2669] = { + [sym__concat] = ACTIONS(3965), + [sym_variable_name] = ACTIONS(3965), + [anon_sym_esac] = ACTIONS(3967), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3967), + [sym__special_characters] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3967), + [anon_sym_BQUOTE] = ACTIONS(3967), + [anon_sym_LT_LPAREN] = ACTIONS(3967), + [anon_sym_GT_LPAREN] = ACTIONS(3967), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3967), + [sym_word] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), + }, + [2670] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6264), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2671] = { + [sym__concat] = ACTIONS(3971), + [sym_variable_name] = ACTIONS(3971), + [anon_sym_esac] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3973), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [sym__special_characters] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3973), + [anon_sym_BQUOTE] = ACTIONS(3973), + [anon_sym_LT_LPAREN] = ACTIONS(3973), + [anon_sym_GT_LPAREN] = ACTIONS(3973), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3973), + [sym_word] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_LF] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3973), + }, + [2672] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6266), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2673] = { + [sym__concat] = ACTIONS(3977), + [sym_variable_name] = ACTIONS(3977), + [anon_sym_esac] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_SEMI_SEMI] = ACTIONS(3979), + [anon_sym_PIPE_AMP] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [anon_sym_LT_LPAREN] = ACTIONS(3979), + [anon_sym_GT_LPAREN] = ACTIONS(3979), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3979), + [sym_word] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_LF] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3979), + }, + [2674] = { + [sym__concat] = ACTIONS(4001), + [sym_variable_name] = ACTIONS(4001), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4003), + [anon_sym_PIPE_AMP] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_PIPE_PIPE] = ACTIONS(4003), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4003), + [anon_sym_BQUOTE] = ACTIONS(4003), + [anon_sym_LT_LPAREN] = ACTIONS(4003), + [anon_sym_GT_LPAREN] = ACTIONS(4003), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [2675] = { + [sym__concat] = ACTIONS(3802), + [anon_sym_esac] = ACTIONS(3804), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_SEMI_SEMI] = ACTIONS(3804), + [anon_sym_PIPE_AMP] = ACTIONS(3804), + [anon_sym_AMP_AMP] = ACTIONS(3804), + [anon_sym_PIPE_PIPE] = ACTIONS(3804), + [sym__special_characters] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [sym_raw_string] = ACTIONS(3804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3804), + [anon_sym_BQUOTE] = ACTIONS(3804), + [anon_sym_LT_LPAREN] = ACTIONS(3804), + [anon_sym_GT_LPAREN] = ACTIONS(3804), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3804), + [sym_word] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3804), + }, + [2676] = { + [sym__concat] = ACTIONS(3810), + [anon_sym_esac] = ACTIONS(3812), + [anon_sym_PIPE] = ACTIONS(3812), + [anon_sym_SEMI_SEMI] = ACTIONS(3812), + [anon_sym_PIPE_AMP] = ACTIONS(3812), + [anon_sym_AMP_AMP] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [sym_raw_string] = ACTIONS(3812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3812), + [anon_sym_BQUOTE] = ACTIONS(3812), + [anon_sym_LT_LPAREN] = ACTIONS(3812), + [anon_sym_GT_LPAREN] = ACTIONS(3812), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3812), + [sym_word] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_LF] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3812), + }, + [2677] = { + [sym__concat] = ACTIONS(3909), + [anon_sym_esac] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [anon_sym_PIPE_AMP] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), + [anon_sym_LT_LPAREN] = ACTIONS(3911), + [anon_sym_GT_LPAREN] = ACTIONS(3911), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3911), + [sym_word] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3911), + }, + [2678] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6268), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2679] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6270), [sym_comment] = ACTIONS(53), }, - [2903] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6875), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2904] = { - [sym_file_descriptor] = ACTIONS(4301), - [sym__concat] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_PIPE_AMP] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4303), - [anon_sym_GT] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4301), - [anon_sym_AMP_GT] = ACTIONS(4303), - [anon_sym_AMP_GT_GT] = ACTIONS(4301), - [anon_sym_LT_AMP] = ACTIONS(4301), - [anon_sym_GT_AMP] = ACTIONS(4301), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_LT_LT_DASH] = ACTIONS(4301), - [anon_sym_LT_LT_LT] = ACTIONS(4301), - [anon_sym_BQUOTE] = ACTIONS(4301), + [2680] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6272), [sym_comment] = ACTIONS(53), }, - [2905] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6877), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2906] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [anon_sym_EQ_TILDE] = ACTIONS(5879), - [anon_sym_EQ_EQ] = ACTIONS(5879), - [anon_sym_EQ] = ACTIONS(5881), - [anon_sym_LT] = ACTIONS(5879), - [anon_sym_GT] = ACTIONS(5879), - [anon_sym_BANG_EQ] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5879), - }, - [2907] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5883), - [anon_sym_AMP_AMP] = ACTIONS(5883), - [anon_sym_PIPE_PIPE] = ACTIONS(5883), - [anon_sym_EQ_TILDE] = ACTIONS(5883), - [anon_sym_EQ_EQ] = ACTIONS(5883), - [anon_sym_EQ] = ACTIONS(5885), - [anon_sym_LT] = ACTIONS(5883), - [anon_sym_GT] = ACTIONS(5883), - [anon_sym_BANG_EQ] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5883), - }, - [2908] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5887), - [anon_sym_AMP_AMP] = ACTIONS(5887), - [anon_sym_PIPE_PIPE] = ACTIONS(5887), - [anon_sym_EQ_TILDE] = ACTIONS(5887), - [anon_sym_EQ_EQ] = ACTIONS(5887), - [anon_sym_EQ] = ACTIONS(5889), - [anon_sym_LT] = ACTIONS(5887), - [anon_sym_GT] = ACTIONS(5887), - [anon_sym_BANG_EQ] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5887), - }, - [2909] = { - [aux_sym_concatenation_repeat1] = STATE(2909), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(3611), - [sym_variable_name] = ACTIONS(1754), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_BQUOTE] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1756), - [anon_sym_GT_LPAREN] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2910] = { - [sym_file_redirect] = STATE(1663), - [sym_file_descriptor] = ACTIONS(6412), - [anon_sym_esac] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3854), - [anon_sym_PIPE_AMP] = ACTIONS(3854), - [anon_sym_AMP_AMP] = ACTIONS(3854), - [anon_sym_PIPE_PIPE] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(6414), - [anon_sym_GT] = ACTIONS(6414), - [anon_sym_GT_GT] = ACTIONS(6414), - [anon_sym_AMP_GT] = ACTIONS(6414), - [anon_sym_AMP_GT_GT] = ACTIONS(6414), - [anon_sym_LT_AMP] = ACTIONS(6414), - [anon_sym_GT_AMP] = ACTIONS(6414), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3856), - [anon_sym_AMP] = ACTIONS(3854), - }, - [2911] = { - [sym_concatenation] = STATE(1666), - [sym_string] = STATE(2984), - [sym_simple_expansion] = STATE(2984), - [sym_string_expansion] = STATE(2984), - [sym_expansion] = STATE(2984), - [sym_command_substitution] = STATE(2984), - [sym_process_substitution] = STATE(2984), - [sym__special_characters] = ACTIONS(6879), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(417), - [sym_raw_string] = ACTIONS(6881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1217), - [anon_sym_LT_LPAREN] = ACTIONS(1219), - [anon_sym_GT_LPAREN] = ACTIONS(1219), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6881), - }, - [2912] = { - [aux_sym_concatenation_repeat1] = STATE(2985), - [sym__concat] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(701), - }, - [2913] = { - [aux_sym_concatenation_repeat1] = STATE(2985), - [sym__concat] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [2914] = { - [sym_concatenation] = STATE(1699), - [sym_string] = STATE(2987), - [sym_simple_expansion] = STATE(2987), - [sym_string_expansion] = STATE(2987), - [sym_expansion] = STATE(2987), - [sym_command_substitution] = STATE(2987), - [sym_process_substitution] = STATE(2987), - [sym__special_characters] = ACTIONS(6883), - [anon_sym_DQUOTE] = ACTIONS(2670), - [anon_sym_DOLLAR] = ACTIONS(2672), - [sym_raw_string] = ACTIONS(6885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2678), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_LT_LPAREN] = ACTIONS(2682), - [anon_sym_GT_LPAREN] = ACTIONS(2682), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6885), - }, - [2915] = { - [aux_sym_concatenation_repeat1] = STATE(2988), - [sym_file_descriptor] = ACTIONS(697), - [sym__concat] = ACTIONS(3932), - [anon_sym_esac] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(701), - [anon_sym_PIPE_AMP] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_AMP_GT] = ACTIONS(701), - [anon_sym_AMP_GT_GT] = ACTIONS(701), - [anon_sym_LT_AMP] = ACTIONS(701), - [anon_sym_GT_AMP] = ACTIONS(701), - [anon_sym_LT_LT] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(701), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(701), - }, - [2916] = { - [aux_sym_concatenation_repeat1] = STATE(2988), - [sym_file_descriptor] = ACTIONS(715), - [sym__concat] = ACTIONS(3932), - [anon_sym_esac] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(717), - [anon_sym_PIPE_AMP] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_AMP_GT] = ACTIONS(717), - [anon_sym_AMP_GT_GT] = ACTIONS(717), - [anon_sym_LT_AMP] = ACTIONS(717), - [anon_sym_GT_AMP] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(717), - [anon_sym_LT_LT_DASH] = ACTIONS(717), - [anon_sym_LT_LT_LT] = ACTIONS(717), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [2917] = { - [aux_sym_concatenation_repeat1] = STATE(2988), - [sym_file_descriptor] = ACTIONS(2184), - [sym__concat] = ACTIONS(3932), - [anon_sym_esac] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_SEMI_SEMI] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(2186), - [anon_sym_AMP_AMP] = ACTIONS(2186), - [anon_sym_PIPE_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2186), - [anon_sym_AMP_GT] = ACTIONS(2186), - [anon_sym_AMP_GT_GT] = ACTIONS(2186), - [anon_sym_LT_AMP] = ACTIONS(2186), - [anon_sym_GT_AMP] = ACTIONS(2186), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_LT_LT_DASH] = ACTIONS(2186), - [anon_sym_LT_LT_LT] = ACTIONS(2186), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2186), - }, - [2918] = { - [aux_sym_concatenation_repeat1] = STATE(2988), - [sym_file_descriptor] = ACTIONS(2188), - [sym__concat] = ACTIONS(3932), - [anon_sym_esac] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(2190), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_LF] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2190), - }, - [2919] = { - [sym_file_redirect] = STATE(2919), - [sym_heredoc_redirect] = STATE(2919), - [sym_herestring_redirect] = STATE(2919), - [aux_sym_while_statement_repeat1] = STATE(2919), - [sym_file_descriptor] = ACTIONS(6887), - [anon_sym_esac] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_SEMI_SEMI] = ACTIONS(2201), - [anon_sym_PIPE_AMP] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(6890), - [anon_sym_GT] = ACTIONS(6890), - [anon_sym_GT_GT] = ACTIONS(6890), - [anon_sym_AMP_GT] = ACTIONS(6890), - [anon_sym_AMP_GT_GT] = ACTIONS(6890), - [anon_sym_LT_AMP] = ACTIONS(6890), - [anon_sym_GT_AMP] = ACTIONS(6890), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_LT_LT_DASH] = ACTIONS(3962), - [anon_sym_LT_LT_LT] = ACTIONS(6893), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2201), - }, - [2920] = { - [sym_variable_name] = ACTIONS(2253), - [anon_sym_esac] = ACTIONS(2255), - [anon_sym_PIPE] = ACTIONS(2255), - [anon_sym_SEMI_SEMI] = ACTIONS(2255), - [anon_sym_PIPE_AMP] = ACTIONS(2255), - [anon_sym_AMP_AMP] = ACTIONS(2255), - [anon_sym_PIPE_PIPE] = ACTIONS(2255), - [sym__special_characters] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2255), - [sym_raw_string] = ACTIONS(2255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2255), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2255), - [anon_sym_BQUOTE] = ACTIONS(2255), - [anon_sym_LT_LPAREN] = ACTIONS(2255), - [anon_sym_GT_LPAREN] = ACTIONS(2255), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2255), - [sym_word] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2255), - }, - [2921] = { - [sym_concatenation] = STATE(1075), - [sym_string] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_expansion] = STATE(588), - [sym_command_substitution] = STATE(588), - [sym_process_substitution] = STATE(588), - [aux_sym_for_statement_repeat1] = STATE(1075), - [anon_sym_RPAREN] = ACTIONS(6896), - [sym__special_characters] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_LT_LPAREN] = ACTIONS(1171), - [anon_sym_GT_LPAREN] = ACTIONS(1171), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1163), - }, - [2922] = { - [sym__concat] = ACTIONS(2920), - [sym_variable_name] = ACTIONS(2920), - [anon_sym_esac] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), - [anon_sym_PIPE_AMP] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [sym__special_characters] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), - [anon_sym_BQUOTE] = ACTIONS(2922), - [anon_sym_LT_LPAREN] = ACTIONS(2922), - [anon_sym_GT_LPAREN] = ACTIONS(2922), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), - [sym_word] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), - }, - [2923] = { - [sym__concat] = ACTIONS(2934), - [sym_variable_name] = ACTIONS(2934), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2936), - [anon_sym_PIPE_AMP] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), - [anon_sym_BQUOTE] = ACTIONS(2936), - [anon_sym_LT_LPAREN] = ACTIONS(2936), - [anon_sym_GT_LPAREN] = ACTIONS(2936), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [2924] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6898), + [2681] = { + [anon_sym_RBRACE] = ACTIONS(6272), [sym_comment] = ACTIONS(53), }, - [2925] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6900), + [2682] = { + [sym_concatenation] = STATE(2712), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2712), + [anon_sym_RBRACE] = ACTIONS(6274), + [anon_sym_EQ] = ACTIONS(6276), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6276), + [anon_sym_COLON_QMARK] = ACTIONS(6276), + [anon_sym_COLON_DASH] = ACTIONS(6276), + [anon_sym_PERCENT] = ACTIONS(6276), + [anon_sym_DASH] = ACTIONS(6276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2683] = { + [sym__concat] = ACTIONS(3945), + [anon_sym_esac] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3947), + [anon_sym_PIPE_AMP] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [sym__special_characters] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3947), + [sym_raw_string] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), + [anon_sym_BQUOTE] = ACTIONS(3947), + [anon_sym_LT_LPAREN] = ACTIONS(3947), + [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3947), + [sym_word] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3947), + }, + [2684] = { + [sym_concatenation] = STATE(2714), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2714), + [anon_sym_RBRACE] = ACTIONS(6280), + [anon_sym_EQ] = ACTIONS(6282), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6282), + [anon_sym_COLON_QMARK] = ACTIONS(6282), + [anon_sym_COLON_DASH] = ACTIONS(6282), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_DASH] = ACTIONS(6282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2685] = { + [sym__concat] = ACTIONS(3955), + [anon_sym_esac] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3957), + [anon_sym_SEMI_SEMI] = ACTIONS(3957), + [anon_sym_PIPE_AMP] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [sym__special_characters] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3957), + [sym_raw_string] = ACTIONS(3957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), + [anon_sym_BQUOTE] = ACTIONS(3957), + [anon_sym_LT_LPAREN] = ACTIONS(3957), + [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3957), + [sym_word] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), + }, + [2686] = { + [sym_concatenation] = STATE(2716), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(2716), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_EQ] = ACTIONS(6288), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(6290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(6288), + [anon_sym_COLON_QMARK] = ACTIONS(6288), + [anon_sym_COLON_DASH] = ACTIONS(6288), + [anon_sym_PERCENT] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2687] = { + [sym__concat] = ACTIONS(3965), + [anon_sym_esac] = ACTIONS(3967), + [anon_sym_PIPE] = ACTIONS(3967), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_PIPE_PIPE] = ACTIONS(3967), + [sym__special_characters] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3967), + [sym_raw_string] = ACTIONS(3967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3967), + [anon_sym_BQUOTE] = ACTIONS(3967), + [anon_sym_LT_LPAREN] = ACTIONS(3967), + [anon_sym_GT_LPAREN] = ACTIONS(3967), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3967), + [sym_word] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3967), + }, + [2688] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6292), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2689] = { + [sym__concat] = ACTIONS(3971), + [anon_sym_esac] = ACTIONS(3973), + [anon_sym_PIPE] = ACTIONS(3973), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [sym__special_characters] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_DOLLAR] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3973), + [anon_sym_BQUOTE] = ACTIONS(3973), + [anon_sym_LT_LPAREN] = ACTIONS(3973), + [anon_sym_GT_LPAREN] = ACTIONS(3973), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3973), + [sym_word] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3973), + [anon_sym_LF] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3973), + }, + [2690] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2691] = { + [sym__concat] = ACTIONS(3977), + [anon_sym_esac] = ACTIONS(3979), + [anon_sym_PIPE] = ACTIONS(3979), + [anon_sym_SEMI_SEMI] = ACTIONS(3979), + [anon_sym_PIPE_AMP] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_PIPE_PIPE] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3979), + [sym_raw_string] = ACTIONS(3979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3979), + [anon_sym_BQUOTE] = ACTIONS(3979), + [anon_sym_LT_LPAREN] = ACTIONS(3979), + [anon_sym_GT_LPAREN] = ACTIONS(3979), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3979), + [sym_word] = ACTIONS(3979), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym_LF] = ACTIONS(3977), + [anon_sym_AMP] = ACTIONS(3979), + }, + [2692] = { + [sym__concat] = ACTIONS(4001), + [anon_sym_esac] = ACTIONS(4003), + [anon_sym_PIPE] = ACTIONS(4003), + [anon_sym_SEMI_SEMI] = ACTIONS(4003), + [anon_sym_PIPE_AMP] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_PIPE_PIPE] = ACTIONS(4003), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [anon_sym_DOLLAR] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(4003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4003), + [anon_sym_BQUOTE] = ACTIONS(4003), + [anon_sym_LT_LPAREN] = ACTIONS(4003), + [anon_sym_GT_LPAREN] = ACTIONS(4003), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4003), + [sym_word] = ACTIONS(4003), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4003), + }, + [2693] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(6113), + [anon_sym_DQUOTE] = ACTIONS(6115), + [anon_sym_DOLLAR] = ACTIONS(6113), + [sym_raw_string] = ACTIONS(6115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6115), + [anon_sym_BQUOTE] = ACTIONS(6115), + [anon_sym_LT_LPAREN] = ACTIONS(6115), + [anon_sym_GT_LPAREN] = ACTIONS(6115), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6113), }, - [2926] = { - [anon_sym_RBRACE] = ACTIONS(6900), + [2694] = { + [sym_file_descriptor] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_for] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_case] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_function] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(817), + [anon_sym_declare] = ACTIONS(819), + [anon_sym_typeset] = ACTIONS(819), + [anon_sym_export] = ACTIONS(819), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_local] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(819), + [anon_sym_unsetenv] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(6119), + [anon_sym_DQUOTE] = ACTIONS(6121), + [anon_sym_DOLLAR] = ACTIONS(6119), + [sym_raw_string] = ACTIONS(6121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6121), + [anon_sym_BQUOTE] = ACTIONS(6121), + [anon_sym_LT_LPAREN] = ACTIONS(6121), + [anon_sym_GT_LPAREN] = ACTIONS(6121), [sym_comment] = ACTIONS(53), - }, - [2927] = { - [sym_concatenation] = STATE(2993), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(2993), - [anon_sym_RBRACE] = ACTIONS(6902), - [anon_sym_EQ] = ACTIONS(6904), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6906), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6904), - [anon_sym_COLON_QMARK] = ACTIONS(6904), - [anon_sym_COLON_DASH] = ACTIONS(6904), - [anon_sym_PERCENT] = ACTIONS(6904), - [anon_sym_DASH] = ACTIONS(6904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2928] = { - [sym__concat] = ACTIONS(3016), - [sym_variable_name] = ACTIONS(3016), - [anon_sym_esac] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [anon_sym_PIPE_AMP] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [sym__special_characters] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [anon_sym_LT_LPAREN] = ACTIONS(3018), - [anon_sym_GT_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), - [sym_word] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), - }, - [2929] = { - [sym_concatenation] = STATE(2996), - [sym_string] = STATE(2995), - [sym_simple_expansion] = STATE(2995), - [sym_string_expansion] = STATE(2995), - [sym_expansion] = STATE(2995), - [sym_command_substitution] = STATE(2995), - [sym_process_substitution] = STATE(2995), - [anon_sym_RBRACE] = ACTIONS(6900), - [sym__special_characters] = ACTIONS(6908), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(6910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6910), - }, - [2930] = { - [sym__concat] = ACTIONS(3059), - [sym_variable_name] = ACTIONS(3059), - [anon_sym_esac] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_SEMI_SEMI] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), - [anon_sym_BQUOTE] = ACTIONS(3061), - [anon_sym_LT_LPAREN] = ACTIONS(3061), - [anon_sym_GT_LPAREN] = ACTIONS(3061), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - }, - [2931] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6912), - }, - [2932] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6914), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2933] = { - [sym__concat] = ACTIONS(3067), - [sym_variable_name] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3069), - [anon_sym_PIPE_AMP] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym__special_characters] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3069), - [anon_sym_LT_LPAREN] = ACTIONS(3069), - [anon_sym_GT_LPAREN] = ACTIONS(3069), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), - [sym_word] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), - }, - [2934] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6916), - }, - [2935] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6918), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2936] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6920), - }, - [2937] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6900), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2938] = { - [sym_concatenation] = STATE(3003), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3003), - [anon_sym_RBRACE] = ACTIONS(6922), - [anon_sym_EQ] = ACTIONS(6924), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6924), - [anon_sym_COLON_QMARK] = ACTIONS(6924), - [anon_sym_COLON_DASH] = ACTIONS(6924), - [anon_sym_PERCENT] = ACTIONS(6924), - [anon_sym_DASH] = ACTIONS(6924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2939] = { - [sym__concat] = ACTIONS(3083), - [sym_variable_name] = ACTIONS(3083), - [anon_sym_esac] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3085), - [anon_sym_PIPE_AMP] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [sym__special_characters] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), - [anon_sym_BQUOTE] = ACTIONS(3085), - [anon_sym_LT_LPAREN] = ACTIONS(3085), - [anon_sym_GT_LPAREN] = ACTIONS(3085), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), - [sym_word] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - }, - [2940] = { - [sym_concatenation] = STATE(3005), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3005), - [anon_sym_RBRACE] = ACTIONS(6928), - [anon_sym_EQ] = ACTIONS(6930), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6932), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6930), - [anon_sym_COLON_QMARK] = ACTIONS(6930), - [anon_sym_COLON_DASH] = ACTIONS(6930), - [anon_sym_PERCENT] = ACTIONS(6930), - [anon_sym_DASH] = ACTIONS(6930), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2941] = { - [sym__concat] = ACTIONS(2920), - [anon_sym_esac] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), - [anon_sym_PIPE_AMP] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [sym__special_characters] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_DOLLAR] = ACTIONS(2922), - [sym_raw_string] = ACTIONS(2922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2922), - [anon_sym_BQUOTE] = ACTIONS(2922), - [anon_sym_LT_LPAREN] = ACTIONS(2922), - [anon_sym_GT_LPAREN] = ACTIONS(2922), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2922), - [sym_word] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), - }, - [2942] = { - [sym__concat] = ACTIONS(2934), - [anon_sym_esac] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_SEMI_SEMI] = ACTIONS(2936), - [anon_sym_PIPE_AMP] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2936), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2936), - [anon_sym_BQUOTE] = ACTIONS(2936), - [anon_sym_LT_LPAREN] = ACTIONS(2936), - [anon_sym_GT_LPAREN] = ACTIONS(2936), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2936), - [sym_word] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - }, - [2943] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6934), - [sym_comment] = ACTIONS(53), - }, - [2944] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6936), - [sym_comment] = ACTIONS(53), - }, - [2945] = { - [anon_sym_RBRACE] = ACTIONS(6936), - [sym_comment] = ACTIONS(53), - }, - [2946] = { - [sym_concatenation] = STATE(3009), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3009), - [anon_sym_RBRACE] = ACTIONS(6938), - [anon_sym_EQ] = ACTIONS(6940), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6940), - [anon_sym_COLON_QMARK] = ACTIONS(6940), - [anon_sym_COLON_DASH] = ACTIONS(6940), - [anon_sym_PERCENT] = ACTIONS(6940), - [anon_sym_DASH] = ACTIONS(6940), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2947] = { - [sym__concat] = ACTIONS(3016), - [anon_sym_esac] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [anon_sym_PIPE_AMP] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [sym__special_characters] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_DOLLAR] = ACTIONS(3018), - [sym_raw_string] = ACTIONS(3018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [anon_sym_LT_LPAREN] = ACTIONS(3018), - [anon_sym_GT_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3018), - [sym_word] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), - }, - [2948] = { - [sym_concatenation] = STATE(3012), - [sym_string] = STATE(3011), - [sym_simple_expansion] = STATE(3011), - [sym_string_expansion] = STATE(3011), - [sym_expansion] = STATE(3011), - [sym_command_substitution] = STATE(3011), - [sym_process_substitution] = STATE(3011), - [anon_sym_RBRACE] = ACTIONS(6936), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(6946), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LT_LPAREN] = ACTIONS(1844), - [anon_sym_GT_LPAREN] = ACTIONS(1844), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6946), - }, - [2949] = { - [sym__concat] = ACTIONS(3059), - [anon_sym_esac] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_SEMI_SEMI] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(3061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3061), - [anon_sym_BQUOTE] = ACTIONS(3061), - [anon_sym_LT_LPAREN] = ACTIONS(3061), - [anon_sym_GT_LPAREN] = ACTIONS(3061), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - }, - [2950] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6948), - }, - [2951] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6950), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2952] = { - [sym__concat] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3069), - [anon_sym_PIPE_AMP] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym__special_characters] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3069), - [sym_raw_string] = ACTIONS(3069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3069), - [anon_sym_LT_LPAREN] = ACTIONS(3069), - [anon_sym_GT_LPAREN] = ACTIONS(3069), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), - [sym_word] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), - }, - [2953] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6952), - }, - [2954] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6954), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2955] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6956), - }, - [2956] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6936), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2957] = { - [sym_concatenation] = STATE(3019), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3019), - [anon_sym_RBRACE] = ACTIONS(6958), - [anon_sym_EQ] = ACTIONS(6960), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6960), - [anon_sym_COLON_QMARK] = ACTIONS(6960), - [anon_sym_COLON_DASH] = ACTIONS(6960), - [anon_sym_PERCENT] = ACTIONS(6960), - [anon_sym_DASH] = ACTIONS(6960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2958] = { - [sym__concat] = ACTIONS(3083), - [anon_sym_esac] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3085), - [anon_sym_PIPE_AMP] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [sym__special_characters] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3085), - [sym_raw_string] = ACTIONS(3085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3085), - [anon_sym_BQUOTE] = ACTIONS(3085), - [anon_sym_LT_LPAREN] = ACTIONS(3085), - [anon_sym_GT_LPAREN] = ACTIONS(3085), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3085), - [sym_word] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - }, - [2959] = { - [sym_concatenation] = STATE(3021), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3021), - [anon_sym_RBRACE] = ACTIONS(6964), - [anon_sym_EQ] = ACTIONS(6966), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6966), - [anon_sym_COLON_QMARK] = ACTIONS(6966), - [anon_sym_COLON_DASH] = ACTIONS(6966), - [anon_sym_PERCENT] = ACTIONS(6966), - [anon_sym_DASH] = ACTIONS(6966), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2960] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__simple_heredoc_body] = ACTIONS(1754), - [sym__heredoc_body_beginning] = ACTIONS(1754), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(1758), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [2961] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6615), - [anon_sym_DQUOTE] = ACTIONS(6617), - [anon_sym_DOLLAR] = ACTIONS(6615), - [sym_raw_string] = ACTIONS(6617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), - [anon_sym_BQUOTE] = ACTIONS(6617), - [anon_sym_LT_LPAREN] = ACTIONS(6617), - [anon_sym_GT_LPAREN] = ACTIONS(6617), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6615), - }, - [2962] = { - [sym__special_characters] = ACTIONS(6617), - [anon_sym_DQUOTE] = ACTIONS(6617), - [anon_sym_DOLLAR] = ACTIONS(6615), - [sym_raw_string] = ACTIONS(6617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), - [anon_sym_BQUOTE] = ACTIONS(6617), - [anon_sym_LT_LPAREN] = ACTIONS(6617), - [anon_sym_GT_LPAREN] = ACTIONS(6617), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6617), - }, - [2963] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6970), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [2964] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6970), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [2965] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6625), - [anon_sym_DOLLAR] = ACTIONS(6623), - [sym_raw_string] = ACTIONS(6625), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6625), - [anon_sym_BQUOTE] = ACTIONS(6625), - [anon_sym_LT_LPAREN] = ACTIONS(6625), - [anon_sym_GT_LPAREN] = ACTIONS(6625), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6623), - }, - [2966] = { - [sym__special_characters] = ACTIONS(6625), - [anon_sym_DQUOTE] = ACTIONS(6625), - [anon_sym_DOLLAR] = ACTIONS(6623), - [sym_raw_string] = ACTIONS(6625), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6625), - [anon_sym_BQUOTE] = ACTIONS(6625), - [anon_sym_LT_LPAREN] = ACTIONS(6625), - [anon_sym_GT_LPAREN] = ACTIONS(6625), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6625), - }, - [2967] = { - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6972), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [2968] = { - [sym_file_descriptor] = ACTIONS(371), - [sym_variable_name] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(6972), - [anon_sym_PIPE_AMP] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(333), - }, - [2969] = { - [sym_file_descriptor] = ACTIONS(5879), - [sym__concat] = ACTIONS(5879), - [anon_sym_esac] = ACTIONS(5881), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5881), - [anon_sym_SEMI_SEMI] = ACTIONS(5881), - [anon_sym_PIPE_AMP] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5881), - [anon_sym_PIPE_PIPE] = ACTIONS(5881), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_GT_GT] = ACTIONS(5881), - [anon_sym_AMP_GT] = ACTIONS(5881), - [anon_sym_AMP_GT_GT] = ACTIONS(5881), - [anon_sym_LT_AMP] = ACTIONS(5881), - [anon_sym_GT_AMP] = ACTIONS(5881), - [anon_sym_LT_LT] = ACTIONS(5881), - [anon_sym_LT_LT_DASH] = ACTIONS(5881), - [anon_sym_LT_LT_LT] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5881), - }, - [2970] = { - [sym_file_descriptor] = ACTIONS(5883), - [sym__concat] = ACTIONS(5883), - [anon_sym_esac] = ACTIONS(5885), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5885), - [anon_sym_SEMI_SEMI] = ACTIONS(5885), - [anon_sym_PIPE_AMP] = ACTIONS(5885), - [anon_sym_AMP_AMP] = ACTIONS(5885), - [anon_sym_PIPE_PIPE] = ACTIONS(5885), - [anon_sym_LT] = ACTIONS(5885), - [anon_sym_GT] = ACTIONS(5885), - [anon_sym_GT_GT] = ACTIONS(5885), - [anon_sym_AMP_GT] = ACTIONS(5885), - [anon_sym_AMP_GT_GT] = ACTIONS(5885), - [anon_sym_LT_AMP] = ACTIONS(5885), - [anon_sym_GT_AMP] = ACTIONS(5885), - [anon_sym_LT_LT] = ACTIONS(5885), - [anon_sym_LT_LT_DASH] = ACTIONS(5885), - [anon_sym_LT_LT_LT] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5885), - [anon_sym_LF] = ACTIONS(5883), - [anon_sym_AMP] = ACTIONS(5885), - }, - [2971] = { - [sym_file_descriptor] = ACTIONS(5887), - [sym__concat] = ACTIONS(5887), - [anon_sym_esac] = ACTIONS(5889), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5889), - [anon_sym_SEMI_SEMI] = ACTIONS(5889), - [anon_sym_PIPE_AMP] = ACTIONS(5889), - [anon_sym_AMP_AMP] = ACTIONS(5889), - [anon_sym_PIPE_PIPE] = ACTIONS(5889), - [anon_sym_LT] = ACTIONS(5889), - [anon_sym_GT] = ACTIONS(5889), - [anon_sym_GT_GT] = ACTIONS(5889), - [anon_sym_AMP_GT] = ACTIONS(5889), - [anon_sym_AMP_GT_GT] = ACTIONS(5889), - [anon_sym_LT_AMP] = ACTIONS(5889), - [anon_sym_GT_AMP] = ACTIONS(5889), - [anon_sym_LT_LT] = ACTIONS(5889), - [anon_sym_LT_LT_DASH] = ACTIONS(5889), - [anon_sym_LT_LT_LT] = ACTIONS(5889), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LF] = ACTIONS(5887), - [anon_sym_AMP] = ACTIONS(5889), - }, - [2972] = { - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_LT_LT_DASH] = ACTIONS(5202), - [anon_sym_LT_LT_LT] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [sym_comment] = ACTIONS(53), - }, - [2973] = { - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_LT_LT_DASH] = ACTIONS(5206), - [anon_sym_LT_LT_LT] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [sym_comment] = ACTIONS(53), - }, - [2974] = { - [sym_file_descriptor] = ACTIONS(5210), - [sym__concat] = ACTIONS(5210), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_PIPE_AMP] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [anon_sym_LT] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5210), - [anon_sym_AMP_GT] = ACTIONS(5212), - [anon_sym_AMP_GT_GT] = ACTIONS(5210), - [anon_sym_LT_AMP] = ACTIONS(5210), - [anon_sym_GT_AMP] = ACTIONS(5210), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_LT_LT_DASH] = ACTIONS(5210), - [anon_sym_LT_LT_LT] = ACTIONS(5210), - [anon_sym_BQUOTE] = ACTIONS(5210), - [sym_comment] = ACTIONS(53), - }, - [2975] = { - [sym_file_descriptor] = ACTIONS(5214), - [sym__concat] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_PIPE_AMP] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5214), - [anon_sym_AMP_GT] = ACTIONS(5216), - [anon_sym_AMP_GT_GT] = ACTIONS(5214), - [anon_sym_LT_AMP] = ACTIONS(5214), - [anon_sym_GT_AMP] = ACTIONS(5214), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_LT_LT_DASH] = ACTIONS(5214), - [anon_sym_LT_LT_LT] = ACTIONS(5214), - [anon_sym_BQUOTE] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - }, - [2976] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6974), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2977] = { - [sym_file_descriptor] = ACTIONS(5220), - [sym__concat] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_PIPE_AMP] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_LT] = ACTIONS(5222), - [anon_sym_GT] = ACTIONS(5222), - [anon_sym_GT_GT] = ACTIONS(5220), - [anon_sym_AMP_GT] = ACTIONS(5222), - [anon_sym_AMP_GT_GT] = ACTIONS(5220), - [anon_sym_LT_AMP] = ACTIONS(5220), - [anon_sym_GT_AMP] = ACTIONS(5220), - [anon_sym_LT_LT] = ACTIONS(5222), - [anon_sym_LT_LT_DASH] = ACTIONS(5220), - [anon_sym_LT_LT_LT] = ACTIONS(5220), - [anon_sym_BQUOTE] = ACTIONS(5220), - [sym_comment] = ACTIONS(53), - }, - [2978] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6976), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2979] = { - [sym_file_descriptor] = ACTIONS(5226), - [sym__concat] = ACTIONS(5226), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_RPAREN] = ACTIONS(5226), - [anon_sym_PIPE_AMP] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_PIPE_PIPE] = ACTIONS(5226), - [anon_sym_LT] = ACTIONS(5228), - [anon_sym_GT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5226), - [anon_sym_AMP_GT] = ACTIONS(5228), - [anon_sym_AMP_GT_GT] = ACTIONS(5226), - [anon_sym_LT_AMP] = ACTIONS(5226), - [anon_sym_GT_AMP] = ACTIONS(5226), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_LT_LT_DASH] = ACTIONS(5226), - [anon_sym_LT_LT_LT] = ACTIONS(5226), - [anon_sym_BQUOTE] = ACTIONS(5226), - [sym_comment] = ACTIONS(53), - }, - [2980] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6978), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2981] = { - [sym_file_descriptor] = ACTIONS(5232), - [sym__concat] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_PIPE_AMP] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_LT] = ACTIONS(5234), - [anon_sym_GT] = ACTIONS(5234), - [anon_sym_GT_GT] = ACTIONS(5232), - [anon_sym_AMP_GT] = ACTIONS(5234), - [anon_sym_AMP_GT_GT] = ACTIONS(5232), - [anon_sym_LT_AMP] = ACTIONS(5232), - [anon_sym_GT_AMP] = ACTIONS(5232), - [anon_sym_LT_LT] = ACTIONS(5234), - [anon_sym_LT_LT_DASH] = ACTIONS(5232), - [anon_sym_LT_LT_LT] = ACTIONS(5232), - [anon_sym_BQUOTE] = ACTIONS(5232), - [sym_comment] = ACTIONS(53), - }, - [2982] = { - [sym_file_descriptor] = ACTIONS(5236), - [sym__concat] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym_PIPE_AMP] = ACTIONS(5236), - [anon_sym_AMP_AMP] = ACTIONS(5236), - [anon_sym_PIPE_PIPE] = ACTIONS(5236), - [anon_sym_LT] = ACTIONS(5238), - [anon_sym_GT] = ACTIONS(5238), - [anon_sym_GT_GT] = ACTIONS(5236), - [anon_sym_AMP_GT] = ACTIONS(5238), - [anon_sym_AMP_GT_GT] = ACTIONS(5236), - [anon_sym_LT_AMP] = ACTIONS(5236), - [anon_sym_GT_AMP] = ACTIONS(5236), - [anon_sym_LT_LT] = ACTIONS(5238), - [anon_sym_LT_LT_DASH] = ACTIONS(5236), - [anon_sym_LT_LT_LT] = ACTIONS(5236), - [anon_sym_BQUOTE] = ACTIONS(5236), - [sym_comment] = ACTIONS(53), - }, - [2983] = { - [aux_sym_concatenation_repeat1] = STATE(2985), - [sym__concat] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LF] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), - }, - [2984] = { - [aux_sym_concatenation_repeat1] = STATE(2985), - [sym__concat] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [2985] = { - [aux_sym_concatenation_repeat1] = STATE(3027), - [sym__concat] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2986] = { - [aux_sym_concatenation_repeat1] = STATE(2988), - [sym_file_descriptor] = ACTIONS(1133), - [sym__concat] = ACTIONS(3932), - [anon_sym_esac] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_SEMI_SEMI] = ACTIONS(1135), - [anon_sym_PIPE_AMP] = ACTIONS(1135), - [anon_sym_AMP_AMP] = ACTIONS(1135), - [anon_sym_PIPE_PIPE] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_GT_GT] = ACTIONS(1135), - [anon_sym_AMP_GT] = ACTIONS(1135), - [anon_sym_AMP_GT_GT] = ACTIONS(1135), - [anon_sym_LT_AMP] = ACTIONS(1135), - [anon_sym_GT_AMP] = ACTIONS(1135), - [anon_sym_LT_LT] = ACTIONS(1135), - [anon_sym_LT_LT_DASH] = ACTIONS(1135), - [anon_sym_LT_LT_LT] = ACTIONS(1135), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LF] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1135), - }, - [2987] = { - [aux_sym_concatenation_repeat1] = STATE(2988), - [sym_file_descriptor] = ACTIONS(1137), - [sym__concat] = ACTIONS(3932), - [anon_sym_esac] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1139), - [anon_sym_SEMI_SEMI] = ACTIONS(1139), - [anon_sym_PIPE_AMP] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_GT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1139), - [anon_sym_AMP_GT] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1139), - [anon_sym_LT_AMP] = ACTIONS(1139), - [anon_sym_GT_AMP] = ACTIONS(1139), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_LT_LT_DASH] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LF] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - }, - [2988] = { - [aux_sym_concatenation_repeat1] = STATE(3028), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(3932), - [anon_sym_esac] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_LT_LT_LT] = ACTIONS(733), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(733), - }, - [2989] = { - [sym_variable_name] = ACTIONS(3581), - [anon_sym_esac] = ACTIONS(3583), - [anon_sym_PIPE] = ACTIONS(3583), - [anon_sym_SEMI_SEMI] = ACTIONS(3583), - [anon_sym_PIPE_AMP] = ACTIONS(3583), - [anon_sym_AMP_AMP] = ACTIONS(3583), - [anon_sym_PIPE_PIPE] = ACTIONS(3583), - [sym__special_characters] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_DOLLAR] = ACTIONS(3583), - [sym_raw_string] = ACTIONS(3583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3583), - [anon_sym_BQUOTE] = ACTIONS(3583), - [anon_sym_LT_LPAREN] = ACTIONS(3583), - [anon_sym_GT_LPAREN] = ACTIONS(3583), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3583), - [sym_word] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3583), - [anon_sym_LF] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3583), - }, - [2990] = { - [sym__concat] = ACTIONS(4164), - [sym_variable_name] = ACTIONS(4164), - [anon_sym_esac] = ACTIONS(4166), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_SEMI_SEMI] = ACTIONS(4166), - [anon_sym_PIPE_AMP] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [sym__special_characters] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), - [anon_sym_BQUOTE] = ACTIONS(4166), - [anon_sym_LT_LPAREN] = ACTIONS(4166), - [anon_sym_GT_LPAREN] = ACTIONS(4166), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), - [sym_word] = ACTIONS(4166), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4166), - }, - [2991] = { - [sym__concat] = ACTIONS(4172), - [sym_variable_name] = ACTIONS(4172), - [anon_sym_esac] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE_PIPE] = ACTIONS(4174), - [sym__special_characters] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), - [anon_sym_BQUOTE] = ACTIONS(4174), - [anon_sym_LT_LPAREN] = ACTIONS(4174), - [anon_sym_GT_LPAREN] = ACTIONS(4174), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), - [sym_word] = ACTIONS(4174), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4174), - }, - [2992] = { - [sym__concat] = ACTIONS(4259), - [sym_variable_name] = ACTIONS(4259), - [anon_sym_esac] = ACTIONS(4261), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_SEMI_SEMI] = ACTIONS(4261), - [anon_sym_PIPE_AMP] = ACTIONS(4261), - [anon_sym_AMP_AMP] = ACTIONS(4261), - [anon_sym_PIPE_PIPE] = ACTIONS(4261), - [sym__special_characters] = ACTIONS(4261), - [anon_sym_DQUOTE] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), - [anon_sym_BQUOTE] = ACTIONS(4261), - [anon_sym_LT_LPAREN] = ACTIONS(4261), - [anon_sym_GT_LPAREN] = ACTIONS(4261), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), - [sym_word] = ACTIONS(4261), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), - }, - [2993] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(6980), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2994] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6982), - [sym_comment] = ACTIONS(53), - }, - [2995] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(6984), - [sym_comment] = ACTIONS(53), - }, - [2996] = { - [anon_sym_RBRACE] = ACTIONS(6984), - [sym_comment] = ACTIONS(53), - }, - [2997] = { - [sym_concatenation] = STATE(3033), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3033), - [anon_sym_RBRACE] = ACTIONS(6986), - [anon_sym_EQ] = ACTIONS(6988), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6988), - [anon_sym_COLON_QMARK] = ACTIONS(6988), - [anon_sym_COLON_DASH] = ACTIONS(6988), - [anon_sym_PERCENT] = ACTIONS(6988), - [anon_sym_DASH] = ACTIONS(6988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [2998] = { - [sym__concat] = ACTIONS(4275), - [sym_variable_name] = ACTIONS(4275), - [anon_sym_esac] = ACTIONS(4277), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_SEMI_SEMI] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4277), - [anon_sym_GT_LPAREN] = ACTIONS(4277), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), - [sym_word] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - }, - [2999] = { - [sym_concatenation] = STATE(3035), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3035), - [anon_sym_RBRACE] = ACTIONS(6992), - [anon_sym_EQ] = ACTIONS(6994), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(6996), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(6994), - [anon_sym_COLON_QMARK] = ACTIONS(6994), - [anon_sym_COLON_DASH] = ACTIONS(6994), - [anon_sym_PERCENT] = ACTIONS(6994), - [anon_sym_DASH] = ACTIONS(6994), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3000] = { - [sym__concat] = ACTIONS(4285), - [sym_variable_name] = ACTIONS(4285), - [anon_sym_esac] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [anon_sym_PIPE_AMP] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [sym__special_characters] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(4287), - [anon_sym_LT_LPAREN] = ACTIONS(4287), - [anon_sym_GT_LPAREN] = ACTIONS(4287), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), - [sym_word] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(4287), - }, - [3001] = { - [sym_concatenation] = STATE(3037), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3037), - [anon_sym_RBRACE] = ACTIONS(6998), - [anon_sym_EQ] = ACTIONS(7000), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(7002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(7000), - [anon_sym_COLON_QMARK] = ACTIONS(7000), - [anon_sym_COLON_DASH] = ACTIONS(7000), - [anon_sym_PERCENT] = ACTIONS(7000), - [anon_sym_DASH] = ACTIONS(7000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3002] = { - [sym__concat] = ACTIONS(4295), - [sym_variable_name] = ACTIONS(4295), - [anon_sym_esac] = ACTIONS(4297), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [sym__special_characters] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), - [anon_sym_BQUOTE] = ACTIONS(4297), - [anon_sym_LT_LPAREN] = ACTIONS(4297), - [anon_sym_GT_LPAREN] = ACTIONS(4297), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), - [sym_word] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4297), - }, - [3003] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7004), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3004] = { - [sym__concat] = ACTIONS(4301), - [sym_variable_name] = ACTIONS(4301), - [anon_sym_esac] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [sym__special_characters] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LT_LPAREN] = ACTIONS(4303), - [anon_sym_GT_LPAREN] = ACTIONS(4303), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), - [sym_word] = ACTIONS(4303), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4303), - }, - [3005] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7006), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3006] = { - [sym__concat] = ACTIONS(4164), - [anon_sym_esac] = ACTIONS(4166), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_SEMI_SEMI] = ACTIONS(4166), - [anon_sym_PIPE_AMP] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [sym__special_characters] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [anon_sym_DOLLAR] = ACTIONS(4166), - [sym_raw_string] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4166), - [anon_sym_BQUOTE] = ACTIONS(4166), - [anon_sym_LT_LPAREN] = ACTIONS(4166), - [anon_sym_GT_LPAREN] = ACTIONS(4166), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4166), - [sym_word] = ACTIONS(4166), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4166), - }, - [3007] = { - [sym__concat] = ACTIONS(4172), - [anon_sym_esac] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4174), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE_PIPE] = ACTIONS(4174), - [sym__special_characters] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4174), - [sym_raw_string] = ACTIONS(4174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4174), - [anon_sym_BQUOTE] = ACTIONS(4174), - [anon_sym_LT_LPAREN] = ACTIONS(4174), - [anon_sym_GT_LPAREN] = ACTIONS(4174), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4174), - [sym_word] = ACTIONS(4174), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4174), - }, - [3008] = { - [sym__concat] = ACTIONS(4259), - [anon_sym_esac] = ACTIONS(4261), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_SEMI_SEMI] = ACTIONS(4261), - [anon_sym_PIPE_AMP] = ACTIONS(4261), - [anon_sym_AMP_AMP] = ACTIONS(4261), - [anon_sym_PIPE_PIPE] = ACTIONS(4261), - [sym__special_characters] = ACTIONS(4261), - [anon_sym_DQUOTE] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(4261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4261), - [anon_sym_BQUOTE] = ACTIONS(4261), - [anon_sym_LT_LPAREN] = ACTIONS(4261), - [anon_sym_GT_LPAREN] = ACTIONS(4261), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4261), - [sym_word] = ACTIONS(4261), - [anon_sym_SEMI] = ACTIONS(4261), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), - }, - [3009] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7008), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3010] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(7010), - [sym_comment] = ACTIONS(53), - }, - [3011] = { - [aux_sym_concatenation_repeat1] = STATE(1346), - [sym__concat] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(7012), - [sym_comment] = ACTIONS(53), - }, - [3012] = { - [anon_sym_RBRACE] = ACTIONS(7012), - [sym_comment] = ACTIONS(53), - }, - [3013] = { - [sym_concatenation] = STATE(3044), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3044), - [anon_sym_RBRACE] = ACTIONS(7014), - [anon_sym_EQ] = ACTIONS(7016), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(7016), - [anon_sym_COLON_QMARK] = ACTIONS(7016), - [anon_sym_COLON_DASH] = ACTIONS(7016), - [anon_sym_PERCENT] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3014] = { - [sym__concat] = ACTIONS(4275), - [anon_sym_esac] = ACTIONS(4277), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_SEMI_SEMI] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(4277), - [anon_sym_AMP_AMP] = ACTIONS(4277), - [anon_sym_PIPE_PIPE] = ACTIONS(4277), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4277), - [anon_sym_GT_LPAREN] = ACTIONS(4277), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), - [sym_word] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4277), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - }, - [3015] = { - [sym_concatenation] = STATE(3046), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3046), - [anon_sym_RBRACE] = ACTIONS(7020), - [anon_sym_EQ] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(7022), - [anon_sym_COLON_QMARK] = ACTIONS(7022), - [anon_sym_COLON_DASH] = ACTIONS(7022), - [anon_sym_PERCENT] = ACTIONS(7022), - [anon_sym_DASH] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3016] = { - [sym__concat] = ACTIONS(4285), - [anon_sym_esac] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [anon_sym_PIPE_AMP] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [sym__special_characters] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(4287), - [anon_sym_LT_LPAREN] = ACTIONS(4287), - [anon_sym_GT_LPAREN] = ACTIONS(4287), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4287), - [sym_word] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(4287), - }, - [3017] = { - [sym_concatenation] = STATE(3048), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(3048), - [anon_sym_RBRACE] = ACTIONS(7026), - [anon_sym_EQ] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(7030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(7028), - [anon_sym_COLON_QMARK] = ACTIONS(7028), - [anon_sym_COLON_DASH] = ACTIONS(7028), - [anon_sym_PERCENT] = ACTIONS(7028), - [anon_sym_DASH] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3018] = { - [sym__concat] = ACTIONS(4295), - [anon_sym_esac] = ACTIONS(4297), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [sym__special_characters] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR] = ACTIONS(4297), - [sym_raw_string] = ACTIONS(4297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4297), - [anon_sym_BQUOTE] = ACTIONS(4297), - [anon_sym_LT_LPAREN] = ACTIONS(4297), - [anon_sym_GT_LPAREN] = ACTIONS(4297), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4297), - [sym_word] = ACTIONS(4297), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4297), - }, - [3019] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7032), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3020] = { - [sym__concat] = ACTIONS(4301), - [anon_sym_esac] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4303), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [sym__special_characters] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LT_LPAREN] = ACTIONS(4303), - [anon_sym_GT_LPAREN] = ACTIONS(4303), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4303), - [sym_word] = ACTIONS(4303), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4303), - }, - [3021] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7034), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3022] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6827), - [anon_sym_DQUOTE] = ACTIONS(6829), - [anon_sym_DOLLAR] = ACTIONS(6827), - [sym_raw_string] = ACTIONS(6829), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6829), - [anon_sym_BQUOTE] = ACTIONS(6829), - [anon_sym_LT_LPAREN] = ACTIONS(6829), - [anon_sym_GT_LPAREN] = ACTIONS(6829), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6827), - }, - [3023] = { - [sym_file_descriptor] = ACTIONS(995), - [sym_variable_name] = ACTIONS(995), - [anon_sym_for] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_case] = ACTIONS(997), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_typeset] = ACTIONS(997), - [anon_sym_export] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_local] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [anon_sym_unsetenv] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_AMP_GT] = ACTIONS(997), - [anon_sym_AMP_GT_GT] = ACTIONS(995), - [anon_sym_LT_AMP] = ACTIONS(995), - [anon_sym_GT_AMP] = ACTIONS(995), - [sym__special_characters] = ACTIONS(6833), - [anon_sym_DQUOTE] = ACTIONS(6835), - [anon_sym_DOLLAR] = ACTIONS(6833), - [sym_raw_string] = ACTIONS(6835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6835), - [anon_sym_BQUOTE] = ACTIONS(6835), - [anon_sym_LT_LPAREN] = ACTIONS(6835), - [anon_sym_GT_LPAREN] = ACTIONS(6835), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6833), - }, - [3024] = { - [sym_file_descriptor] = ACTIONS(5879), - [sym__concat] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_RPAREN] = ACTIONS(5879), - [anon_sym_PIPE_AMP] = ACTIONS(5879), - [anon_sym_AMP_AMP] = ACTIONS(5879), - [anon_sym_PIPE_PIPE] = ACTIONS(5879), - [anon_sym_LT] = ACTIONS(5881), - [anon_sym_GT] = ACTIONS(5881), - [anon_sym_GT_GT] = ACTIONS(5879), - [anon_sym_AMP_GT] = ACTIONS(5881), - [anon_sym_AMP_GT_GT] = ACTIONS(5879), - [anon_sym_LT_AMP] = ACTIONS(5879), - [anon_sym_GT_AMP] = ACTIONS(5879), - [anon_sym_LT_LT] = ACTIONS(5881), - [anon_sym_LT_LT_DASH] = ACTIONS(5879), - [anon_sym_LT_LT_LT] = ACTIONS(5879), - [anon_sym_BQUOTE] = ACTIONS(5879), - [sym_comment] = ACTIONS(53), - }, - [3025] = { - [sym_file_descriptor] = ACTIONS(5883), - [sym__concat] = ACTIONS(5883), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_RPAREN] = ACTIONS(5883), - [anon_sym_PIPE_AMP] = ACTIONS(5883), - [anon_sym_AMP_AMP] = ACTIONS(5883), - [anon_sym_PIPE_PIPE] = ACTIONS(5883), - [anon_sym_LT] = ACTIONS(5885), - [anon_sym_GT] = ACTIONS(5885), - [anon_sym_GT_GT] = ACTIONS(5883), - [anon_sym_AMP_GT] = ACTIONS(5885), - [anon_sym_AMP_GT_GT] = ACTIONS(5883), - [anon_sym_LT_AMP] = ACTIONS(5883), - [anon_sym_GT_AMP] = ACTIONS(5883), - [anon_sym_LT_LT] = ACTIONS(5885), - [anon_sym_LT_LT_DASH] = ACTIONS(5883), - [anon_sym_LT_LT_LT] = ACTIONS(5883), - [anon_sym_BQUOTE] = ACTIONS(5883), - [sym_comment] = ACTIONS(53), - }, - [3026] = { - [sym_file_descriptor] = ACTIONS(5887), - [sym__concat] = ACTIONS(5887), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5887), - [anon_sym_PIPE_AMP] = ACTIONS(5887), - [anon_sym_AMP_AMP] = ACTIONS(5887), - [anon_sym_PIPE_PIPE] = ACTIONS(5887), - [anon_sym_LT] = ACTIONS(5889), - [anon_sym_GT] = ACTIONS(5889), - [anon_sym_GT_GT] = ACTIONS(5887), - [anon_sym_AMP_GT] = ACTIONS(5889), - [anon_sym_AMP_GT_GT] = ACTIONS(5887), - [anon_sym_LT_AMP] = ACTIONS(5887), - [anon_sym_GT_AMP] = ACTIONS(5887), - [anon_sym_LT_LT] = ACTIONS(5889), - [anon_sym_LT_LT_DASH] = ACTIONS(5887), - [anon_sym_LT_LT_LT] = ACTIONS(5887), - [anon_sym_BQUOTE] = ACTIONS(5887), - [sym_comment] = ACTIONS(53), - }, - [3027] = { - [aux_sym_concatenation_repeat1] = STATE(3027), - [sym__concat] = ACTIONS(3690), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [3028] = { - [aux_sym_concatenation_repeat1] = STATE(3028), - [sym_file_descriptor] = ACTIONS(1754), - [sym__concat] = ACTIONS(5736), - [anon_sym_esac] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_SEMI_SEMI] = ACTIONS(1756), - [anon_sym_PIPE_AMP] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1756), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_LT_LT_DASH] = ACTIONS(1756), - [anon_sym_LT_LT_LT] = ACTIONS(1756), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - }, - [3029] = { - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [anon_sym_PIPE_AMP] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [sym__special_characters] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), - [anon_sym_BQUOTE] = ACTIONS(5204), - [anon_sym_LT_LPAREN] = ACTIONS(5204), - [anon_sym_GT_LPAREN] = ACTIONS(5204), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [3030] = { - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [anon_sym_PIPE_AMP] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5208), - [anon_sym_LT_LPAREN] = ACTIONS(5208), - [anon_sym_GT_LPAREN] = ACTIONS(5208), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [3031] = { - [sym__concat] = ACTIONS(5210), - [sym_variable_name] = ACTIONS(5210), - [anon_sym_esac] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_SEMI_SEMI] = ACTIONS(5212), - [anon_sym_PIPE_AMP] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [sym__special_characters] = ACTIONS(5212), - [anon_sym_DQUOTE] = ACTIONS(5212), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), - [anon_sym_BQUOTE] = ACTIONS(5212), - [anon_sym_LT_LPAREN] = ACTIONS(5212), - [anon_sym_GT_LPAREN] = ACTIONS(5212), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), - [sym_word] = ACTIONS(5212), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LF] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), - }, - [3032] = { - [sym__concat] = ACTIONS(5214), - [sym_variable_name] = ACTIONS(5214), - [anon_sym_esac] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), - [sym_word] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), - }, - [3033] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7036), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3034] = { - [sym__concat] = ACTIONS(5220), - [sym_variable_name] = ACTIONS(5220), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5222), - [anon_sym_PIPE_AMP] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_PIPE_PIPE] = ACTIONS(5222), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(5222), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), - [anon_sym_BQUOTE] = ACTIONS(5222), - [anon_sym_LT_LPAREN] = ACTIONS(5222), - [anon_sym_GT_LPAREN] = ACTIONS(5222), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [3035] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7038), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3036] = { - [sym__concat] = ACTIONS(5226), - [sym_variable_name] = ACTIONS(5226), - [anon_sym_esac] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_SEMI_SEMI] = ACTIONS(5228), - [anon_sym_PIPE_AMP] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [sym__special_characters] = ACTIONS(5228), - [anon_sym_DQUOTE] = ACTIONS(5228), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), - [anon_sym_BQUOTE] = ACTIONS(5228), - [anon_sym_LT_LPAREN] = ACTIONS(5228), - [anon_sym_GT_LPAREN] = ACTIONS(5228), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), - [sym_word] = ACTIONS(5228), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LF] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), - }, - [3037] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7040), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3038] = { - [sym__concat] = ACTIONS(5232), - [sym_variable_name] = ACTIONS(5232), - [anon_sym_esac] = ACTIONS(5234), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_SEMI_SEMI] = ACTIONS(5234), - [anon_sym_PIPE_AMP] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_PIPE_PIPE] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(5234), - [anon_sym_DQUOTE] = ACTIONS(5234), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), - [anon_sym_BQUOTE] = ACTIONS(5234), - [anon_sym_LT_LPAREN] = ACTIONS(5234), - [anon_sym_GT_LPAREN] = ACTIONS(5234), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), - [sym_word] = ACTIONS(5234), - [anon_sym_SEMI] = ACTIONS(5234), - [anon_sym_LF] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(5234), - }, - [3039] = { - [sym__concat] = ACTIONS(5236), - [sym_variable_name] = ACTIONS(5236), - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5238), - [anon_sym_PIPE_AMP] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_PIPE_PIPE] = ACTIONS(5238), - [sym__special_characters] = ACTIONS(5238), - [anon_sym_DQUOTE] = ACTIONS(5238), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), - [anon_sym_BQUOTE] = ACTIONS(5238), - [anon_sym_LT_LPAREN] = ACTIONS(5238), - [anon_sym_GT_LPAREN] = ACTIONS(5238), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), - [sym_word] = ACTIONS(5238), - [anon_sym_SEMI] = ACTIONS(5238), - [anon_sym_LF] = ACTIONS(5236), - [anon_sym_AMP] = ACTIONS(5238), - }, - [3040] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5204), - [anon_sym_PIPE_AMP] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [sym__special_characters] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), - [anon_sym_BQUOTE] = ACTIONS(5204), - [anon_sym_LT_LPAREN] = ACTIONS(5204), - [anon_sym_GT_LPAREN] = ACTIONS(5204), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [3041] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5208), - [anon_sym_PIPE_AMP] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5208), - [anon_sym_LT_LPAREN] = ACTIONS(5208), - [anon_sym_GT_LPAREN] = ACTIONS(5208), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [3042] = { - [sym__concat] = ACTIONS(5210), - [anon_sym_esac] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_SEMI_SEMI] = ACTIONS(5212), - [anon_sym_PIPE_AMP] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [sym__special_characters] = ACTIONS(5212), - [anon_sym_DQUOTE] = ACTIONS(5212), - [anon_sym_DOLLAR] = ACTIONS(5212), - [sym_raw_string] = ACTIONS(5212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5212), - [anon_sym_BQUOTE] = ACTIONS(5212), - [anon_sym_LT_LPAREN] = ACTIONS(5212), - [anon_sym_GT_LPAREN] = ACTIONS(5212), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5212), - [sym_word] = ACTIONS(5212), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_LF] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), - }, - [3043] = { - [sym__concat] = ACTIONS(5214), - [anon_sym_esac] = ACTIONS(5216), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_SEMI_SEMI] = ACTIONS(5216), - [anon_sym_PIPE_AMP] = ACTIONS(5216), - [anon_sym_AMP_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(5216), - [anon_sym_DQUOTE] = ACTIONS(5216), - [anon_sym_DOLLAR] = ACTIONS(5216), - [sym_raw_string] = ACTIONS(5216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5216), - [anon_sym_BQUOTE] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(5216), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5216), - [sym_word] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5216), - [anon_sym_LF] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), - }, - [3044] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7042), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3045] = { - [sym__concat] = ACTIONS(5220), - [anon_sym_esac] = ACTIONS(5222), - [anon_sym_PIPE] = ACTIONS(5222), - [anon_sym_SEMI_SEMI] = ACTIONS(5222), - [anon_sym_PIPE_AMP] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(5222), - [anon_sym_PIPE_PIPE] = ACTIONS(5222), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(5222), - [anon_sym_DOLLAR] = ACTIONS(5222), - [sym_raw_string] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5222), - [anon_sym_BQUOTE] = ACTIONS(5222), - [anon_sym_LT_LPAREN] = ACTIONS(5222), - [anon_sym_GT_LPAREN] = ACTIONS(5222), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5222), - [sym_word] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_LF] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5222), - }, - [3046] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7044), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3047] = { - [sym__concat] = ACTIONS(5226), - [anon_sym_esac] = ACTIONS(5228), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_SEMI_SEMI] = ACTIONS(5228), - [anon_sym_PIPE_AMP] = ACTIONS(5228), - [anon_sym_AMP_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5228), - [sym__special_characters] = ACTIONS(5228), - [anon_sym_DQUOTE] = ACTIONS(5228), - [anon_sym_DOLLAR] = ACTIONS(5228), - [sym_raw_string] = ACTIONS(5228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5228), - [anon_sym_BQUOTE] = ACTIONS(5228), - [anon_sym_LT_LPAREN] = ACTIONS(5228), - [anon_sym_GT_LPAREN] = ACTIONS(5228), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5228), - [sym_word] = ACTIONS(5228), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_LF] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), - }, - [3048] = { - [sym_concatenation] = STATE(889), - [sym_string] = STATE(434), - [sym_simple_expansion] = STATE(434), - [sym_string_expansion] = STATE(434), - [sym_expansion] = STATE(434), - [sym_command_substitution] = STATE(434), - [sym_process_substitution] = STATE(434), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(7046), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(791), - [sym_raw_string] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(805), - [anon_sym_GT_LPAREN] = ACTIONS(805), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(807), - }, - [3049] = { - [sym__concat] = ACTIONS(5232), - [anon_sym_esac] = ACTIONS(5234), - [anon_sym_PIPE] = ACTIONS(5234), - [anon_sym_SEMI_SEMI] = ACTIONS(5234), - [anon_sym_PIPE_AMP] = ACTIONS(5234), - [anon_sym_AMP_AMP] = ACTIONS(5234), - [anon_sym_PIPE_PIPE] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(5234), - [anon_sym_DQUOTE] = ACTIONS(5234), - [anon_sym_DOLLAR] = ACTIONS(5234), - [sym_raw_string] = ACTIONS(5234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5234), - [anon_sym_BQUOTE] = ACTIONS(5234), - [anon_sym_LT_LPAREN] = ACTIONS(5234), - [anon_sym_GT_LPAREN] = ACTIONS(5234), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5234), - [sym_word] = ACTIONS(5234), - [anon_sym_SEMI] = ACTIONS(5234), - [anon_sym_LF] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(5234), - }, - [3050] = { - [sym__concat] = ACTIONS(5236), - [anon_sym_esac] = ACTIONS(5238), - [anon_sym_PIPE] = ACTIONS(5238), - [anon_sym_SEMI_SEMI] = ACTIONS(5238), - [anon_sym_PIPE_AMP] = ACTIONS(5238), - [anon_sym_AMP_AMP] = ACTIONS(5238), - [anon_sym_PIPE_PIPE] = ACTIONS(5238), - [sym__special_characters] = ACTIONS(5238), - [anon_sym_DQUOTE] = ACTIONS(5238), - [anon_sym_DOLLAR] = ACTIONS(5238), - [sym_raw_string] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5238), - [anon_sym_BQUOTE] = ACTIONS(5238), - [anon_sym_LT_LPAREN] = ACTIONS(5238), - [anon_sym_GT_LPAREN] = ACTIONS(5238), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5238), - [sym_word] = ACTIONS(5238), - [anon_sym_SEMI] = ACTIONS(5238), - [anon_sym_LF] = ACTIONS(5236), - [anon_sym_AMP] = ACTIONS(5238), - }, - [3051] = { - [sym__concat] = ACTIONS(5879), - [sym_variable_name] = ACTIONS(5879), - [anon_sym_esac] = ACTIONS(5881), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_SEMI_SEMI] = ACTIONS(5881), - [anon_sym_PIPE_AMP] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5881), - [anon_sym_PIPE_PIPE] = ACTIONS(5881), - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5881), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), - [anon_sym_BQUOTE] = ACTIONS(5881), - [anon_sym_LT_LPAREN] = ACTIONS(5881), - [anon_sym_GT_LPAREN] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), - [sym_word] = ACTIONS(5881), - [anon_sym_SEMI] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5881), - }, - [3052] = { - [sym__concat] = ACTIONS(5883), - [sym_variable_name] = ACTIONS(5883), - [anon_sym_esac] = ACTIONS(5885), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_SEMI_SEMI] = ACTIONS(5885), - [anon_sym_PIPE_AMP] = ACTIONS(5885), - [anon_sym_AMP_AMP] = ACTIONS(5885), - [anon_sym_PIPE_PIPE] = ACTIONS(5885), - [sym__special_characters] = ACTIONS(5885), - [anon_sym_DQUOTE] = ACTIONS(5885), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), - [anon_sym_BQUOTE] = ACTIONS(5885), - [anon_sym_LT_LPAREN] = ACTIONS(5885), - [anon_sym_GT_LPAREN] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), - [sym_word] = ACTIONS(5885), - [anon_sym_SEMI] = ACTIONS(5885), - [anon_sym_LF] = ACTIONS(5883), - [anon_sym_AMP] = ACTIONS(5885), - }, - [3053] = { - [sym__concat] = ACTIONS(5887), - [sym_variable_name] = ACTIONS(5887), - [anon_sym_esac] = ACTIONS(5889), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_SEMI_SEMI] = ACTIONS(5889), - [anon_sym_PIPE_AMP] = ACTIONS(5889), - [anon_sym_AMP_AMP] = ACTIONS(5889), - [anon_sym_PIPE_PIPE] = ACTIONS(5889), - [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), - [anon_sym_BQUOTE] = ACTIONS(5889), - [anon_sym_LT_LPAREN] = ACTIONS(5889), - [anon_sym_GT_LPAREN] = ACTIONS(5889), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), - [sym_word] = ACTIONS(5889), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LF] = ACTIONS(5887), - [anon_sym_AMP] = ACTIONS(5889), - }, - [3054] = { - [sym__concat] = ACTIONS(5879), - [anon_sym_esac] = ACTIONS(5881), - [anon_sym_PIPE] = ACTIONS(5881), - [anon_sym_SEMI_SEMI] = ACTIONS(5881), - [anon_sym_PIPE_AMP] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5881), - [anon_sym_PIPE_PIPE] = ACTIONS(5881), - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5881), - [anon_sym_DOLLAR] = ACTIONS(5881), - [sym_raw_string] = ACTIONS(5881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5881), - [anon_sym_BQUOTE] = ACTIONS(5881), - [anon_sym_LT_LPAREN] = ACTIONS(5881), - [anon_sym_GT_LPAREN] = ACTIONS(5881), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5881), - [sym_word] = ACTIONS(5881), - [anon_sym_SEMI] = ACTIONS(5881), - [anon_sym_LF] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5881), - }, - [3055] = { - [sym__concat] = ACTIONS(5883), - [anon_sym_esac] = ACTIONS(5885), - [anon_sym_PIPE] = ACTIONS(5885), - [anon_sym_SEMI_SEMI] = ACTIONS(5885), - [anon_sym_PIPE_AMP] = ACTIONS(5885), - [anon_sym_AMP_AMP] = ACTIONS(5885), - [anon_sym_PIPE_PIPE] = ACTIONS(5885), - [sym__special_characters] = ACTIONS(5885), - [anon_sym_DQUOTE] = ACTIONS(5885), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5885), - [anon_sym_BQUOTE] = ACTIONS(5885), - [anon_sym_LT_LPAREN] = ACTIONS(5885), - [anon_sym_GT_LPAREN] = ACTIONS(5885), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5885), - [sym_word] = ACTIONS(5885), - [anon_sym_SEMI] = ACTIONS(5885), - [anon_sym_LF] = ACTIONS(5883), - [anon_sym_AMP] = ACTIONS(5885), - }, - [3056] = { - [sym__concat] = ACTIONS(5887), - [anon_sym_esac] = ACTIONS(5889), - [anon_sym_PIPE] = ACTIONS(5889), - [anon_sym_SEMI_SEMI] = ACTIONS(5889), - [anon_sym_PIPE_AMP] = ACTIONS(5889), - [anon_sym_AMP_AMP] = ACTIONS(5889), - [anon_sym_PIPE_PIPE] = ACTIONS(5889), - [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5889), - [anon_sym_BQUOTE] = ACTIONS(5889), - [anon_sym_LT_LPAREN] = ACTIONS(5889), - [anon_sym_GT_LPAREN] = ACTIONS(5889), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5889), - [sym_word] = ACTIONS(5889), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LF] = ACTIONS(5887), - [anon_sym_AMP] = ACTIONS(5889), + [sym_word] = ACTIONS(6119), + }, + [2695] = { + [aux_sym_concatenation_repeat1] = STATE(2695), + [sym__concat] = ACTIONS(3286), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [2696] = { + [aux_sym_concatenation_repeat1] = STATE(2696), + [sym_file_descriptor] = ACTIONS(1648), + [sym__concat] = ACTIONS(5143), + [anon_sym_esac] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_GT] = ACTIONS(1650), + [anon_sym_AMP_GT] = ACTIONS(1650), + [anon_sym_AMP_GT_GT] = ACTIONS(1650), + [anon_sym_LT_AMP] = ACTIONS(1650), + [anon_sym_GT_AMP] = ACTIONS(1650), + [anon_sym_LT_LT] = ACTIONS(1650), + [anon_sym_LT_LT_DASH] = ACTIONS(1650), + [anon_sym_LT_LT_LT] = ACTIONS(1650), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + }, + [2697] = { + [sym__concat] = ACTIONS(4756), + [sym_variable_name] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_SEMI_SEMI] = ACTIONS(4758), + [anon_sym_PIPE_AMP] = ACTIONS(4758), + [anon_sym_AMP_AMP] = ACTIONS(4758), + [anon_sym_PIPE_PIPE] = ACTIONS(4758), + [sym__special_characters] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4758), + [anon_sym_LT_LPAREN] = ACTIONS(4758), + [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4758), + [sym_word] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_LF] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4758), + }, + [2698] = { + [sym__concat] = ACTIONS(4764), + [sym_variable_name] = ACTIONS(4764), + [anon_sym_esac] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_SEMI_SEMI] = ACTIONS(4766), + [anon_sym_PIPE_AMP] = ACTIONS(4766), + [anon_sym_AMP_AMP] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), + [anon_sym_LT_LPAREN] = ACTIONS(4766), + [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4766), + [sym_word] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_LF] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4766), + }, + [2699] = { + [sym__concat] = ACTIONS(4768), + [sym_variable_name] = ACTIONS(4768), + [anon_sym_esac] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_SEMI_SEMI] = ACTIONS(4770), + [anon_sym_PIPE_AMP] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [sym__special_characters] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), + [anon_sym_BQUOTE] = ACTIONS(4770), + [anon_sym_LT_LPAREN] = ACTIONS(4770), + [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4770), + [sym_word] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_LF] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4770), + }, + [2700] = { + [sym__concat] = ACTIONS(4772), + [sym_variable_name] = ACTIONS(4772), + [anon_sym_esac] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_SEMI_SEMI] = ACTIONS(4774), + [anon_sym_PIPE_AMP] = ACTIONS(4774), + [anon_sym_AMP_AMP] = ACTIONS(4774), + [anon_sym_PIPE_PIPE] = ACTIONS(4774), + [sym__special_characters] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), + [anon_sym_BQUOTE] = ACTIONS(4774), + [anon_sym_LT_LPAREN] = ACTIONS(4774), + [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4774), + [sym_word] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_LF] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4774), + }, + [2701] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6296), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2702] = { + [sym__concat] = ACTIONS(4778), + [sym_variable_name] = ACTIONS(4778), + [anon_sym_esac] = ACTIONS(4780), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [anon_sym_PIPE_AMP] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [sym__special_characters] = ACTIONS(4780), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), + [anon_sym_BQUOTE] = ACTIONS(4780), + [anon_sym_LT_LPAREN] = ACTIONS(4780), + [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4780), + [sym_word] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_LF] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + }, + [2703] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6298), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2704] = { + [sym__concat] = ACTIONS(4784), + [sym_variable_name] = ACTIONS(4784), + [anon_sym_esac] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_SEMI_SEMI] = ACTIONS(4786), + [anon_sym_PIPE_AMP] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [sym__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), + [anon_sym_BQUOTE] = ACTIONS(4786), + [anon_sym_LT_LPAREN] = ACTIONS(4786), + [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4786), + [sym_word] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_LF] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4786), + }, + [2705] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6300), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2706] = { + [sym__concat] = ACTIONS(4790), + [sym_variable_name] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + }, + [2707] = { + [sym__concat] = ACTIONS(4794), + [sym_variable_name] = ACTIONS(4794), + [anon_sym_esac] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4796), + [sym_word] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LF] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + }, + [2708] = { + [sym__concat] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_SEMI_SEMI] = ACTIONS(4758), + [anon_sym_PIPE_AMP] = ACTIONS(4758), + [anon_sym_AMP_AMP] = ACTIONS(4758), + [anon_sym_PIPE_PIPE] = ACTIONS(4758), + [sym__special_characters] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4758), + [sym_raw_string] = ACTIONS(4758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), + [anon_sym_BQUOTE] = ACTIONS(4758), + [anon_sym_LT_LPAREN] = ACTIONS(4758), + [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4758), + [sym_word] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_LF] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4758), + }, + [2709] = { + [sym__concat] = ACTIONS(4764), + [anon_sym_esac] = ACTIONS(4766), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_SEMI_SEMI] = ACTIONS(4766), + [anon_sym_PIPE_AMP] = ACTIONS(4766), + [anon_sym_AMP_AMP] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(4766), + [anon_sym_DQUOTE] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4766), + [sym_raw_string] = ACTIONS(4766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), + [anon_sym_BQUOTE] = ACTIONS(4766), + [anon_sym_LT_LPAREN] = ACTIONS(4766), + [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4766), + [sym_word] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4766), + [anon_sym_LF] = ACTIONS(4764), + [anon_sym_AMP] = ACTIONS(4766), + }, + [2710] = { + [sym__concat] = ACTIONS(4768), + [anon_sym_esac] = ACTIONS(4770), + [anon_sym_PIPE] = ACTIONS(4770), + [anon_sym_SEMI_SEMI] = ACTIONS(4770), + [anon_sym_PIPE_AMP] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [sym__special_characters] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR] = ACTIONS(4770), + [sym_raw_string] = ACTIONS(4770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), + [anon_sym_BQUOTE] = ACTIONS(4770), + [anon_sym_LT_LPAREN] = ACTIONS(4770), + [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4770), + [sym_word] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_LF] = ACTIONS(4768), + [anon_sym_AMP] = ACTIONS(4770), + }, + [2711] = { + [sym__concat] = ACTIONS(4772), + [anon_sym_esac] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4774), + [anon_sym_SEMI_SEMI] = ACTIONS(4774), + [anon_sym_PIPE_AMP] = ACTIONS(4774), + [anon_sym_AMP_AMP] = ACTIONS(4774), + [anon_sym_PIPE_PIPE] = ACTIONS(4774), + [sym__special_characters] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), + [anon_sym_BQUOTE] = ACTIONS(4774), + [anon_sym_LT_LPAREN] = ACTIONS(4774), + [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4774), + [sym_word] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_LF] = ACTIONS(4772), + [anon_sym_AMP] = ACTIONS(4774), + }, + [2712] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6302), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2713] = { + [sym__concat] = ACTIONS(4778), + [anon_sym_esac] = ACTIONS(4780), + [anon_sym_PIPE] = ACTIONS(4780), + [anon_sym_SEMI_SEMI] = ACTIONS(4780), + [anon_sym_PIPE_AMP] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [sym__special_characters] = ACTIONS(4780), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_DOLLAR] = ACTIONS(4780), + [sym_raw_string] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), + [anon_sym_BQUOTE] = ACTIONS(4780), + [anon_sym_LT_LPAREN] = ACTIONS(4780), + [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4780), + [sym_word] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_LF] = ACTIONS(4778), + [anon_sym_AMP] = ACTIONS(4780), + }, + [2714] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6304), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2715] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_esac] = ACTIONS(4786), + [anon_sym_PIPE] = ACTIONS(4786), + [anon_sym_SEMI_SEMI] = ACTIONS(4786), + [anon_sym_PIPE_AMP] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [sym__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(4786), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(4786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), + [anon_sym_BQUOTE] = ACTIONS(4786), + [anon_sym_LT_LPAREN] = ACTIONS(4786), + [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4786), + [sym_word] = ACTIONS(4786), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_LF] = ACTIONS(4784), + [anon_sym_AMP] = ACTIONS(4786), + }, + [2716] = { + [sym_concatenation] = STATE(876), + [sym_string] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [aux_sym_expansion_repeat1] = STATE(876), + [anon_sym_RBRACE] = ACTIONS(6306), + [anon_sym_EQ] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym_raw_string] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_COLON_QMARK] = ACTIONS(1788), + [anon_sym_COLON_DASH] = ACTIONS(1788), + [anon_sym_PERCENT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(755), + [anon_sym_LT_LPAREN] = ACTIONS(757), + [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(759), + }, + [2717] = { + [sym__concat] = ACTIONS(4790), + [anon_sym_esac] = ACTIONS(4792), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_SEMI_SEMI] = ACTIONS(4792), + [anon_sym_PIPE_AMP] = ACTIONS(4792), + [anon_sym_AMP_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym__special_characters] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4792), + [anon_sym_DOLLAR] = ACTIONS(4792), + [sym_raw_string] = ACTIONS(4792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), + [anon_sym_BQUOTE] = ACTIONS(4792), + [anon_sym_LT_LPAREN] = ACTIONS(4792), + [anon_sym_GT_LPAREN] = ACTIONS(4792), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), + [sym_word] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_LF] = ACTIONS(4790), + [anon_sym_AMP] = ACTIONS(4792), + }, + [2718] = { + [sym__concat] = ACTIONS(4794), + [anon_sym_esac] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_SEMI_SEMI] = ACTIONS(4796), + [anon_sym_PIPE_AMP] = ACTIONS(4796), + [anon_sym_AMP_AMP] = ACTIONS(4796), + [anon_sym_PIPE_PIPE] = ACTIONS(4796), + [sym__special_characters] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(4796), + [sym_raw_string] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LT_LPAREN] = ACTIONS(4796), + [anon_sym_GT_LPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4796), + [sym_word] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LF] = ACTIONS(4794), + [anon_sym_AMP] = ACTIONS(4796), + }, + [2719] = { + [sym__concat] = ACTIONS(5310), + [sym_variable_name] = ACTIONS(5310), + [anon_sym_esac] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_SEMI_SEMI] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(5312), + [anon_sym_AMP_AMP] = ACTIONS(5312), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(5312), + [anon_sym_LT_LPAREN] = ACTIONS(5312), + [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), + [sym_word] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym_LF] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), + }, + [2720] = { + [sym__concat] = ACTIONS(5314), + [sym_variable_name] = ACTIONS(5314), + [anon_sym_esac] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5316), + [anon_sym_AMP_AMP] = ACTIONS(5316), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(5316), + [anon_sym_LT_LPAREN] = ACTIONS(5316), + [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), + [sym_word] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_LF] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + }, + [2721] = { + [sym__concat] = ACTIONS(5318), + [sym_variable_name] = ACTIONS(5318), + [anon_sym_esac] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_SEMI_SEMI] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(5320), + [anon_sym_LT_LPAREN] = ACTIONS(5320), + [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), + [sym_word] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_LF] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5320), + }, + [2722] = { + [sym__concat] = ACTIONS(5310), + [anon_sym_esac] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_SEMI_SEMI] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(5312), + [anon_sym_AMP_AMP] = ACTIONS(5312), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(5312), + [sym_raw_string] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(5312), + [anon_sym_LT_LPAREN] = ACTIONS(5312), + [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), + [sym_word] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5312), + [anon_sym_LF] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(5312), + }, + [2723] = { + [sym__concat] = ACTIONS(5314), + [anon_sym_esac] = ACTIONS(5316), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5316), + [anon_sym_AMP_AMP] = ACTIONS(5316), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(5316), + [sym_raw_string] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(5316), + [anon_sym_LT_LPAREN] = ACTIONS(5316), + [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), + [sym_word] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5316), + [anon_sym_LF] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(5316), + }, + [2724] = { + [sym__concat] = ACTIONS(5318), + [anon_sym_esac] = ACTIONS(5320), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_SEMI_SEMI] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5320), + [sym_raw_string] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(5320), + [anon_sym_LT_LPAREN] = ACTIONS(5320), + [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), + [sym_word] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5320), + [anon_sym_LF] = ACTIONS(5318), + [anon_sym_AMP] = ACTIONS(5320), }, }; @@ -76119,69 +72324,69 @@ static TSParseActionEntry ts_parse_actions[] = { [51] = {.count = 1, .reusable = true}, SHIFT(23), [53] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), [55] = {.count = 1, .reusable = false}, SHIFT(24), - [57] = {.count = 1, .reusable = false}, SHIFT(33), - [59] = {.count = 1, .reusable = true}, SHIFT(33), - [61] = {.count = 1, .reusable = true}, SHIFT(34), - [63] = {.count = 1, .reusable = true}, SHIFT(35), - [65] = {.count = 1, .reusable = true}, SHIFT(36), - [67] = {.count = 1, .reusable = true}, SHIFT(37), - [69] = {.count = 1, .reusable = true}, SHIFT(42), - [71] = {.count = 1, .reusable = true}, SHIFT(43), - [73] = {.count = 1, .reusable = false}, SHIFT(44), - [75] = {.count = 1, .reusable = true}, SHIFT(45), - [77] = {.count = 1, .reusable = true}, SHIFT(46), - [79] = {.count = 1, .reusable = true}, SHIFT(47), - [81] = {.count = 1, .reusable = true}, SHIFT(48), - [83] = {.count = 1, .reusable = true}, SHIFT(49), - [85] = {.count = 1, .reusable = true}, SHIFT(51), - [87] = {.count = 1, .reusable = true}, SHIFT(52), - [89] = {.count = 1, .reusable = false}, SHIFT(53), - [91] = {.count = 1, .reusable = false}, SHIFT(54), - [93] = {.count = 1, .reusable = false}, SHIFT(55), - [95] = {.count = 1, .reusable = false}, SHIFT(56), - [97] = {.count = 1, .reusable = true}, SHIFT(57), - [99] = {.count = 1, .reusable = false}, SHIFT(58), - [101] = {.count = 1, .reusable = false}, SHIFT(59), - [103] = {.count = 1, .reusable = false}, SHIFT(60), - [105] = {.count = 1, .reusable = true}, SHIFT(61), - [107] = {.count = 1, .reusable = false}, SHIFT(62), - [109] = {.count = 1, .reusable = true}, SHIFT(69), - [111] = {.count = 1, .reusable = true}, SHIFT(72), - [113] = {.count = 1, .reusable = false}, SHIFT(73), - [115] = {.count = 1, .reusable = true}, SHIFT(74), - [117] = {.count = 1, .reusable = true}, SHIFT(75), - [119] = {.count = 1, .reusable = false}, SHIFT(76), - [121] = {.count = 1, .reusable = true}, SHIFT(77), - [123] = {.count = 1, .reusable = true}, SHIFT(78), - [125] = {.count = 1, .reusable = true}, SHIFT(79), - [127] = {.count = 1, .reusable = true}, SHIFT(80), - [129] = {.count = 1, .reusable = true}, SHIFT(81), - [131] = {.count = 1, .reusable = false}, SHIFT(77), - [133] = {.count = 1, .reusable = true}, SHIFT(73), - [135] = {.count = 1, .reusable = true}, SHIFT(83), - [137] = {.count = 1, .reusable = false}, SHIFT(84), - [139] = {.count = 1, .reusable = true}, SHIFT(85), - [141] = {.count = 1, .reusable = true}, SHIFT(86), - [143] = {.count = 1, .reusable = false}, SHIFT(87), - [145] = {.count = 1, .reusable = true}, SHIFT(88), - [147] = {.count = 1, .reusable = true}, SHIFT(89), - [149] = {.count = 1, .reusable = true}, SHIFT(90), - [151] = {.count = 1, .reusable = true}, SHIFT(91), - [153] = {.count = 1, .reusable = true}, SHIFT(92), - [155] = {.count = 1, .reusable = false}, SHIFT(88), - [157] = {.count = 1, .reusable = true}, SHIFT(84), - [159] = {.count = 1, .reusable = true}, SHIFT(94), + [57] = {.count = 1, .reusable = false}, SHIFT(34), + [59] = {.count = 1, .reusable = true}, SHIFT(34), + [61] = {.count = 1, .reusable = true}, SHIFT(35), + [63] = {.count = 1, .reusable = true}, SHIFT(36), + [65] = {.count = 1, .reusable = true}, SHIFT(37), + [67] = {.count = 1, .reusable = true}, SHIFT(38), + [69] = {.count = 1, .reusable = true}, SHIFT(43), + [71] = {.count = 1, .reusable = true}, SHIFT(44), + [73] = {.count = 1, .reusable = false}, SHIFT(45), + [75] = {.count = 1, .reusable = true}, SHIFT(46), + [77] = {.count = 1, .reusable = true}, SHIFT(47), + [79] = {.count = 1, .reusable = true}, SHIFT(48), + [81] = {.count = 1, .reusable = true}, SHIFT(49), + [83] = {.count = 1, .reusable = true}, SHIFT(50), + [85] = {.count = 1, .reusable = true}, SHIFT(52), + [87] = {.count = 1, .reusable = true}, SHIFT(53), + [89] = {.count = 1, .reusable = false}, SHIFT(54), + [91] = {.count = 1, .reusable = false}, SHIFT(55), + [93] = {.count = 1, .reusable = false}, SHIFT(56), + [95] = {.count = 1, .reusable = false}, SHIFT(57), + [97] = {.count = 1, .reusable = true}, SHIFT(58), + [99] = {.count = 1, .reusable = false}, SHIFT(59), + [101] = {.count = 1, .reusable = false}, SHIFT(60), + [103] = {.count = 1, .reusable = false}, SHIFT(61), + [105] = {.count = 1, .reusable = true}, SHIFT(62), + [107] = {.count = 1, .reusable = false}, SHIFT(63), + [109] = {.count = 1, .reusable = true}, SHIFT(70), + [111] = {.count = 1, .reusable = true}, SHIFT(73), + [113] = {.count = 1, .reusable = false}, SHIFT(74), + [115] = {.count = 1, .reusable = true}, SHIFT(75), + [117] = {.count = 1, .reusable = true}, SHIFT(76), + [119] = {.count = 1, .reusable = false}, SHIFT(77), + [121] = {.count = 1, .reusable = true}, SHIFT(78), + [123] = {.count = 1, .reusable = true}, SHIFT(79), + [125] = {.count = 1, .reusable = true}, SHIFT(80), + [127] = {.count = 1, .reusable = true}, SHIFT(81), + [129] = {.count = 1, .reusable = true}, SHIFT(82), + [131] = {.count = 1, .reusable = false}, SHIFT(78), + [133] = {.count = 1, .reusable = true}, SHIFT(74), + [135] = {.count = 1, .reusable = true}, SHIFT(84), + [137] = {.count = 1, .reusable = false}, SHIFT(85), + [139] = {.count = 1, .reusable = true}, SHIFT(86), + [141] = {.count = 1, .reusable = true}, SHIFT(87), + [143] = {.count = 1, .reusable = false}, SHIFT(88), + [145] = {.count = 1, .reusable = true}, SHIFT(89), + [147] = {.count = 1, .reusable = true}, SHIFT(90), + [149] = {.count = 1, .reusable = true}, SHIFT(91), + [151] = {.count = 1, .reusable = true}, SHIFT(92), + [153] = {.count = 1, .reusable = true}, SHIFT(93), + [155] = {.count = 1, .reusable = false}, SHIFT(89), + [157] = {.count = 1, .reusable = true}, SHIFT(85), + [159] = {.count = 1, .reusable = true}, SHIFT(95), [161] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), - [163] = {.count = 1, .reusable = false}, SHIFT(95), - [165] = {.count = 1, .reusable = false}, SHIFT(96), - [167] = {.count = 1, .reusable = false}, SHIFT(97), - [169] = {.count = 1, .reusable = false}, SHIFT(98), - [171] = {.count = 1, .reusable = false}, SHIFT(99), - [173] = {.count = 1, .reusable = false}, SHIFT(100), - [175] = {.count = 1, .reusable = false}, SHIFT(101), - [177] = {.count = 1, .reusable = false}, SHIFT(102), + [163] = {.count = 1, .reusable = false}, SHIFT(96), + [165] = {.count = 1, .reusable = false}, SHIFT(97), + [167] = {.count = 1, .reusable = false}, SHIFT(98), + [169] = {.count = 1, .reusable = false}, SHIFT(99), + [171] = {.count = 1, .reusable = false}, SHIFT(100), + [173] = {.count = 1, .reusable = false}, SHIFT(101), + [175] = {.count = 1, .reusable = false}, SHIFT(102), + [177] = {.count = 1, .reusable = false}, SHIFT(103), [179] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [181] = {.count = 1, .reusable = false}, SHIFT(103), + [181] = {.count = 1, .reusable = false}, SHIFT(104), [183] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), [185] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), [187] = {.count = 1, .reusable = false}, SHIFT(107), @@ -76222,3282 +72427,2942 @@ static TSParseActionEntry ts_parse_actions[] = { [257] = {.count = 1, .reusable = true}, SHIFT(140), [259] = {.count = 1, .reusable = false}, SHIFT(141), [261] = {.count = 1, .reusable = false}, SHIFT(139), - [263] = {.count = 1, .reusable = true}, SHIFT(143), - [265] = {.count = 1, .reusable = false}, SHIFT(144), - [267] = {.count = 1, .reusable = false}, SHIFT(145), - [269] = {.count = 1, .reusable = false}, SHIFT(146), - [271] = {.count = 1, .reusable = false}, SHIFT(147), - [273] = {.count = 1, .reusable = false}, SHIFT(148), - [275] = {.count = 1, .reusable = true}, SHIFT(149), - [277] = {.count = 1, .reusable = false}, SHIFT(150), - [279] = {.count = 1, .reusable = false}, SHIFT(151), - [281] = {.count = 1, .reusable = true}, SHIFT(152), - [283] = {.count = 1, .reusable = false}, SHIFT(153), - [285] = {.count = 1, .reusable = false}, SHIFT(154), - [287] = {.count = 1, .reusable = false}, SHIFT(155), - [289] = {.count = 1, .reusable = true}, SHIFT(156), - [291] = {.count = 1, .reusable = false}, SHIFT(157), - [293] = {.count = 1, .reusable = true}, SHIFT(158), - [295] = {.count = 1, .reusable = true}, SHIFT(159), - [297] = {.count = 1, .reusable = true}, SHIFT(160), - [299] = {.count = 1, .reusable = true}, SHIFT(161), - [301] = {.count = 1, .reusable = true}, SHIFT(162), - [303] = {.count = 1, .reusable = false}, SHIFT(163), - [305] = {.count = 1, .reusable = true}, SHIFT(170), - [307] = {.count = 1, .reusable = false}, SHIFT(171), - [309] = {.count = 1, .reusable = false}, SHIFT(172), - [311] = {.count = 1, .reusable = false}, SHIFT(173), - [313] = {.count = 1, .reusable = false}, SHIFT(174), - [315] = {.count = 1, .reusable = true}, SHIFT(175), - [317] = {.count = 1, .reusable = false}, SHIFT(176), - [319] = {.count = 1, .reusable = false}, SHIFT(177), - [321] = {.count = 1, .reusable = false}, SHIFT(178), - [323] = {.count = 1, .reusable = true}, SHIFT(179), - [325] = {.count = 1, .reusable = false}, SHIFT(180), - [327] = {.count = 1, .reusable = false}, SHIFT(188), - [329] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [331] = {.count = 1, .reusable = false}, SHIFT(189), - [333] = {.count = 1, .reusable = false}, SHIFT(190), - [335] = {.count = 1, .reusable = false}, SHIFT(191), - [337] = {.count = 1, .reusable = true}, SHIFT(190), - [339] = {.count = 1, .reusable = true}, SHIFT(192), - [341] = {.count = 1, .reusable = true}, SHIFT(193), - [343] = {.count = 1, .reusable = true}, SHIFT(194), - [345] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), - [347] = {.count = 1, .reusable = false}, SHIFT(195), - [349] = {.count = 1, .reusable = false}, SHIFT(196), - [351] = {.count = 1, .reusable = false}, SHIFT(197), - [353] = {.count = 1, .reusable = false}, SHIFT(198), - [355] = {.count = 1, .reusable = false}, SHIFT(199), - [357] = {.count = 1, .reusable = false}, SHIFT(17), - [359] = {.count = 1, .reusable = false}, SHIFT(200), - [361] = {.count = 1, .reusable = false}, SHIFT(20), - [363] = {.count = 1, .reusable = false}, SHIFT(21), - [365] = {.count = 1, .reusable = false}, SHIFT(22), - [367] = {.count = 1, .reusable = false}, SHIFT(23), - [369] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), - [371] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), - [373] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), - [375] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), - [377] = {.count = 1, .reusable = true}, SHIFT(16), - [379] = {.count = 1, .reusable = true}, SHIFT(208), - [381] = {.count = 1, .reusable = true}, SHIFT(209), - [383] = {.count = 1, .reusable = true}, SHIFT(211), - [385] = {.count = 1, .reusable = true}, SHIFT(212), - [387] = {.count = 1, .reusable = true}, SHIFT(214), - [389] = {.count = 1, .reusable = true}, SHIFT(215), - [391] = {.count = 1, .reusable = true}, SHIFT(216), - [393] = {.count = 1, .reusable = true}, SHIFT(217), - [395] = {.count = 1, .reusable = false}, SHIFT(218), - [397] = {.count = 1, .reusable = true}, SHIFT(219), - [399] = {.count = 1, .reusable = true}, SHIFT(220), - [401] = {.count = 1, .reusable = true}, SHIFT(221), - [403] = {.count = 1, .reusable = true}, SHIFT(222), - [405] = {.count = 1, .reusable = true}, SHIFT(223), - [407] = {.count = 1, .reusable = false}, SHIFT(224), - [409] = {.count = 1, .reusable = false}, SHIFT(225), - [411] = {.count = 1, .reusable = false}, SHIFT(226), - [413] = {.count = 1, .reusable = false}, SHIFT(227), - [415] = {.count = 1, .reusable = false}, SHIFT(228), - [417] = {.count = 1, .reusable = false}, SHIFT(229), - [419] = {.count = 1, .reusable = false}, SHIFT(230), - [421] = {.count = 1, .reusable = false}, SHIFT(231), - [423] = {.count = 1, .reusable = false}, SHIFT(232), - [425] = {.count = 1, .reusable = false}, SHIFT(233), - [427] = {.count = 1, .reusable = false}, SHIFT(234), - [429] = {.count = 1, .reusable = true}, SHIFT(224), - [431] = {.count = 1, .reusable = false}, SHIFT(236), - [433] = {.count = 1, .reusable = false}, SHIFT(237), - [435] = {.count = 1, .reusable = true}, SHIFT(237), - [437] = {.count = 1, .reusable = true}, SHIFT(238), - [439] = {.count = 1, .reusable = false}, SHIFT(240), - [441] = {.count = 1, .reusable = true}, SHIFT(240), - [443] = {.count = 1, .reusable = true}, SHIFT(241), - [445] = {.count = 1, .reusable = true}, SHIFT(242), - [447] = {.count = 1, .reusable = false}, SHIFT(243), - [449] = {.count = 1, .reusable = false}, SHIFT(244), - [451] = {.count = 1, .reusable = true}, SHIFT(244), - [453] = {.count = 1, .reusable = false}, SHIFT(246), - [455] = {.count = 1, .reusable = false}, SHIFT(247), - [457] = {.count = 1, .reusable = true}, SHIFT(249), - [459] = {.count = 1, .reusable = true}, SHIFT(250), - [461] = {.count = 1, .reusable = false}, SHIFT(251), - [463] = {.count = 1, .reusable = false}, SHIFT(249), - [465] = {.count = 1, .reusable = false}, SHIFT(252), - [467] = {.count = 1, .reusable = false}, SHIFT(253), - [469] = {.count = 1, .reusable = true}, SHIFT(253), - [471] = {.count = 1, .reusable = true}, SHIFT(254), - [473] = {.count = 1, .reusable = true}, SHIFT(255), - [475] = {.count = 1, .reusable = true}, SHIFT(256), - [477] = {.count = 1, .reusable = false}, SHIFT(257), - [479] = {.count = 1, .reusable = false}, SHIFT(255), - [481] = {.count = 1, .reusable = true}, SHIFT(265), - [483] = {.count = 1, .reusable = true}, SHIFT(266), - [485] = {.count = 1, .reusable = true}, SHIFT(268), - [487] = {.count = 1, .reusable = true}, SHIFT(270), - [489] = {.count = 1, .reusable = true}, SHIFT(273), - [491] = {.count = 1, .reusable = false}, SHIFT(274), - [493] = {.count = 1, .reusable = false}, SHIFT(275), - [495] = {.count = 1, .reusable = false}, SHIFT(278), - [497] = {.count = 1, .reusable = false}, SHIFT(279), - [499] = {.count = 1, .reusable = false}, SHIFT(282), - [501] = {.count = 1, .reusable = false}, SHIFT(283), - [503] = {.count = 1, .reusable = false}, SHIFT(284), - [505] = {.count = 1, .reusable = false}, SHIFT(285), - [507] = {.count = 1, .reusable = false}, SHIFT(286), - [509] = {.count = 1, .reusable = true}, SHIFT(285), - [511] = {.count = 1, .reusable = true}, SHIFT(287), - [513] = {.count = 1, .reusable = false}, SHIFT(288), - [515] = {.count = 1, .reusable = false}, SHIFT(289), - [517] = {.count = 1, .reusable = false}, SHIFT(290), - [519] = {.count = 1, .reusable = false}, SHIFT(291), + [263] = {.count = 1, .reusable = false}, SHIFT(146), + [265] = {.count = 1, .reusable = false}, SHIFT(147), + [267] = {.count = 1, .reusable = false}, SHIFT(148), + [269] = {.count = 1, .reusable = false}, SHIFT(149), + [271] = {.count = 1, .reusable = true}, SHIFT(150), + [273] = {.count = 1, .reusable = false}, SHIFT(151), + [275] = {.count = 1, .reusable = false}, SHIFT(152), + [277] = {.count = 1, .reusable = false}, SHIFT(153), + [279] = {.count = 1, .reusable = false}, SHIFT(162), + [281] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [283] = {.count = 1, .reusable = false}, SHIFT(163), + [285] = {.count = 1, .reusable = false}, SHIFT(164), + [287] = {.count = 1, .reusable = false}, SHIFT(165), + [289] = {.count = 1, .reusable = true}, SHIFT(164), + [291] = {.count = 1, .reusable = true}, SHIFT(166), + [293] = {.count = 1, .reusable = true}, SHIFT(167), + [295] = {.count = 1, .reusable = true}, SHIFT(168), + [297] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), + [299] = {.count = 1, .reusable = false}, SHIFT(169), + [301] = {.count = 1, .reusable = false}, SHIFT(170), + [303] = {.count = 1, .reusable = false}, SHIFT(171), + [305] = {.count = 1, .reusable = false}, SHIFT(172), + [307] = {.count = 1, .reusable = false}, SHIFT(173), + [309] = {.count = 1, .reusable = false}, SHIFT(17), + [311] = {.count = 1, .reusable = false}, SHIFT(174), + [313] = {.count = 1, .reusable = false}, SHIFT(20), + [315] = {.count = 1, .reusable = false}, SHIFT(21), + [317] = {.count = 1, .reusable = false}, SHIFT(22), + [319] = {.count = 1, .reusable = false}, SHIFT(23), + [321] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [323] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [325] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [327] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [329] = {.count = 1, .reusable = true}, SHIFT(16), + [331] = {.count = 1, .reusable = true}, SHIFT(181), + [333] = {.count = 1, .reusable = true}, SHIFT(182), + [335] = {.count = 1, .reusable = true}, SHIFT(184), + [337] = {.count = 1, .reusable = true}, SHIFT(185), + [339] = {.count = 1, .reusable = true}, SHIFT(187), + [341] = {.count = 1, .reusable = true}, SHIFT(188), + [343] = {.count = 1, .reusable = true}, SHIFT(189), + [345] = {.count = 1, .reusable = true}, SHIFT(190), + [347] = {.count = 1, .reusable = false}, SHIFT(191), + [349] = {.count = 1, .reusable = true}, SHIFT(192), + [351] = {.count = 1, .reusable = true}, SHIFT(193), + [353] = {.count = 1, .reusable = true}, SHIFT(194), + [355] = {.count = 1, .reusable = true}, SHIFT(195), + [357] = {.count = 1, .reusable = true}, SHIFT(196), + [359] = {.count = 1, .reusable = false}, SHIFT(197), + [361] = {.count = 1, .reusable = false}, SHIFT(198), + [363] = {.count = 1, .reusable = false}, SHIFT(199), + [365] = {.count = 1, .reusable = false}, SHIFT(200), + [367] = {.count = 1, .reusable = false}, SHIFT(201), + [369] = {.count = 1, .reusable = false}, SHIFT(202), + [371] = {.count = 1, .reusable = false}, SHIFT(203), + [373] = {.count = 1, .reusable = false}, SHIFT(204), + [375] = {.count = 1, .reusable = false}, SHIFT(205), + [377] = {.count = 1, .reusable = false}, SHIFT(206), + [379] = {.count = 1, .reusable = false}, SHIFT(207), + [381] = {.count = 1, .reusable = true}, SHIFT(197), + [383] = {.count = 1, .reusable = false}, SHIFT(209), + [385] = {.count = 1, .reusable = false}, SHIFT(210), + [387] = {.count = 1, .reusable = true}, SHIFT(210), + [389] = {.count = 1, .reusable = true}, SHIFT(211), + [391] = {.count = 1, .reusable = false}, SHIFT(213), + [393] = {.count = 1, .reusable = true}, SHIFT(213), + [395] = {.count = 1, .reusable = true}, SHIFT(214), + [397] = {.count = 1, .reusable = true}, SHIFT(215), + [399] = {.count = 1, .reusable = false}, SHIFT(216), + [401] = {.count = 1, .reusable = false}, SHIFT(217), + [403] = {.count = 1, .reusable = true}, SHIFT(217), + [405] = {.count = 1, .reusable = false}, SHIFT(219), + [407] = {.count = 1, .reusable = false}, SHIFT(220), + [409] = {.count = 1, .reusable = true}, SHIFT(222), + [411] = {.count = 1, .reusable = true}, SHIFT(223), + [413] = {.count = 1, .reusable = false}, SHIFT(224), + [415] = {.count = 1, .reusable = false}, SHIFT(222), + [417] = {.count = 1, .reusable = false}, SHIFT(225), + [419] = {.count = 1, .reusable = false}, SHIFT(226), + [421] = {.count = 1, .reusable = true}, SHIFT(226), + [423] = {.count = 1, .reusable = true}, SHIFT(227), + [425] = {.count = 1, .reusable = true}, SHIFT(228), + [427] = {.count = 1, .reusable = true}, SHIFT(229), + [429] = {.count = 1, .reusable = false}, SHIFT(230), + [431] = {.count = 1, .reusable = false}, SHIFT(228), + [433] = {.count = 1, .reusable = true}, SHIFT(241), + [435] = {.count = 1, .reusable = true}, SHIFT(242), + [437] = {.count = 1, .reusable = true}, SHIFT(244), + [439] = {.count = 1, .reusable = true}, SHIFT(246), + [441] = {.count = 1, .reusable = true}, SHIFT(249), + [443] = {.count = 1, .reusable = false}, SHIFT(250), + [445] = {.count = 1, .reusable = false}, SHIFT(251), + [447] = {.count = 1, .reusable = false}, SHIFT(254), + [449] = {.count = 1, .reusable = false}, SHIFT(255), + [451] = {.count = 1, .reusable = false}, SHIFT(258), + [453] = {.count = 1, .reusable = false}, SHIFT(259), + [455] = {.count = 1, .reusable = false}, SHIFT(260), + [457] = {.count = 1, .reusable = false}, SHIFT(261), + [459] = {.count = 1, .reusable = false}, SHIFT(262), + [461] = {.count = 1, .reusable = true}, SHIFT(261), + [463] = {.count = 1, .reusable = true}, SHIFT(263), + [465] = {.count = 1, .reusable = false}, SHIFT(264), + [467] = {.count = 1, .reusable = false}, SHIFT(265), + [469] = {.count = 1, .reusable = false}, SHIFT(266), + [471] = {.count = 1, .reusable = false}, SHIFT(267), + [473] = {.count = 1, .reusable = false}, SHIFT(268), + [475] = {.count = 1, .reusable = true}, SHIFT(61), + [477] = {.count = 1, .reusable = true}, SHIFT(275), + [479] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [481] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [483] = {.count = 1, .reusable = false}, SHIFT(276), + [485] = {.count = 1, .reusable = true}, SHIFT(277), + [487] = {.count = 1, .reusable = true}, SHIFT(278), + [489] = {.count = 1, .reusable = false}, SHIFT(278), + [491] = {.count = 1, .reusable = true}, SHIFT(276), + [493] = {.count = 1, .reusable = true}, SHIFT(281), + [495] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [497] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [499] = {.count = 1, .reusable = false}, SHIFT(283), + [501] = {.count = 1, .reusable = false}, SHIFT(284), + [503] = {.count = 1, .reusable = true}, SHIFT(286), + [505] = {.count = 1, .reusable = true}, SHIFT(287), + [507] = {.count = 1, .reusable = false}, SHIFT(288), + [509] = {.count = 1, .reusable = false}, SHIFT(286), + [511] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [513] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [515] = {.count = 1, .reusable = true}, SHIFT(289), + [517] = {.count = 1, .reusable = true}, SHIFT(290), + [519] = {.count = 1, .reusable = true}, SHIFT(291), [521] = {.count = 1, .reusable = false}, SHIFT(292), - [523] = {.count = 1, .reusable = true}, SHIFT(60), - [525] = {.count = 1, .reusable = true}, SHIFT(299), - [527] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), - [529] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), - [531] = {.count = 1, .reusable = false}, SHIFT(300), - [533] = {.count = 1, .reusable = true}, SHIFT(301), - [535] = {.count = 1, .reusable = true}, SHIFT(302), - [537] = {.count = 1, .reusable = false}, SHIFT(302), - [539] = {.count = 1, .reusable = true}, SHIFT(300), - [541] = {.count = 1, .reusable = true}, SHIFT(305), - [543] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [545] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [547] = {.count = 1, .reusable = false}, SHIFT(307), - [549] = {.count = 1, .reusable = false}, SHIFT(308), - [551] = {.count = 1, .reusable = true}, SHIFT(310), - [553] = {.count = 1, .reusable = true}, SHIFT(311), - [555] = {.count = 1, .reusable = false}, SHIFT(312), - [557] = {.count = 1, .reusable = false}, SHIFT(310), - [559] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [561] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [563] = {.count = 1, .reusable = true}, SHIFT(313), - [565] = {.count = 1, .reusable = true}, SHIFT(314), - [567] = {.count = 1, .reusable = true}, SHIFT(315), - [569] = {.count = 1, .reusable = false}, SHIFT(316), - [571] = {.count = 1, .reusable = false}, SHIFT(314), - [573] = {.count = 1, .reusable = true}, SHIFT(324), - [575] = {.count = 1, .reusable = true}, SHIFT(325), - [577] = {.count = 1, .reusable = true}, SHIFT(326), - [579] = {.count = 1, .reusable = false}, SHIFT(324), - [581] = {.count = 1, .reusable = true}, SHIFT(329), - [583] = {.count = 1, .reusable = false}, SHIFT(331), - [585] = {.count = 1, .reusable = false}, SHIFT(332), - [587] = {.count = 1, .reusable = true}, SHIFT(334), - [589] = {.count = 1, .reusable = true}, SHIFT(335), - [591] = {.count = 1, .reusable = false}, SHIFT(336), - [593] = {.count = 1, .reusable = false}, SHIFT(334), - [595] = {.count = 1, .reusable = true}, SHIFT(337), - [597] = {.count = 1, .reusable = true}, SHIFT(338), - [599] = {.count = 1, .reusable = true}, SHIFT(339), - [601] = {.count = 1, .reusable = false}, SHIFT(340), - [603] = {.count = 1, .reusable = false}, SHIFT(338), - [605] = {.count = 1, .reusable = true}, SHIFT(348), - [607] = {.count = 1, .reusable = true}, SHIFT(349), - [609] = {.count = 1, .reusable = false}, SHIFT(348), - [611] = {.count = 1, .reusable = true}, SHIFT(350), - [613] = {.count = 1, .reusable = true}, SHIFT(351), - [615] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [617] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [619] = {.count = 1, .reusable = false}, SHIFT(353), - [621] = {.count = 1, .reusable = false}, SHIFT(354), - [623] = {.count = 1, .reusable = true}, SHIFT(96), - [625] = {.count = 1, .reusable = true}, SHIFT(356), - [627] = {.count = 1, .reusable = true}, SHIFT(357), - [629] = {.count = 1, .reusable = false}, SHIFT(358), - [631] = {.count = 1, .reusable = false}, SHIFT(356), - [633] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [635] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [637] = {.count = 1, .reusable = true}, SHIFT(359), - [639] = {.count = 1, .reusable = true}, SHIFT(360), - [641] = {.count = 1, .reusable = true}, SHIFT(361), - [643] = {.count = 1, .reusable = false}, SHIFT(362), - [645] = {.count = 1, .reusable = false}, SHIFT(360), - [647] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [649] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [651] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), - [653] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), - [655] = {.count = 1, .reusable = true}, SHIFT(371), - [657] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [659] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [661] = {.count = 1, .reusable = false}, SHIFT(373), - [663] = {.count = 1, .reusable = false}, SHIFT(374), - [665] = {.count = 1, .reusable = true}, SHIFT(108), - [667] = {.count = 1, .reusable = true}, SHIFT(376), - [669] = {.count = 1, .reusable = true}, SHIFT(377), - [671] = {.count = 1, .reusable = false}, SHIFT(378), - [673] = {.count = 1, .reusable = false}, SHIFT(376), - [675] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [677] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [679] = {.count = 1, .reusable = true}, SHIFT(379), - [681] = {.count = 1, .reusable = true}, SHIFT(380), - [683] = {.count = 1, .reusable = true}, SHIFT(381), - [685] = {.count = 1, .reusable = false}, SHIFT(382), - [687] = {.count = 1, .reusable = false}, SHIFT(380), - [689] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [691] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [693] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), - [695] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), - [697] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [699] = {.count = 1, .reusable = true}, SHIFT(391), - [701] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [703] = {.count = 1, .reusable = false}, SHIFT(393), - [705] = {.count = 1, .reusable = false}, SHIFT(394), - [707] = {.count = 1, .reusable = true}, SHIFT(396), - [709] = {.count = 1, .reusable = true}, SHIFT(397), - [711] = {.count = 1, .reusable = false}, SHIFT(398), - [713] = {.count = 1, .reusable = false}, SHIFT(396), - [715] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), - [717] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), - [719] = {.count = 1, .reusable = true}, SHIFT(399), - [721] = {.count = 1, .reusable = true}, SHIFT(400), - [723] = {.count = 1, .reusable = true}, SHIFT(401), - [725] = {.count = 1, .reusable = false}, SHIFT(402), - [727] = {.count = 1, .reusable = false}, SHIFT(400), - [729] = {.count = 1, .reusable = true}, SHIFT(410), - [731] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), - [733] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), - [735] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), - [737] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), - [739] = {.count = 1, .reusable = false}, SHIFT(412), - [741] = {.count = 1, .reusable = false}, SHIFT(413), - [743] = {.count = 1, .reusable = false}, SHIFT(414), - [745] = {.count = 1, .reusable = true}, SHIFT(413), - [747] = {.count = 1, .reusable = false}, SHIFT(415), - [749] = {.count = 1, .reusable = true}, SHIFT(416), - [751] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), - [753] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), - [755] = {.count = 1, .reusable = true}, SHIFT(417), - [757] = {.count = 1, .reusable = true}, SHIFT(418), - [759] = {.count = 1, .reusable = true}, SHIFT(419), - [761] = {.count = 1, .reusable = false}, SHIFT(420), - [763] = {.count = 1, .reusable = false}, SHIFT(418), - [765] = {.count = 1, .reusable = false}, SHIFT(426), - [767] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [769] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [771] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), - [773] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), - [775] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [777] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [779] = {.count = 1, .reusable = true}, SHIFT(428), - [781] = {.count = 1, .reusable = true}, SHIFT(429), - [783] = {.count = 1, .reusable = true}, SHIFT(430), - [785] = {.count = 1, .reusable = false}, SHIFT(440), - [787] = {.count = 1, .reusable = false}, SHIFT(431), - [789] = {.count = 1, .reusable = true}, SHIFT(432), - [791] = {.count = 1, .reusable = false}, SHIFT(433), - [793] = {.count = 1, .reusable = true}, SHIFT(434), - [795] = {.count = 1, .reusable = true}, SHIFT(440), - [797] = {.count = 1, .reusable = true}, SHIFT(435), - [799] = {.count = 1, .reusable = true}, SHIFT(436), - [801] = {.count = 1, .reusable = true}, SHIFT(437), - [803] = {.count = 1, .reusable = true}, SHIFT(438), - [805] = {.count = 1, .reusable = true}, SHIFT(439), - [807] = {.count = 1, .reusable = false}, SHIFT(434), - [809] = {.count = 1, .reusable = true}, SHIFT(441), - [811] = {.count = 1, .reusable = true}, SHIFT(442), - [813] = {.count = 1, .reusable = false}, SHIFT(443), - [815] = {.count = 1, .reusable = false}, SHIFT(442), - [817] = {.count = 1, .reusable = true}, SHIFT(445), - [819] = {.count = 1, .reusable = false}, SHIFT(447), - [821] = {.count = 1, .reusable = true}, SHIFT(447), - [823] = {.count = 1, .reusable = true}, SHIFT(446), - [825] = {.count = 1, .reusable = true}, SHIFT(448), - [827] = {.count = 1, .reusable = false}, SHIFT(450), - [829] = {.count = 1, .reusable = true}, SHIFT(450), - [831] = {.count = 1, .reusable = true}, SHIFT(449), - [833] = {.count = 1, .reusable = true}, SHIFT(451), - [835] = {.count = 1, .reusable = true}, SHIFT(452), - [837] = {.count = 1, .reusable = true}, SHIFT(453), - [839] = {.count = 1, .reusable = true}, SHIFT(456), - [841] = {.count = 1, .reusable = true}, SHIFT(457), - [843] = {.count = 1, .reusable = true}, SHIFT(459), - [845] = {.count = 1, .reusable = true}, SHIFT(466), - [847] = {.count = 1, .reusable = true}, SHIFT(467), - [849] = {.count = 1, .reusable = true}, SHIFT(468), - [851] = {.count = 1, .reusable = false}, SHIFT(469), - [853] = {.count = 1, .reusable = true}, SHIFT(470), - [855] = {.count = 1, .reusable = true}, SHIFT(471), - [857] = {.count = 1, .reusable = true}, SHIFT(472), - [859] = {.count = 1, .reusable = true}, SHIFT(473), - [861] = {.count = 1, .reusable = true}, SHIFT(474), - [863] = {.count = 1, .reusable = false}, SHIFT(475), - [865] = {.count = 1, .reusable = false}, SHIFT(470), - [867] = {.count = 1, .reusable = true}, SHIFT(479), - [869] = {.count = 1, .reusable = true}, SHIFT(480), - [871] = {.count = 1, .reusable = false}, SHIFT(481), - [873] = {.count = 1, .reusable = true}, SHIFT(482), - [875] = {.count = 1, .reusable = true}, SHIFT(483), - [877] = {.count = 1, .reusable = true}, SHIFT(484), - [879] = {.count = 1, .reusable = true}, SHIFT(485), - [881] = {.count = 1, .reusable = true}, SHIFT(486), - [883] = {.count = 1, .reusable = false}, SHIFT(487), - [885] = {.count = 1, .reusable = false}, SHIFT(482), - [887] = {.count = 1, .reusable = true}, SHIFT(489), - [889] = {.count = 1, .reusable = false}, SHIFT(491), - [891] = {.count = 1, .reusable = false}, SHIFT(492), - [893] = {.count = 1, .reusable = true}, SHIFT(494), - [895] = {.count = 1, .reusable = true}, SHIFT(495), - [897] = {.count = 1, .reusable = false}, SHIFT(496), - [899] = {.count = 1, .reusable = false}, SHIFT(494), - [901] = {.count = 1, .reusable = true}, SHIFT(497), - [903] = {.count = 1, .reusable = true}, SHIFT(498), - [905] = {.count = 1, .reusable = true}, SHIFT(499), - [907] = {.count = 1, .reusable = false}, SHIFT(500), - [909] = {.count = 1, .reusable = false}, SHIFT(498), - [911] = {.count = 1, .reusable = true}, SHIFT(508), - [913] = {.count = 1, .reusable = false}, SHIFT(509), - [915] = {.count = 1, .reusable = true}, SHIFT(510), - [917] = {.count = 1, .reusable = true}, SHIFT(509), - [919] = {.count = 1, .reusable = true}, SHIFT(511), - [921] = {.count = 1, .reusable = true}, SHIFT(512), - [923] = {.count = 1, .reusable = true}, SHIFT(513), - [925] = {.count = 1, .reusable = true}, SHIFT(514), - [927] = {.count = 1, .reusable = false}, SHIFT(515), - [929] = {.count = 1, .reusable = false}, SHIFT(516), - [931] = {.count = 1, .reusable = true}, SHIFT(516), - [933] = {.count = 1, .reusable = false}, SHIFT(517), - [935] = {.count = 1, .reusable = true}, SHIFT(517), - [937] = {.count = 1, .reusable = true}, SHIFT(518), - [939] = {.count = 1, .reusable = true}, SHIFT(519), - [941] = {.count = 1, .reusable = true}, SHIFT(520), - [943] = {.count = 1, .reusable = false}, SHIFT(520), - [945] = {.count = 1, .reusable = true}, SHIFT(155), - [947] = {.count = 1, .reusable = true}, SHIFT(526), - [949] = {.count = 1, .reusable = true}, SHIFT(528), - [951] = {.count = 1, .reusable = true}, SHIFT(531), - [953] = {.count = 1, .reusable = true}, SHIFT(532), - [955] = {.count = 1, .reusable = true}, SHIFT(533), - [957] = {.count = 1, .reusable = false}, SHIFT(533), - [959] = {.count = 1, .reusable = true}, SHIFT(536), - [961] = {.count = 1, .reusable = true}, SHIFT(537), - [963] = {.count = 1, .reusable = false}, SHIFT(537), - [965] = {.count = 1, .reusable = true}, SHIFT(540), - [967] = {.count = 1, .reusable = false}, SHIFT(541), - [969] = {.count = 1, .reusable = true}, SHIFT(541), - [971] = {.count = 1, .reusable = true}, SHIFT(542), - [973] = {.count = 1, .reusable = true}, SHIFT(543), - [975] = {.count = 1, .reusable = false}, SHIFT(544), - [977] = {.count = 1, .reusable = false}, SHIFT(545), - [979] = {.count = 1, .reusable = true}, SHIFT(545), - [981] = {.count = 1, .reusable = true}, SHIFT(546), - [983] = {.count = 1, .reusable = true}, SHIFT(547), - [985] = {.count = 1, .reusable = true}, SHIFT(548), - [987] = {.count = 1, .reusable = false}, SHIFT(548), - [989] = {.count = 1, .reusable = true}, SHIFT(178), - [991] = {.count = 1, .reusable = true}, SHIFT(552), - [993] = {.count = 1, .reusable = true}, SHIFT(553), - [995] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [997] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), - [999] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [1001] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), - [1003] = {.count = 1, .reusable = true}, SHIFT(561), - [1005] = {.count = 1, .reusable = true}, SHIFT(558), - [1007] = {.count = 1, .reusable = false}, SHIFT(559), - [1009] = {.count = 1, .reusable = true}, SHIFT(560), - [1011] = {.count = 1, .reusable = false}, SHIFT(562), - [1013] = {.count = 1, .reusable = true}, SHIFT(562), - [1015] = {.count = 1, .reusable = false}, SHIFT(563), - [1017] = {.count = 1, .reusable = false}, SHIFT(564), - [1019] = {.count = 1, .reusable = false}, SHIFT(565), - [1021] = {.count = 1, .reusable = true}, SHIFT(566), - [1023] = {.count = 1, .reusable = true}, SHIFT(567), - [1025] = {.count = 1, .reusable = true}, SHIFT(569), - [1027] = {.count = 1, .reusable = true}, SHIFT(570), - [1029] = {.count = 1, .reusable = true}, SHIFT(571), - [1031] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [1033] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [1035] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [1037] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [1039] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [1041] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [1043] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), - [1046] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [1049] = {.count = 1, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), - [1051] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [1054] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [1057] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [1060] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [1063] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [1066] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [1069] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [1072] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [1075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [1078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [1081] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [1084] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [1087] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [1090] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), - [1093] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [1096] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [1099] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), - [1102] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), - [1105] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), - [1108] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), - [1111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), - [1114] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(24), - [1117] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [1120] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(69), - [1123] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), - [1126] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), - [1129] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [1131] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [1133] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1135] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1137] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1139] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1141] = {.count = 1, .reusable = true}, SHIFT(578), - [1143] = {.count = 1, .reusable = true}, SHIFT(579), - [1145] = {.count = 1, .reusable = true}, SHIFT(581), - [1147] = {.count = 1, .reusable = true}, SHIFT(582), - [1149] = {.count = 1, .reusable = true}, SHIFT(583), - [1151] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [1153] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [1155] = {.count = 1, .reusable = true}, SHIFT(584), - [1157] = {.count = 1, .reusable = true}, SHIFT(585), - [1159] = {.count = 1, .reusable = true}, SHIFT(586), - [1161] = {.count = 1, .reusable = false}, SHIFT(587), - [1163] = {.count = 1, .reusable = true}, SHIFT(588), - [1165] = {.count = 1, .reusable = true}, SHIFT(589), - [1167] = {.count = 1, .reusable = true}, SHIFT(590), - [1169] = {.count = 1, .reusable = true}, SHIFT(591), - [1171] = {.count = 1, .reusable = true}, SHIFT(592), - [1173] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), - [1175] = {.count = 1, .reusable = true}, SHIFT(594), - [1177] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), - [1179] = {.count = 1, .reusable = false}, SHIFT(596), - [1181] = {.count = 1, .reusable = false}, SHIFT(597), - [1183] = {.count = 1, .reusable = true}, SHIFT(599), - [1185] = {.count = 1, .reusable = true}, SHIFT(600), - [1187] = {.count = 1, .reusable = false}, SHIFT(601), - [1189] = {.count = 1, .reusable = false}, SHIFT(599), - [1191] = {.count = 1, .reusable = true}, SHIFT(602), - [1193] = {.count = 1, .reusable = true}, SHIFT(603), - [1195] = {.count = 1, .reusable = true}, SHIFT(604), - [1197] = {.count = 1, .reusable = false}, SHIFT(605), - [1199] = {.count = 1, .reusable = false}, SHIFT(603), - [1201] = {.count = 1, .reusable = false}, SHIFT(613), - [1203] = {.count = 1, .reusable = true}, SHIFT(613), - [1205] = {.count = 1, .reusable = true}, SHIFT(225), - [1207] = {.count = 1, .reusable = true}, SHIFT(227), - [1209] = {.count = 1, .reusable = true}, SHIFT(228), - [1211] = {.count = 1, .reusable = true}, SHIFT(230), - [1213] = {.count = 1, .reusable = true}, SHIFT(231), - [1215] = {.count = 1, .reusable = true}, SHIFT(232), - [1217] = {.count = 1, .reusable = true}, SHIFT(233), - [1219] = {.count = 1, .reusable = true}, SHIFT(234), - [1221] = {.count = 1, .reusable = true}, SHIFT(226), - [1223] = {.count = 1, .reusable = true}, SHIFT(617), - [1225] = {.count = 1, .reusable = false}, SHIFT(619), - [1227] = {.count = 1, .reusable = false}, SHIFT(620), - [1229] = {.count = 1, .reusable = true}, SHIFT(622), - [1231] = {.count = 1, .reusable = true}, SHIFT(623), - [1233] = {.count = 1, .reusable = false}, SHIFT(624), - [1235] = {.count = 1, .reusable = false}, SHIFT(622), - [1237] = {.count = 1, .reusable = true}, SHIFT(625), - [1239] = {.count = 1, .reusable = true}, SHIFT(626), - [1241] = {.count = 1, .reusable = true}, SHIFT(627), - [1243] = {.count = 1, .reusable = false}, SHIFT(628), - [1245] = {.count = 1, .reusable = false}, SHIFT(626), - [1247] = {.count = 1, .reusable = false}, SHIFT(636), - [1249] = {.count = 1, .reusable = false}, SHIFT(637), - [1251] = {.count = 1, .reusable = false}, SHIFT(638), - [1253] = {.count = 1, .reusable = true}, SHIFT(636), - [1255] = {.count = 1, .reusable = true}, SHIFT(639), - [1257] = {.count = 1, .reusable = true}, SHIFT(640), - [1259] = {.count = 1, .reusable = true}, SHIFT(642), - [1261] = {.count = 1, .reusable = false}, SHIFT(644), - [1263] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1265] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1267] = {.count = 1, .reusable = false}, SHIFT(648), - [1269] = {.count = 1, .reusable = false}, SHIFT(649), - [1271] = {.count = 1, .reusable = false}, SHIFT(650), - [1273] = {.count = 1, .reusable = true}, SHIFT(654), - [1275] = {.count = 1, .reusable = false}, SHIFT(655), - [1277] = {.count = 1, .reusable = true}, SHIFT(655), - [1279] = {.count = 1, .reusable = true}, SHIFT(656), - [1281] = {.count = 1, .reusable = false}, SHIFT(658), - [1283] = {.count = 1, .reusable = false}, SHIFT(659), - [1285] = {.count = 1, .reusable = false}, SHIFT(660), - [1287] = {.count = 1, .reusable = true}, SHIFT(660), - [1289] = {.count = 1, .reusable = true}, SHIFT(661), - [1291] = {.count = 1, .reusable = true}, SHIFT(662), - [1293] = {.count = 1, .reusable = true}, SHIFT(663), - [1295] = {.count = 1, .reusable = false}, SHIFT(665), - [1297] = {.count = 1, .reusable = true}, SHIFT(665), - [1299] = {.count = 1, .reusable = true}, SHIFT(664), - [1301] = {.count = 1, .reusable = true}, SHIFT(666), - [1303] = {.count = 1, .reusable = true}, SHIFT(667), - [1305] = {.count = 1, .reusable = false}, SHIFT(668), - [1307] = {.count = 1, .reusable = false}, SHIFT(667), - [1309] = {.count = 1, .reusable = true}, SHIFT(670), - [1311] = {.count = 1, .reusable = false}, SHIFT(672), - [1313] = {.count = 1, .reusable = true}, SHIFT(672), - [1315] = {.count = 1, .reusable = true}, SHIFT(671), - [1317] = {.count = 1, .reusable = true}, SHIFT(673), - [1319] = {.count = 1, .reusable = false}, SHIFT(675), - [1321] = {.count = 1, .reusable = true}, SHIFT(675), - [1323] = {.count = 1, .reusable = true}, SHIFT(674), - [1325] = {.count = 1, .reusable = true}, SHIFT(676), - [1327] = {.count = 1, .reusable = true}, SHIFT(677), - [1329] = {.count = 1, .reusable = true}, SHIFT(678), - [1331] = {.count = 1, .reusable = true}, SHIFT(679), - [1333] = {.count = 1, .reusable = true}, SHIFT(683), - [1335] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1337] = {.count = 1, .reusable = false}, SHIFT(684), - [1339] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1341] = {.count = 1, .reusable = true}, SHIFT(686), - [1343] = {.count = 1, .reusable = true}, SHIFT(687), - [1345] = {.count = 1, .reusable = true}, SHIFT(689), - [1347] = {.count = 1, .reusable = true}, SHIFT(691), - [1349] = {.count = 1, .reusable = true}, SHIFT(692), - [1351] = {.count = 1, .reusable = true}, SHIFT(698), - [1353] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [1355] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [1357] = {.count = 1, .reusable = true}, SHIFT(699), - [1359] = {.count = 1, .reusable = false}, SHIFT(702), - [1361] = {.count = 1, .reusable = true}, SHIFT(702), - [1363] = {.count = 1, .reusable = false}, SHIFT(703), - [1365] = {.count = 1, .reusable = false}, SHIFT(704), - [1367] = {.count = 1, .reusable = true}, SHIFT(705), - [1369] = {.count = 1, .reusable = true}, SHIFT(706), - [1371] = {.count = 1, .reusable = true}, SHIFT(707), - [1373] = {.count = 1, .reusable = true}, SHIFT(708), - [1375] = {.count = 1, .reusable = false}, SHIFT(699), - [1377] = {.count = 1, .reusable = false}, SHIFT(712), - [1379] = {.count = 1, .reusable = true}, SHIFT(712), - [1381] = {.count = 1, .reusable = true}, SHIFT(714), - [1383] = {.count = 1, .reusable = true}, SHIFT(715), - [1385] = {.count = 1, .reusable = true}, SHIFT(716), - [1387] = {.count = 1, .reusable = true}, SHIFT(717), - [1389] = {.count = 1, .reusable = true}, SHIFT(720), - [1391] = {.count = 1, .reusable = true}, SHIFT(721), - [1393] = {.count = 1, .reusable = true}, SHIFT(722), - [1395] = {.count = 1, .reusable = false}, SHIFT(721), - [1397] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [1399] = {.count = 1, .reusable = true}, SHIFT(723), - [1401] = {.count = 1, .reusable = false}, SHIFT(725), - [1403] = {.count = 1, .reusable = false}, SHIFT(726), - [1405] = {.count = 1, .reusable = true}, SHIFT(727), + [523] = {.count = 1, .reusable = false}, SHIFT(290), + [525] = {.count = 1, .reusable = true}, SHIFT(303), + [527] = {.count = 1, .reusable = true}, SHIFT(304), + [529] = {.count = 1, .reusable = true}, SHIFT(305), + [531] = {.count = 1, .reusable = false}, SHIFT(303), + [533] = {.count = 1, .reusable = true}, SHIFT(308), + [535] = {.count = 1, .reusable = false}, SHIFT(310), + [537] = {.count = 1, .reusable = false}, SHIFT(311), + [539] = {.count = 1, .reusable = true}, SHIFT(313), + [541] = {.count = 1, .reusable = true}, SHIFT(314), + [543] = {.count = 1, .reusable = false}, SHIFT(315), + [545] = {.count = 1, .reusable = false}, SHIFT(313), + [547] = {.count = 1, .reusable = true}, SHIFT(316), + [549] = {.count = 1, .reusable = true}, SHIFT(317), + [551] = {.count = 1, .reusable = true}, SHIFT(318), + [553] = {.count = 1, .reusable = false}, SHIFT(319), + [555] = {.count = 1, .reusable = false}, SHIFT(317), + [557] = {.count = 1, .reusable = true}, SHIFT(330), + [559] = {.count = 1, .reusable = true}, SHIFT(331), + [561] = {.count = 1, .reusable = false}, SHIFT(330), + [563] = {.count = 1, .reusable = true}, SHIFT(332), + [565] = {.count = 1, .reusable = true}, SHIFT(333), + [567] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [569] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [571] = {.count = 1, .reusable = false}, SHIFT(335), + [573] = {.count = 1, .reusable = false}, SHIFT(336), + [575] = {.count = 1, .reusable = true}, SHIFT(97), + [577] = {.count = 1, .reusable = true}, SHIFT(338), + [579] = {.count = 1, .reusable = true}, SHIFT(339), + [581] = {.count = 1, .reusable = false}, SHIFT(340), + [583] = {.count = 1, .reusable = false}, SHIFT(338), + [585] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [587] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [589] = {.count = 1, .reusable = true}, SHIFT(341), + [591] = {.count = 1, .reusable = true}, SHIFT(342), + [593] = {.count = 1, .reusable = true}, SHIFT(343), + [595] = {.count = 1, .reusable = false}, SHIFT(344), + [597] = {.count = 1, .reusable = false}, SHIFT(342), + [599] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [601] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [603] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [605] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [607] = {.count = 1, .reusable = true}, SHIFT(356), + [609] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [611] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [613] = {.count = 1, .reusable = false}, SHIFT(358), + [615] = {.count = 1, .reusable = false}, SHIFT(359), + [617] = {.count = 1, .reusable = true}, SHIFT(108), + [619] = {.count = 1, .reusable = true}, SHIFT(361), + [621] = {.count = 1, .reusable = true}, SHIFT(362), + [623] = {.count = 1, .reusable = false}, SHIFT(363), + [625] = {.count = 1, .reusable = false}, SHIFT(361), + [627] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [629] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [631] = {.count = 1, .reusable = true}, SHIFT(364), + [633] = {.count = 1, .reusable = true}, SHIFT(365), + [635] = {.count = 1, .reusable = true}, SHIFT(366), + [637] = {.count = 1, .reusable = false}, SHIFT(367), + [639] = {.count = 1, .reusable = false}, SHIFT(365), + [641] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [643] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [645] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [647] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [649] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [651] = {.count = 1, .reusable = true}, SHIFT(379), + [653] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [655] = {.count = 1, .reusable = false}, SHIFT(381), + [657] = {.count = 1, .reusable = false}, SHIFT(382), + [659] = {.count = 1, .reusable = true}, SHIFT(384), + [661] = {.count = 1, .reusable = true}, SHIFT(385), + [663] = {.count = 1, .reusable = false}, SHIFT(386), + [665] = {.count = 1, .reusable = false}, SHIFT(384), + [667] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [669] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [671] = {.count = 1, .reusable = true}, SHIFT(387), + [673] = {.count = 1, .reusable = true}, SHIFT(388), + [675] = {.count = 1, .reusable = true}, SHIFT(389), + [677] = {.count = 1, .reusable = false}, SHIFT(390), + [679] = {.count = 1, .reusable = false}, SHIFT(388), + [681] = {.count = 1, .reusable = true}, SHIFT(401), + [683] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [685] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [687] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [689] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [691] = {.count = 1, .reusable = false}, SHIFT(403), + [693] = {.count = 1, .reusable = false}, SHIFT(404), + [695] = {.count = 1, .reusable = false}, SHIFT(405), + [697] = {.count = 1, .reusable = true}, SHIFT(404), + [699] = {.count = 1, .reusable = false}, SHIFT(406), + [701] = {.count = 1, .reusable = true}, SHIFT(407), + [703] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [705] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), + [707] = {.count = 1, .reusable = true}, SHIFT(408), + [709] = {.count = 1, .reusable = true}, SHIFT(409), + [711] = {.count = 1, .reusable = true}, SHIFT(410), + [713] = {.count = 1, .reusable = false}, SHIFT(411), + [715] = {.count = 1, .reusable = false}, SHIFT(409), + [717] = {.count = 1, .reusable = false}, SHIFT(419), + [719] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [721] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [723] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [725] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [727] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [729] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [731] = {.count = 1, .reusable = true}, SHIFT(421), + [733] = {.count = 1, .reusable = true}, SHIFT(422), + [735] = {.count = 1, .reusable = true}, SHIFT(423), + [737] = {.count = 1, .reusable = false}, SHIFT(433), + [739] = {.count = 1, .reusable = false}, SHIFT(424), + [741] = {.count = 1, .reusable = true}, SHIFT(425), + [743] = {.count = 1, .reusable = false}, SHIFT(426), + [745] = {.count = 1, .reusable = true}, SHIFT(427), + [747] = {.count = 1, .reusable = true}, SHIFT(433), + [749] = {.count = 1, .reusable = true}, SHIFT(428), + [751] = {.count = 1, .reusable = true}, SHIFT(429), + [753] = {.count = 1, .reusable = true}, SHIFT(430), + [755] = {.count = 1, .reusable = true}, SHIFT(431), + [757] = {.count = 1, .reusable = true}, SHIFT(432), + [759] = {.count = 1, .reusable = false}, SHIFT(427), + [761] = {.count = 1, .reusable = true}, SHIFT(434), + [763] = {.count = 1, .reusable = true}, SHIFT(435), + [765] = {.count = 1, .reusable = false}, SHIFT(436), + [767] = {.count = 1, .reusable = false}, SHIFT(435), + [769] = {.count = 1, .reusable = true}, SHIFT(438), + [771] = {.count = 1, .reusable = false}, SHIFT(440), + [773] = {.count = 1, .reusable = true}, SHIFT(440), + [775] = {.count = 1, .reusable = true}, SHIFT(439), + [777] = {.count = 1, .reusable = true}, SHIFT(441), + [779] = {.count = 1, .reusable = false}, SHIFT(443), + [781] = {.count = 1, .reusable = true}, SHIFT(443), + [783] = {.count = 1, .reusable = true}, SHIFT(442), + [785] = {.count = 1, .reusable = false}, SHIFT(444), + [787] = {.count = 1, .reusable = false}, SHIFT(445), + [789] = {.count = 1, .reusable = true}, SHIFT(445), + [791] = {.count = 1, .reusable = true}, SHIFT(449), + [793] = {.count = 1, .reusable = false}, SHIFT(454), + [795] = {.count = 1, .reusable = false}, SHIFT(455), + [797] = {.count = 1, .reusable = false}, SHIFT(456), + [799] = {.count = 1, .reusable = false}, SHIFT(457), + [801] = {.count = 1, .reusable = true}, SHIFT(456), + [803] = {.count = 1, .reusable = true}, SHIFT(458), + [805] = {.count = 1, .reusable = false}, SHIFT(459), + [807] = {.count = 1, .reusable = false}, SHIFT(460), + [809] = {.count = 1, .reusable = false}, SHIFT(466), + [811] = {.count = 1, .reusable = false}, SHIFT(467), + [813] = {.count = 1, .reusable = true}, SHIFT(467), + [815] = {.count = 1, .reusable = true}, SHIFT(470), + [817] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [819] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), + [821] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [823] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [825] = {.count = 1, .reusable = true}, SHIFT(478), + [827] = {.count = 1, .reusable = true}, SHIFT(475), + [829] = {.count = 1, .reusable = false}, SHIFT(476), + [831] = {.count = 1, .reusable = true}, SHIFT(477), + [833] = {.count = 1, .reusable = false}, SHIFT(479), + [835] = {.count = 1, .reusable = true}, SHIFT(479), + [837] = {.count = 1, .reusable = false}, SHIFT(480), + [839] = {.count = 1, .reusable = false}, SHIFT(481), + [841] = {.count = 1, .reusable = false}, SHIFT(482), + [843] = {.count = 1, .reusable = true}, SHIFT(483), + [845] = {.count = 1, .reusable = true}, SHIFT(484), + [847] = {.count = 1, .reusable = true}, SHIFT(486), + [849] = {.count = 1, .reusable = true}, SHIFT(487), + [851] = {.count = 1, .reusable = true}, SHIFT(488), + [853] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [855] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [857] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [859] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [861] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [863] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [865] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [868] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [871] = {.count = 1, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), + [873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [879] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [882] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [888] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [891] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [894] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [897] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [900] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [903] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [906] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [909] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [912] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [915] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [921] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [924] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [927] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [930] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), + [933] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), + [936] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(24), + [939] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [942] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(70), + [945] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), + [948] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), + [951] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [953] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [955] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [957] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [959] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [961] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [963] = {.count = 1, .reusable = true}, SHIFT(495), + [965] = {.count = 1, .reusable = true}, SHIFT(496), + [967] = {.count = 1, .reusable = true}, SHIFT(498), + [969] = {.count = 1, .reusable = true}, SHIFT(499), + [971] = {.count = 1, .reusable = true}, SHIFT(500), + [973] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [975] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [977] = {.count = 1, .reusable = true}, SHIFT(501), + [979] = {.count = 1, .reusable = true}, SHIFT(502), + [981] = {.count = 1, .reusable = true}, SHIFT(503), + [983] = {.count = 1, .reusable = false}, SHIFT(504), + [985] = {.count = 1, .reusable = true}, SHIFT(505), + [987] = {.count = 1, .reusable = true}, SHIFT(506), + [989] = {.count = 1, .reusable = true}, SHIFT(507), + [991] = {.count = 1, .reusable = true}, SHIFT(508), + [993] = {.count = 1, .reusable = true}, SHIFT(509), + [995] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), + [997] = {.count = 1, .reusable = true}, SHIFT(511), + [999] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), + [1001] = {.count = 1, .reusable = false}, SHIFT(513), + [1003] = {.count = 1, .reusable = false}, SHIFT(514), + [1005] = {.count = 1, .reusable = true}, SHIFT(516), + [1007] = {.count = 1, .reusable = true}, SHIFT(517), + [1009] = {.count = 1, .reusable = false}, SHIFT(518), + [1011] = {.count = 1, .reusable = false}, SHIFT(516), + [1013] = {.count = 1, .reusable = true}, SHIFT(519), + [1015] = {.count = 1, .reusable = true}, SHIFT(520), + [1017] = {.count = 1, .reusable = true}, SHIFT(521), + [1019] = {.count = 1, .reusable = false}, SHIFT(522), + [1021] = {.count = 1, .reusable = false}, SHIFT(520), + [1023] = {.count = 1, .reusable = false}, SHIFT(533), + [1025] = {.count = 1, .reusable = true}, SHIFT(533), + [1027] = {.count = 1, .reusable = true}, SHIFT(198), + [1029] = {.count = 1, .reusable = true}, SHIFT(200), + [1031] = {.count = 1, .reusable = true}, SHIFT(201), + [1033] = {.count = 1, .reusable = true}, SHIFT(203), + [1035] = {.count = 1, .reusable = true}, SHIFT(204), + [1037] = {.count = 1, .reusable = true}, SHIFT(205), + [1039] = {.count = 1, .reusable = true}, SHIFT(206), + [1041] = {.count = 1, .reusable = true}, SHIFT(207), + [1043] = {.count = 1, .reusable = true}, SHIFT(199), + [1045] = {.count = 1, .reusable = true}, SHIFT(537), + [1047] = {.count = 1, .reusable = false}, SHIFT(539), + [1049] = {.count = 1, .reusable = false}, SHIFT(540), + [1051] = {.count = 1, .reusable = true}, SHIFT(542), + [1053] = {.count = 1, .reusable = true}, SHIFT(543), + [1055] = {.count = 1, .reusable = false}, SHIFT(544), + [1057] = {.count = 1, .reusable = false}, SHIFT(542), + [1059] = {.count = 1, .reusable = true}, SHIFT(545), + [1061] = {.count = 1, .reusable = true}, SHIFT(546), + [1063] = {.count = 1, .reusable = true}, SHIFT(547), + [1065] = {.count = 1, .reusable = false}, SHIFT(548), + [1067] = {.count = 1, .reusable = false}, SHIFT(546), + [1069] = {.count = 1, .reusable = false}, SHIFT(559), + [1071] = {.count = 1, .reusable = false}, SHIFT(560), + [1073] = {.count = 1, .reusable = false}, SHIFT(561), + [1075] = {.count = 1, .reusable = true}, SHIFT(559), + [1077] = {.count = 1, .reusable = true}, SHIFT(562), + [1079] = {.count = 1, .reusable = true}, SHIFT(563), + [1081] = {.count = 1, .reusable = true}, SHIFT(565), + [1083] = {.count = 1, .reusable = false}, SHIFT(567), + [1085] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1087] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1089] = {.count = 1, .reusable = false}, SHIFT(571), + [1091] = {.count = 1, .reusable = false}, SHIFT(572), + [1093] = {.count = 1, .reusable = false}, SHIFT(573), + [1095] = {.count = 1, .reusable = true}, SHIFT(578), + [1097] = {.count = 1, .reusable = false}, SHIFT(579), + [1099] = {.count = 1, .reusable = true}, SHIFT(579), + [1101] = {.count = 1, .reusable = true}, SHIFT(580), + [1103] = {.count = 1, .reusable = false}, SHIFT(582), + [1105] = {.count = 1, .reusable = false}, SHIFT(583), + [1107] = {.count = 1, .reusable = false}, SHIFT(584), + [1109] = {.count = 1, .reusable = true}, SHIFT(584), + [1111] = {.count = 1, .reusable = true}, SHIFT(585), + [1113] = {.count = 1, .reusable = true}, SHIFT(586), + [1115] = {.count = 1, .reusable = true}, SHIFT(587), + [1117] = {.count = 1, .reusable = false}, SHIFT(589), + [1119] = {.count = 1, .reusable = true}, SHIFT(589), + [1121] = {.count = 1, .reusable = true}, SHIFT(588), + [1123] = {.count = 1, .reusable = true}, SHIFT(590), + [1125] = {.count = 1, .reusable = true}, SHIFT(591), + [1127] = {.count = 1, .reusable = false}, SHIFT(592), + [1129] = {.count = 1, .reusable = false}, SHIFT(591), + [1131] = {.count = 1, .reusable = true}, SHIFT(594), + [1133] = {.count = 1, .reusable = false}, SHIFT(596), + [1135] = {.count = 1, .reusable = true}, SHIFT(596), + [1137] = {.count = 1, .reusable = true}, SHIFT(595), + [1139] = {.count = 1, .reusable = true}, SHIFT(597), + [1141] = {.count = 1, .reusable = false}, SHIFT(599), + [1143] = {.count = 1, .reusable = true}, SHIFT(599), + [1145] = {.count = 1, .reusable = true}, SHIFT(598), + [1147] = {.count = 1, .reusable = false}, SHIFT(600), + [1149] = {.count = 1, .reusable = false}, SHIFT(601), + [1151] = {.count = 1, .reusable = true}, SHIFT(601), + [1153] = {.count = 1, .reusable = false}, SHIFT(604), + [1155] = {.count = 1, .reusable = true}, SHIFT(604), + [1157] = {.count = 1, .reusable = false}, SHIFT(607), + [1159] = {.count = 1, .reusable = false}, SHIFT(608), + [1161] = {.count = 1, .reusable = true}, SHIFT(608), + [1163] = {.count = 1, .reusable = true}, SHIFT(611), + [1165] = {.count = 1, .reusable = true}, SHIFT(612), + [1167] = {.count = 1, .reusable = true}, SHIFT(616), + [1169] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1171] = {.count = 1, .reusable = false}, SHIFT(617), + [1173] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1175] = {.count = 1, .reusable = true}, SHIFT(619), + [1177] = {.count = 1, .reusable = true}, SHIFT(620), + [1179] = {.count = 1, .reusable = true}, SHIFT(622), + [1181] = {.count = 1, .reusable = true}, SHIFT(624), + [1183] = {.count = 1, .reusable = true}, SHIFT(625), + [1185] = {.count = 1, .reusable = true}, SHIFT(631), + [1187] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [1189] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [1191] = {.count = 1, .reusable = true}, SHIFT(632), + [1193] = {.count = 1, .reusable = false}, SHIFT(635), + [1195] = {.count = 1, .reusable = true}, SHIFT(635), + [1197] = {.count = 1, .reusable = false}, SHIFT(636), + [1199] = {.count = 1, .reusable = false}, SHIFT(637), + [1201] = {.count = 1, .reusable = true}, SHIFT(638), + [1203] = {.count = 1, .reusable = true}, SHIFT(639), + [1205] = {.count = 1, .reusable = true}, SHIFT(640), + [1207] = {.count = 1, .reusable = true}, SHIFT(641), + [1209] = {.count = 1, .reusable = false}, SHIFT(632), + [1211] = {.count = 1, .reusable = false}, SHIFT(645), + [1213] = {.count = 1, .reusable = true}, SHIFT(645), + [1215] = {.count = 1, .reusable = true}, SHIFT(647), + [1217] = {.count = 1, .reusable = true}, SHIFT(648), + [1219] = {.count = 1, .reusable = true}, SHIFT(649), + [1221] = {.count = 1, .reusable = true}, SHIFT(650), + [1223] = {.count = 1, .reusable = true}, SHIFT(653), + [1225] = {.count = 1, .reusable = true}, SHIFT(654), + [1227] = {.count = 1, .reusable = true}, SHIFT(655), + [1229] = {.count = 1, .reusable = false}, SHIFT(654), + [1231] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [1233] = {.count = 1, .reusable = true}, SHIFT(656), + [1235] = {.count = 1, .reusable = false}, SHIFT(658), + [1237] = {.count = 1, .reusable = false}, SHIFT(659), + [1239] = {.count = 1, .reusable = true}, SHIFT(660), + [1241] = {.count = 1, .reusable = true}, SHIFT(661), + [1243] = {.count = 1, .reusable = false}, SHIFT(663), + [1245] = {.count = 1, .reusable = true}, SHIFT(663), + [1247] = {.count = 1, .reusable = true}, SHIFT(662), + [1249] = {.count = 1, .reusable = true}, SHIFT(664), + [1251] = {.count = 1, .reusable = true}, SHIFT(665), + [1253] = {.count = 1, .reusable = false}, SHIFT(666), + [1255] = {.count = 1, .reusable = false}, SHIFT(665), + [1257] = {.count = 1, .reusable = true}, SHIFT(668), + [1259] = {.count = 1, .reusable = false}, SHIFT(670), + [1261] = {.count = 1, .reusable = true}, SHIFT(670), + [1263] = {.count = 1, .reusable = true}, SHIFT(669), + [1265] = {.count = 1, .reusable = true}, SHIFT(671), + [1267] = {.count = 1, .reusable = false}, SHIFT(673), + [1269] = {.count = 1, .reusable = true}, SHIFT(673), + [1271] = {.count = 1, .reusable = true}, SHIFT(672), + [1273] = {.count = 1, .reusable = false}, SHIFT(674), + [1275] = {.count = 1, .reusable = false}, SHIFT(675), + [1277] = {.count = 1, .reusable = true}, SHIFT(675), + [1279] = {.count = 1, .reusable = false}, SHIFT(678), + [1281] = {.count = 1, .reusable = true}, SHIFT(678), + [1283] = {.count = 1, .reusable = false}, SHIFT(681), + [1285] = {.count = 1, .reusable = false}, SHIFT(682), + [1287] = {.count = 1, .reusable = true}, SHIFT(682), + [1289] = {.count = 1, .reusable = true}, SHIFT(686), + [1291] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1293] = {.count = 1, .reusable = false}, SHIFT(687), + [1295] = {.count = 1, .reusable = false}, SHIFT(688), + [1297] = {.count = 1, .reusable = false}, SHIFT(689), + [1299] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1301] = {.count = 1, .reusable = false}, SHIFT(73), + [1303] = {.count = 1, .reusable = false}, SHIFT(75), + [1305] = {.count = 1, .reusable = false}, SHIFT(76), + [1307] = {.count = 1, .reusable = false}, SHIFT(79), + [1309] = {.count = 1, .reusable = false}, SHIFT(80), + [1311] = {.count = 1, .reusable = false}, SHIFT(81), + [1313] = {.count = 1, .reusable = false}, SHIFT(82), + [1315] = {.count = 1, .reusable = false}, SHIFT(691), + [1317] = {.count = 1, .reusable = true}, SHIFT(692), + [1319] = {.count = 1, .reusable = true}, SHIFT(693), + [1321] = {.count = 1, .reusable = false}, SHIFT(695), + [1323] = {.count = 1, .reusable = false}, SHIFT(696), + [1325] = {.count = 1, .reusable = true}, SHIFT(697), + [1327] = {.count = 1, .reusable = true}, SHIFT(698), + [1329] = {.count = 1, .reusable = false}, SHIFT(700), + [1331] = {.count = 1, .reusable = true}, SHIFT(700), + [1333] = {.count = 1, .reusable = true}, SHIFT(699), + [1335] = {.count = 1, .reusable = true}, SHIFT(701), + [1337] = {.count = 1, .reusable = true}, SHIFT(702), + [1339] = {.count = 1, .reusable = false}, SHIFT(703), + [1341] = {.count = 1, .reusable = false}, SHIFT(702), + [1343] = {.count = 1, .reusable = true}, SHIFT(705), + [1345] = {.count = 1, .reusable = false}, SHIFT(707), + [1347] = {.count = 1, .reusable = true}, SHIFT(707), + [1349] = {.count = 1, .reusable = true}, SHIFT(706), + [1351] = {.count = 1, .reusable = true}, SHIFT(708), + [1353] = {.count = 1, .reusable = false}, SHIFT(710), + [1355] = {.count = 1, .reusable = true}, SHIFT(710), + [1357] = {.count = 1, .reusable = true}, SHIFT(709), + [1359] = {.count = 1, .reusable = false}, SHIFT(711), + [1361] = {.count = 1, .reusable = false}, SHIFT(712), + [1363] = {.count = 1, .reusable = true}, SHIFT(712), + [1365] = {.count = 1, .reusable = false}, SHIFT(715), + [1367] = {.count = 1, .reusable = true}, SHIFT(715), + [1369] = {.count = 1, .reusable = false}, SHIFT(718), + [1371] = {.count = 1, .reusable = false}, SHIFT(719), + [1373] = {.count = 1, .reusable = true}, SHIFT(719), + [1375] = {.count = 1, .reusable = false}, SHIFT(84), + [1377] = {.count = 1, .reusable = false}, SHIFT(86), + [1379] = {.count = 1, .reusable = false}, SHIFT(87), + [1381] = {.count = 1, .reusable = false}, SHIFT(90), + [1383] = {.count = 1, .reusable = false}, SHIFT(91), + [1385] = {.count = 1, .reusable = false}, SHIFT(92), + [1387] = {.count = 1, .reusable = false}, SHIFT(93), + [1389] = {.count = 1, .reusable = false}, SHIFT(723), + [1391] = {.count = 1, .reusable = true}, SHIFT(724), + [1393] = {.count = 1, .reusable = true}, SHIFT(725), + [1395] = {.count = 1, .reusable = true}, SHIFT(726), + [1397] = {.count = 1, .reusable = true}, SHIFT(727), + [1399] = {.count = 1, .reusable = true}, SHIFT(100), + [1401] = {.count = 1, .reusable = true}, SHIFT(101), + [1403] = {.count = 1, .reusable = true}, SHIFT(102), + [1405] = {.count = 1, .reusable = true}, SHIFT(103), [1407] = {.count = 1, .reusable = true}, SHIFT(728), [1409] = {.count = 1, .reusable = false}, SHIFT(730), - [1411] = {.count = 1, .reusable = true}, SHIFT(730), - [1413] = {.count = 1, .reusable = true}, SHIFT(729), - [1415] = {.count = 1, .reusable = true}, SHIFT(731), - [1417] = {.count = 1, .reusable = true}, SHIFT(732), - [1419] = {.count = 1, .reusable = false}, SHIFT(733), - [1421] = {.count = 1, .reusable = false}, SHIFT(732), - [1423] = {.count = 1, .reusable = true}, SHIFT(735), - [1425] = {.count = 1, .reusable = false}, SHIFT(737), - [1427] = {.count = 1, .reusable = true}, SHIFT(737), - [1429] = {.count = 1, .reusable = true}, SHIFT(736), - [1431] = {.count = 1, .reusable = true}, SHIFT(738), - [1433] = {.count = 1, .reusable = false}, SHIFT(740), - [1435] = {.count = 1, .reusable = true}, SHIFT(740), - [1437] = {.count = 1, .reusable = true}, SHIFT(739), - [1439] = {.count = 1, .reusable = true}, SHIFT(741), - [1441] = {.count = 1, .reusable = true}, SHIFT(742), - [1443] = {.count = 1, .reusable = true}, SHIFT(744), - [1445] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [1447] = {.count = 1, .reusable = false}, SHIFT(745), - [1449] = {.count = 1, .reusable = false}, SHIFT(746), - [1451] = {.count = 1, .reusable = false}, SHIFT(747), - [1453] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [1455] = {.count = 1, .reusable = false}, SHIFT(72), - [1457] = {.count = 1, .reusable = false}, SHIFT(74), - [1459] = {.count = 1, .reusable = false}, SHIFT(75), - [1461] = {.count = 1, .reusable = false}, SHIFT(78), - [1463] = {.count = 1, .reusable = false}, SHIFT(79), - [1465] = {.count = 1, .reusable = false}, SHIFT(80), - [1467] = {.count = 1, .reusable = false}, SHIFT(81), - [1469] = {.count = 1, .reusable = false}, SHIFT(749), - [1471] = {.count = 1, .reusable = true}, SHIFT(750), - [1473] = {.count = 1, .reusable = true}, SHIFT(751), - [1475] = {.count = 1, .reusable = false}, SHIFT(753), - [1477] = {.count = 1, .reusable = false}, SHIFT(754), - [1479] = {.count = 1, .reusable = true}, SHIFT(755), - [1481] = {.count = 1, .reusable = true}, SHIFT(756), - [1483] = {.count = 1, .reusable = false}, SHIFT(758), - [1485] = {.count = 1, .reusable = true}, SHIFT(758), - [1487] = {.count = 1, .reusable = true}, SHIFT(757), - [1489] = {.count = 1, .reusable = true}, SHIFT(759), - [1491] = {.count = 1, .reusable = true}, SHIFT(760), - [1493] = {.count = 1, .reusable = false}, SHIFT(761), - [1495] = {.count = 1, .reusable = false}, SHIFT(760), - [1497] = {.count = 1, .reusable = true}, SHIFT(763), - [1499] = {.count = 1, .reusable = false}, SHIFT(765), - [1501] = {.count = 1, .reusable = true}, SHIFT(765), - [1503] = {.count = 1, .reusable = true}, SHIFT(764), - [1505] = {.count = 1, .reusable = true}, SHIFT(766), - [1507] = {.count = 1, .reusable = false}, SHIFT(768), - [1509] = {.count = 1, .reusable = true}, SHIFT(768), - [1511] = {.count = 1, .reusable = true}, SHIFT(767), - [1513] = {.count = 1, .reusable = true}, SHIFT(769), - [1515] = {.count = 1, .reusable = true}, SHIFT(770), - [1517] = {.count = 1, .reusable = false}, SHIFT(83), - [1519] = {.count = 1, .reusable = false}, SHIFT(85), - [1521] = {.count = 1, .reusable = false}, SHIFT(86), - [1523] = {.count = 1, .reusable = false}, SHIFT(89), - [1525] = {.count = 1, .reusable = false}, SHIFT(90), - [1527] = {.count = 1, .reusable = false}, SHIFT(91), - [1529] = {.count = 1, .reusable = false}, SHIFT(92), - [1531] = {.count = 1, .reusable = false}, SHIFT(772), - [1533] = {.count = 1, .reusable = true}, SHIFT(773), - [1535] = {.count = 1, .reusable = true}, SHIFT(774), - [1537] = {.count = 1, .reusable = true}, SHIFT(775), - [1539] = {.count = 1, .reusable = true}, SHIFT(776), - [1541] = {.count = 1, .reusable = true}, SHIFT(99), - [1543] = {.count = 1, .reusable = true}, SHIFT(100), - [1545] = {.count = 1, .reusable = true}, SHIFT(101), - [1547] = {.count = 1, .reusable = true}, SHIFT(102), - [1549] = {.count = 1, .reusable = true}, SHIFT(777), + [1411] = {.count = 1, .reusable = false}, SHIFT(731), + [1413] = {.count = 1, .reusable = true}, SHIFT(732), + [1415] = {.count = 1, .reusable = true}, SHIFT(733), + [1417] = {.count = 1, .reusable = false}, SHIFT(735), + [1419] = {.count = 1, .reusable = true}, SHIFT(735), + [1421] = {.count = 1, .reusable = true}, SHIFT(734), + [1423] = {.count = 1, .reusable = true}, SHIFT(736), + [1425] = {.count = 1, .reusable = true}, SHIFT(737), + [1427] = {.count = 1, .reusable = false}, SHIFT(738), + [1429] = {.count = 1, .reusable = false}, SHIFT(737), + [1431] = {.count = 1, .reusable = true}, SHIFT(740), + [1433] = {.count = 1, .reusable = false}, SHIFT(742), + [1435] = {.count = 1, .reusable = true}, SHIFT(742), + [1437] = {.count = 1, .reusable = true}, SHIFT(741), + [1439] = {.count = 1, .reusable = true}, SHIFT(743), + [1441] = {.count = 1, .reusable = false}, SHIFT(745), + [1443] = {.count = 1, .reusable = true}, SHIFT(745), + [1445] = {.count = 1, .reusable = true}, SHIFT(744), + [1447] = {.count = 1, .reusable = false}, SHIFT(746), + [1449] = {.count = 1, .reusable = false}, SHIFT(747), + [1451] = {.count = 1, .reusable = true}, SHIFT(747), + [1453] = {.count = 1, .reusable = false}, SHIFT(750), + [1455] = {.count = 1, .reusable = true}, SHIFT(750), + [1457] = {.count = 1, .reusable = false}, SHIFT(753), + [1459] = {.count = 1, .reusable = false}, SHIFT(754), + [1461] = {.count = 1, .reusable = true}, SHIFT(754), + [1463] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), + [1466] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1468] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), + [1471] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1474] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), + [1477] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [1480] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), + [1483] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), + [1486] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), + [1489] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), + [1492] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), + [1495] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1497] = {.count = 1, .reusable = true}, SHIFT(757), + [1499] = {.count = 1, .reusable = true}, SHIFT(111), + [1501] = {.count = 1, .reusable = true}, SHIFT(112), + [1503] = {.count = 1, .reusable = true}, SHIFT(113), + [1505] = {.count = 1, .reusable = true}, SHIFT(114), + [1507] = {.count = 1, .reusable = false}, SHIFT(759), + [1509] = {.count = 1, .reusable = false}, SHIFT(760), + [1511] = {.count = 1, .reusable = true}, SHIFT(761), + [1513] = {.count = 1, .reusable = true}, SHIFT(762), + [1515] = {.count = 1, .reusable = false}, SHIFT(764), + [1517] = {.count = 1, .reusable = true}, SHIFT(764), + [1519] = {.count = 1, .reusable = true}, SHIFT(763), + [1521] = {.count = 1, .reusable = true}, SHIFT(765), + [1523] = {.count = 1, .reusable = true}, SHIFT(766), + [1525] = {.count = 1, .reusable = false}, SHIFT(767), + [1527] = {.count = 1, .reusable = false}, SHIFT(766), + [1529] = {.count = 1, .reusable = true}, SHIFT(769), + [1531] = {.count = 1, .reusable = false}, SHIFT(771), + [1533] = {.count = 1, .reusable = true}, SHIFT(771), + [1535] = {.count = 1, .reusable = true}, SHIFT(770), + [1537] = {.count = 1, .reusable = true}, SHIFT(772), + [1539] = {.count = 1, .reusable = false}, SHIFT(774), + [1541] = {.count = 1, .reusable = true}, SHIFT(774), + [1543] = {.count = 1, .reusable = true}, SHIFT(773), + [1545] = {.count = 1, .reusable = false}, SHIFT(775), + [1547] = {.count = 1, .reusable = false}, SHIFT(776), + [1549] = {.count = 1, .reusable = true}, SHIFT(776), [1551] = {.count = 1, .reusable = false}, SHIFT(779), - [1553] = {.count = 1, .reusable = false}, SHIFT(780), - [1555] = {.count = 1, .reusable = true}, SHIFT(781), - [1557] = {.count = 1, .reusable = true}, SHIFT(782), - [1559] = {.count = 1, .reusable = false}, SHIFT(784), - [1561] = {.count = 1, .reusable = true}, SHIFT(784), - [1563] = {.count = 1, .reusable = true}, SHIFT(783), - [1565] = {.count = 1, .reusable = true}, SHIFT(785), - [1567] = {.count = 1, .reusable = true}, SHIFT(786), - [1569] = {.count = 1, .reusable = false}, SHIFT(787), - [1571] = {.count = 1, .reusable = false}, SHIFT(786), - [1573] = {.count = 1, .reusable = true}, SHIFT(789), - [1575] = {.count = 1, .reusable = false}, SHIFT(791), - [1577] = {.count = 1, .reusable = true}, SHIFT(791), - [1579] = {.count = 1, .reusable = true}, SHIFT(790), - [1581] = {.count = 1, .reusable = true}, SHIFT(792), - [1583] = {.count = 1, .reusable = false}, SHIFT(794), - [1585] = {.count = 1, .reusable = true}, SHIFT(794), - [1587] = {.count = 1, .reusable = true}, SHIFT(793), - [1589] = {.count = 1, .reusable = true}, SHIFT(795), - [1591] = {.count = 1, .reusable = true}, SHIFT(796), - [1593] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(94), - [1596] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1598] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), - [1601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), - [1604] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), - [1607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), - [1610] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), - [1613] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), - [1616] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), - [1619] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), - [1622] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), - [1625] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1627] = {.count = 1, .reusable = true}, SHIFT(797), - [1629] = {.count = 1, .reusable = true}, SHIFT(111), - [1631] = {.count = 1, .reusable = true}, SHIFT(112), - [1633] = {.count = 1, .reusable = true}, SHIFT(113), - [1635] = {.count = 1, .reusable = true}, SHIFT(114), - [1637] = {.count = 1, .reusable = false}, SHIFT(799), - [1639] = {.count = 1, .reusable = false}, SHIFT(800), - [1641] = {.count = 1, .reusable = true}, SHIFT(801), - [1643] = {.count = 1, .reusable = true}, SHIFT(802), - [1645] = {.count = 1, .reusable = false}, SHIFT(804), - [1647] = {.count = 1, .reusable = true}, SHIFT(804), - [1649] = {.count = 1, .reusable = true}, SHIFT(803), - [1651] = {.count = 1, .reusable = true}, SHIFT(805), - [1653] = {.count = 1, .reusable = true}, SHIFT(806), - [1655] = {.count = 1, .reusable = false}, SHIFT(807), - [1657] = {.count = 1, .reusable = false}, SHIFT(806), - [1659] = {.count = 1, .reusable = true}, SHIFT(809), - [1661] = {.count = 1, .reusable = false}, SHIFT(811), - [1663] = {.count = 1, .reusable = true}, SHIFT(811), - [1665] = {.count = 1, .reusable = true}, SHIFT(810), - [1667] = {.count = 1, .reusable = true}, SHIFT(812), - [1669] = {.count = 1, .reusable = false}, SHIFT(814), - [1671] = {.count = 1, .reusable = true}, SHIFT(814), - [1673] = {.count = 1, .reusable = true}, SHIFT(813), - [1675] = {.count = 1, .reusable = true}, SHIFT(815), - [1677] = {.count = 1, .reusable = true}, SHIFT(816), - [1679] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1681] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), - [1684] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), - [1687] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), - [1690] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [1693] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), - [1696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), - [1699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), - [1702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), - [1705] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), - [1708] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1710] = {.count = 1, .reusable = true}, SHIFT(817), - [1712] = {.count = 1, .reusable = false}, SHIFT(819), - [1714] = {.count = 1, .reusable = false}, SHIFT(820), - [1716] = {.count = 1, .reusable = true}, SHIFT(821), - [1718] = {.count = 1, .reusable = true}, SHIFT(822), - [1720] = {.count = 1, .reusable = false}, SHIFT(824), - [1722] = {.count = 1, .reusable = true}, SHIFT(824), - [1724] = {.count = 1, .reusable = true}, SHIFT(823), - [1726] = {.count = 1, .reusable = true}, SHIFT(825), - [1728] = {.count = 1, .reusable = true}, SHIFT(826), - [1730] = {.count = 1, .reusable = false}, SHIFT(827), - [1732] = {.count = 1, .reusable = false}, SHIFT(826), - [1734] = {.count = 1, .reusable = true}, SHIFT(829), - [1736] = {.count = 1, .reusable = false}, SHIFT(831), - [1738] = {.count = 1, .reusable = true}, SHIFT(831), - [1740] = {.count = 1, .reusable = true}, SHIFT(830), - [1742] = {.count = 1, .reusable = true}, SHIFT(832), - [1744] = {.count = 1, .reusable = false}, SHIFT(834), - [1746] = {.count = 1, .reusable = true}, SHIFT(834), - [1748] = {.count = 1, .reusable = true}, SHIFT(833), - [1750] = {.count = 1, .reusable = true}, SHIFT(835), - [1752] = {.count = 1, .reusable = true}, SHIFT(836), - [1754] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1756] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1758] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(126), - [1761] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [1763] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [1765] = {.count = 1, .reusable = true}, SHIFT(837), - [1767] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [1769] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), - [1771] = {.count = 1, .reusable = true}, SHIFT(838), - [1773] = {.count = 1, .reusable = true}, SHIFT(839), - [1775] = {.count = 1, .reusable = false}, SHIFT(841), - [1777] = {.count = 1, .reusable = true}, SHIFT(841), - [1779] = {.count = 1, .reusable = true}, SHIFT(840), - [1781] = {.count = 1, .reusable = true}, SHIFT(842), - [1783] = {.count = 1, .reusable = true}, SHIFT(843), - [1785] = {.count = 1, .reusable = false}, SHIFT(844), - [1787] = {.count = 1, .reusable = false}, SHIFT(843), - [1789] = {.count = 1, .reusable = true}, SHIFT(846), - [1791] = {.count = 1, .reusable = false}, SHIFT(848), - [1793] = {.count = 1, .reusable = true}, SHIFT(848), - [1795] = {.count = 1, .reusable = true}, SHIFT(847), - [1797] = {.count = 1, .reusable = true}, SHIFT(849), - [1799] = {.count = 1, .reusable = false}, SHIFT(851), - [1801] = {.count = 1, .reusable = true}, SHIFT(851), - [1803] = {.count = 1, .reusable = true}, SHIFT(850), - [1805] = {.count = 1, .reusable = true}, SHIFT(852), - [1807] = {.count = 1, .reusable = false}, SHIFT(853), - [1809] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(854), - [1812] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(130), - [1815] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(131), - [1818] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(132), - [1821] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), - [1824] = {.count = 1, .reusable = true}, SHIFT(855), - [1826] = {.count = 1, .reusable = true}, SHIFT(856), - [1828] = {.count = 1, .reusable = true}, SHIFT(858), - [1830] = {.count = 1, .reusable = false}, SHIFT(859), - [1832] = {.count = 1, .reusable = true}, SHIFT(860), - [1834] = {.count = 1, .reusable = false}, SHIFT(861), - [1836] = {.count = 1, .reusable = true}, SHIFT(862), - [1838] = {.count = 1, .reusable = true}, SHIFT(863), - [1840] = {.count = 1, .reusable = true}, SHIFT(864), - [1842] = {.count = 1, .reusable = true}, SHIFT(865), - [1844] = {.count = 1, .reusable = true}, SHIFT(866), - [1846] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1848] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1850] = {.count = 1, .reusable = true}, SHIFT(868), - [1852] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1854] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1856] = {.count = 1, .reusable = false}, SHIFT(870), - [1858] = {.count = 1, .reusable = false}, SHIFT(871), - [1860] = {.count = 1, .reusable = true}, SHIFT(873), - [1862] = {.count = 1, .reusable = true}, SHIFT(874), - [1864] = {.count = 1, .reusable = false}, SHIFT(875), - [1866] = {.count = 1, .reusable = false}, SHIFT(873), - [1868] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1870] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1872] = {.count = 1, .reusable = true}, SHIFT(876), - [1874] = {.count = 1, .reusable = true}, SHIFT(877), - [1876] = {.count = 1, .reusable = true}, SHIFT(878), - [1878] = {.count = 1, .reusable = false}, SHIFT(879), - [1880] = {.count = 1, .reusable = false}, SHIFT(877), - [1882] = {.count = 1, .reusable = true}, SHIFT(881), - [1884] = {.count = 1, .reusable = true}, SHIFT(888), - [1886] = {.count = 1, .reusable = false}, SHIFT(889), - [1888] = {.count = 1, .reusable = true}, SHIFT(889), - [1890] = {.count = 1, .reusable = true}, SHIFT(890), - [1892] = {.count = 1, .reusable = true}, SHIFT(891), - [1894] = {.count = 1, .reusable = false}, SHIFT(893), - [1896] = {.count = 1, .reusable = true}, SHIFT(893), - [1898] = {.count = 1, .reusable = true}, SHIFT(892), - [1900] = {.count = 1, .reusable = true}, SHIFT(894), - [1902] = {.count = 1, .reusable = false}, SHIFT(896), - [1904] = {.count = 1, .reusable = true}, SHIFT(896), - [1906] = {.count = 1, .reusable = true}, SHIFT(895), - [1908] = {.count = 1, .reusable = false}, SHIFT(898), - [1910] = {.count = 1, .reusable = true}, SHIFT(898), - [1912] = {.count = 1, .reusable = true}, SHIFT(897), - [1914] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [1916] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [1918] = {.count = 1, .reusable = true}, SHIFT(899), - [1920] = {.count = 1, .reusable = true}, SHIFT(900), - [1922] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [1924] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [1926] = {.count = 1, .reusable = true}, SHIFT(901), - [1928] = {.count = 1, .reusable = true}, SHIFT(902), - [1930] = {.count = 1, .reusable = true}, SHIFT(903), - [1932] = {.count = 1, .reusable = false}, SHIFT(904), - [1934] = {.count = 1, .reusable = true}, SHIFT(904), - [1936] = {.count = 1, .reusable = false}, SHIFT(906), - [1938] = {.count = 1, .reusable = false}, SHIFT(907), - [1940] = {.count = 1, .reusable = true}, SHIFT(907), - [1942] = {.count = 1, .reusable = true}, SHIFT(908), - [1944] = {.count = 1, .reusable = true}, SHIFT(910), - [1946] = {.count = 1, .reusable = false}, SHIFT(911), - [1948] = {.count = 1, .reusable = false}, SHIFT(912), - [1950] = {.count = 1, .reusable = true}, SHIFT(912), - [1952] = {.count = 1, .reusable = false}, SHIFT(913), - [1954] = {.count = 1, .reusable = false}, SHIFT(914), - [1956] = {.count = 1, .reusable = true}, SHIFT(914), - [1958] = {.count = 1, .reusable = true}, SHIFT(915), - [1960] = {.count = 1, .reusable = true}, SHIFT(916), - [1962] = {.count = 1, .reusable = false}, SHIFT(918), - [1964] = {.count = 1, .reusable = false}, SHIFT(919), - [1966] = {.count = 1, .reusable = true}, SHIFT(919), - [1968] = {.count = 1, .reusable = true}, SHIFT(922), - [1970] = {.count = 1, .reusable = true}, SHIFT(923), - [1972] = {.count = 1, .reusable = true}, SHIFT(924), - [1974] = {.count = 1, .reusable = false}, SHIFT(926), - [1976] = {.count = 1, .reusable = false}, SHIFT(927), - [1978] = {.count = 1, .reusable = true}, SHIFT(929), - [1980] = {.count = 1, .reusable = true}, SHIFT(930), - [1982] = {.count = 1, .reusable = false}, SHIFT(931), - [1984] = {.count = 1, .reusable = false}, SHIFT(929), - [1986] = {.count = 1, .reusable = true}, SHIFT(932), - [1988] = {.count = 1, .reusable = true}, SHIFT(933), - [1990] = {.count = 1, .reusable = true}, SHIFT(934), - [1992] = {.count = 1, .reusable = false}, SHIFT(935), - [1994] = {.count = 1, .reusable = false}, SHIFT(933), - [1996] = {.count = 1, .reusable = true}, SHIFT(944), - [1998] = {.count = 1, .reusable = false}, SHIFT(946), - [2000] = {.count = 1, .reusable = false}, SHIFT(947), - [2002] = {.count = 1, .reusable = true}, SHIFT(949), - [2004] = {.count = 1, .reusable = true}, SHIFT(950), - [2006] = {.count = 1, .reusable = false}, SHIFT(951), - [2008] = {.count = 1, .reusable = false}, SHIFT(949), - [2010] = {.count = 1, .reusable = true}, SHIFT(952), - [2012] = {.count = 1, .reusable = true}, SHIFT(953), - [2014] = {.count = 1, .reusable = true}, SHIFT(954), - [2016] = {.count = 1, .reusable = false}, SHIFT(955), - [2018] = {.count = 1, .reusable = false}, SHIFT(953), - [2020] = {.count = 1, .reusable = true}, SHIFT(964), - [2022] = {.count = 1, .reusable = false}, SHIFT(966), - [2024] = {.count = 1, .reusable = false}, SHIFT(967), - [2026] = {.count = 1, .reusable = true}, SHIFT(968), - [2028] = {.count = 1, .reusable = true}, SHIFT(969), - [2030] = {.count = 1, .reusable = false}, SHIFT(971), - [2032] = {.count = 1, .reusable = true}, SHIFT(971), - [2034] = {.count = 1, .reusable = true}, SHIFT(970), - [2036] = {.count = 1, .reusable = true}, SHIFT(972), - [2038] = {.count = 1, .reusable = true}, SHIFT(973), - [2040] = {.count = 1, .reusable = false}, SHIFT(974), - [2042] = {.count = 1, .reusable = false}, SHIFT(973), - [2044] = {.count = 1, .reusable = true}, SHIFT(976), - [2046] = {.count = 1, .reusable = false}, SHIFT(978), - [2048] = {.count = 1, .reusable = true}, SHIFT(978), - [2050] = {.count = 1, .reusable = true}, SHIFT(977), - [2052] = {.count = 1, .reusable = true}, SHIFT(979), - [2054] = {.count = 1, .reusable = false}, SHIFT(981), - [2056] = {.count = 1, .reusable = true}, SHIFT(981), - [2058] = {.count = 1, .reusable = true}, SHIFT(980), - [2060] = {.count = 1, .reusable = true}, SHIFT(982), - [2062] = {.count = 1, .reusable = true}, SHIFT(983), - [2064] = {.count = 1, .reusable = true}, SHIFT(984), - [2066] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [2068] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [2070] = {.count = 1, .reusable = true}, SHIFT(990), - [2072] = {.count = 1, .reusable = true}, SHIFT(989), - [2074] = {.count = 1, .reusable = false}, SHIFT(991), - [2076] = {.count = 1, .reusable = true}, SHIFT(991), - [2078] = {.count = 1, .reusable = false}, SHIFT(992), - [2080] = {.count = 1, .reusable = false}, SHIFT(156), - [2082] = {.count = 1, .reusable = false}, SHIFT(993), - [2084] = {.count = 1, .reusable = false}, SHIFT(159), - [2086] = {.count = 1, .reusable = false}, SHIFT(160), - [2088] = {.count = 1, .reusable = false}, SHIFT(161), - [2090] = {.count = 1, .reusable = false}, SHIFT(162), - [2092] = {.count = 1, .reusable = false}, SHIFT(994), - [2094] = {.count = 1, .reusable = true}, SHIFT(995), - [2096] = {.count = 1, .reusable = true}, SHIFT(996), - [2098] = {.count = 1, .reusable = true}, SHIFT(998), - [2100] = {.count = 1, .reusable = true}, SHIFT(999), - [2102] = {.count = 1, .reusable = true}, SHIFT(1000), - [2104] = {.count = 1, .reusable = true}, SHIFT(1007), - [2106] = {.count = 1, .reusable = true}, SHIFT(1008), - [2108] = {.count = 1, .reusable = true}, SHIFT(1010), - [2110] = {.count = 1, .reusable = true}, SHIFT(1012), - [2112] = {.count = 1, .reusable = true}, SHIFT(1013), - [2114] = {.count = 1, .reusable = true}, SHIFT(1019), - [2116] = {.count = 1, .reusable = false}, SHIFT(1023), - [2118] = {.count = 1, .reusable = true}, SHIFT(1023), - [2120] = {.count = 1, .reusable = false}, SHIFT(1024), - [2122] = {.count = 1, .reusable = false}, SHIFT(1025), - [2124] = {.count = 1, .reusable = true}, SHIFT(1026), - [2126] = {.count = 1, .reusable = true}, SHIFT(1027), - [2128] = {.count = 1, .reusable = true}, SHIFT(1028), - [2130] = {.count = 1, .reusable = true}, SHIFT(1029), - [2132] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [2134] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [2136] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [2138] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [2140] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [2142] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [2144] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [2146] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [2148] = {.count = 1, .reusable = true}, SHIFT(1035), - [2150] = {.count = 1, .reusable = false}, SHIFT(1036), - [2152] = {.count = 1, .reusable = false}, SHIFT(1035), - [2154] = {.count = 1, .reusable = true}, SHIFT(1037), - [2156] = {.count = 1, .reusable = true}, SHIFT(1038), - [2158] = {.count = 1, .reusable = true}, SHIFT(1039), - [2160] = {.count = 1, .reusable = false}, SHIFT(1040), - [2162] = {.count = 1, .reusable = false}, SHIFT(1038), - [2164] = {.count = 1, .reusable = true}, SHIFT(1043), - [2166] = {.count = 1, .reusable = true}, SHIFT(1042), - [2168] = {.count = 1, .reusable = true}, SHIFT(1044), - [2170] = {.count = 1, .reusable = true}, SHIFT(1045), - [2172] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [2174] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [2176] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [2178] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [2180] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [2182] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [2184] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2186] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2188] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [2190] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [2192] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [2194] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [2196] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2198] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(194), - [2201] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(196), - [2206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(197), - [2209] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(198), - [2212] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(195), - [2215] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(199), - [2218] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), - [2221] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), - [2224] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(200), - [2227] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), - [2230] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [2233] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [2236] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), - [2239] = {.count = 1, .reusable = true}, SHIFT(1050), - [2241] = {.count = 1, .reusable = false}, SHIFT(723), - [2243] = {.count = 1, .reusable = true}, SHIFT(1051), - [2245] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [2247] = {.count = 1, .reusable = true}, SHIFT(1053), - [2249] = {.count = 1, .reusable = true}, SHIFT(1054), - [2251] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [2253] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [2255] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [2257] = {.count = 1, .reusable = true}, SHIFT(1055), - [2259] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2261] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2263] = {.count = 1, .reusable = false}, SHIFT(1057), - [2265] = {.count = 1, .reusable = false}, SHIFT(1058), - [2267] = {.count = 1, .reusable = true}, SHIFT(1060), - [2269] = {.count = 1, .reusable = true}, SHIFT(1061), - [2271] = {.count = 1, .reusable = false}, SHIFT(1062), - [2273] = {.count = 1, .reusable = false}, SHIFT(1060), - [2275] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2277] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2279] = {.count = 1, .reusable = true}, SHIFT(1063), - [2281] = {.count = 1, .reusable = true}, SHIFT(1064), - [2283] = {.count = 1, .reusable = true}, SHIFT(1065), - [2285] = {.count = 1, .reusable = false}, SHIFT(1066), - [2287] = {.count = 1, .reusable = false}, SHIFT(1064), - [2289] = {.count = 1, .reusable = true}, SHIFT(1074), - [2291] = {.count = 1, .reusable = true}, SHIFT(1076), - [2293] = {.count = 1, .reusable = false}, SHIFT(1078), - [2295] = {.count = 1, .reusable = false}, SHIFT(1079), - [2297] = {.count = 1, .reusable = true}, SHIFT(1080), - [2299] = {.count = 1, .reusable = true}, SHIFT(1081), - [2301] = {.count = 1, .reusable = false}, SHIFT(1083), - [2303] = {.count = 1, .reusable = true}, SHIFT(1083), - [2305] = {.count = 1, .reusable = true}, SHIFT(1082), - [2307] = {.count = 1, .reusable = true}, SHIFT(1084), - [2309] = {.count = 1, .reusable = true}, SHIFT(1085), - [2311] = {.count = 1, .reusable = false}, SHIFT(1086), - [2313] = {.count = 1, .reusable = false}, SHIFT(1085), - [2315] = {.count = 1, .reusable = true}, SHIFT(1088), - [2317] = {.count = 1, .reusable = false}, SHIFT(1090), - [2319] = {.count = 1, .reusable = true}, SHIFT(1090), - [2321] = {.count = 1, .reusable = true}, SHIFT(1089), - [2323] = {.count = 1, .reusable = true}, SHIFT(1091), - [2325] = {.count = 1, .reusable = false}, SHIFT(1093), - [2327] = {.count = 1, .reusable = true}, SHIFT(1093), - [2329] = {.count = 1, .reusable = true}, SHIFT(1092), - [2331] = {.count = 1, .reusable = true}, SHIFT(1094), - [2333] = {.count = 1, .reusable = true}, SHIFT(1095), - [2335] = {.count = 1, .reusable = true}, SHIFT(1096), - [2337] = {.count = 1, .reusable = true}, SHIFT(1097), - [2339] = {.count = 1, .reusable = false}, SHIFT(1098), - [2341] = {.count = 1, .reusable = true}, SHIFT(1099), - [2343] = {.count = 1, .reusable = true}, SHIFT(1100), - [2345] = {.count = 1, .reusable = false}, SHIFT(1101), - [2347] = {.count = 1, .reusable = true}, SHIFT(1102), - [2349] = {.count = 1, .reusable = true}, SHIFT(1103), - [2351] = {.count = 1, .reusable = true}, SHIFT(1104), - [2353] = {.count = 1, .reusable = true}, SHIFT(1105), - [2355] = {.count = 1, .reusable = true}, SHIFT(1106), - [2357] = {.count = 1, .reusable = false}, SHIFT(1102), - [2359] = {.count = 1, .reusable = true}, SHIFT(1098), - [2361] = {.count = 1, .reusable = false}, SHIFT(1108), - [2363] = {.count = 1, .reusable = true}, SHIFT(1108), - [2365] = {.count = 1, .reusable = true}, SHIFT(1109), - [2367] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), - [2369] = {.count = 1, .reusable = true}, SHIFT(1110), - [2371] = {.count = 1, .reusable = false}, SHIFT(1112), - [2373] = {.count = 1, .reusable = false}, SHIFT(1113), - [2375] = {.count = 1, .reusable = true}, SHIFT(1114), - [2377] = {.count = 1, .reusable = true}, SHIFT(1115), - [2379] = {.count = 1, .reusable = false}, SHIFT(1117), - [2381] = {.count = 1, .reusable = true}, SHIFT(1117), - [2383] = {.count = 1, .reusable = true}, SHIFT(1116), - [2385] = {.count = 1, .reusable = true}, SHIFT(1118), - [2387] = {.count = 1, .reusable = true}, SHIFT(1119), - [2389] = {.count = 1, .reusable = false}, SHIFT(1120), - [2391] = {.count = 1, .reusable = false}, SHIFT(1119), - [2393] = {.count = 1, .reusable = true}, SHIFT(1122), - [2395] = {.count = 1, .reusable = false}, SHIFT(1124), - [2397] = {.count = 1, .reusable = true}, SHIFT(1124), - [2399] = {.count = 1, .reusable = true}, SHIFT(1123), - [2401] = {.count = 1, .reusable = true}, SHIFT(1125), - [2403] = {.count = 1, .reusable = false}, SHIFT(1127), - [2405] = {.count = 1, .reusable = true}, SHIFT(1127), - [2407] = {.count = 1, .reusable = true}, SHIFT(1126), - [2409] = {.count = 1, .reusable = true}, SHIFT(1128), - [2411] = {.count = 1, .reusable = true}, SHIFT(1129), - [2413] = {.count = 1, .reusable = false}, SHIFT(1132), - [2415] = {.count = 1, .reusable = false}, SHIFT(1134), - [2417] = {.count = 1, .reusable = false}, SHIFT(639), - [2419] = {.count = 1, .reusable = false}, SHIFT(43), - [2421] = {.count = 1, .reusable = false}, SHIFT(640), - [2423] = {.count = 1, .reusable = false}, SHIFT(46), - [2425] = {.count = 1, .reusable = false}, SHIFT(47), - [2427] = {.count = 1, .reusable = false}, SHIFT(48), - [2429] = {.count = 1, .reusable = false}, SHIFT(49), - [2431] = {.count = 1, .reusable = true}, SHIFT(1134), - [2433] = {.count = 1, .reusable = false}, SHIFT(1136), - [2435] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), - [2437] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), - [2439] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [2441] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [2443] = {.count = 1, .reusable = false}, SHIFT(1138), - [2445] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), - [2447] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), - [2449] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), - [2451] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), - [2453] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [2455] = {.count = 1, .reusable = true}, SHIFT(1143), - [2457] = {.count = 1, .reusable = false}, SHIFT(1143), - [2459] = {.count = 1, .reusable = true}, SHIFT(649), - [2461] = {.count = 1, .reusable = true}, SHIFT(650), - [2463] = {.count = 1, .reusable = false}, SHIFT(1148), - [2465] = {.count = 1, .reusable = true}, SHIFT(1149), - [2467] = {.count = 1, .reusable = true}, SHIFT(1150), - [2469] = {.count = 1, .reusable = false}, SHIFT(1150), - [2471] = {.count = 1, .reusable = false}, SHIFT(1155), - [2473] = {.count = 1, .reusable = true}, SHIFT(1155), - [2475] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(242), - [2478] = {.count = 1, .reusable = false}, SHIFT(1156), - [2480] = {.count = 1, .reusable = false}, SHIFT(1157), - [2482] = {.count = 1, .reusable = false}, SHIFT(1160), - [2484] = {.count = 1, .reusable = true}, SHIFT(1160), - [2486] = {.count = 1, .reusable = true}, SHIFT(1161), - [2488] = {.count = 1, .reusable = false}, SHIFT(1162), - [2490] = {.count = 1, .reusable = true}, SHIFT(1163), - [2492] = {.count = 1, .reusable = true}, SHIFT(1165), - [2494] = {.count = 1, .reusable = true}, SHIFT(1166), - [2496] = {.count = 1, .reusable = true}, SHIFT(1167), - [2498] = {.count = 1, .reusable = true}, SHIFT(1168), - [2500] = {.count = 1, .reusable = false}, SHIFT(1170), - [2502] = {.count = 1, .reusable = true}, SHIFT(1170), - [2504] = {.count = 1, .reusable = true}, SHIFT(1169), - [2506] = {.count = 1, .reusable = true}, SHIFT(1171), - [2508] = {.count = 1, .reusable = false}, SHIFT(1173), - [2510] = {.count = 1, .reusable = true}, SHIFT(1173), - [2512] = {.count = 1, .reusable = true}, SHIFT(1172), - [2514] = {.count = 1, .reusable = false}, SHIFT(1175), - [2516] = {.count = 1, .reusable = true}, SHIFT(1175), - [2518] = {.count = 1, .reusable = true}, SHIFT(1174), - [2520] = {.count = 1, .reusable = true}, SHIFT(1176), - [2522] = {.count = 1, .reusable = true}, SHIFT(1177), - [2524] = {.count = 1, .reusable = true}, SHIFT(1178), - [2526] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [2528] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [2530] = {.count = 1, .reusable = false}, SHIFT(1180), - [2532] = {.count = 1, .reusable = true}, SHIFT(1180), - [2534] = {.count = 1, .reusable = true}, SHIFT(1181), - [2536] = {.count = 1, .reusable = false}, SHIFT(1183), - [2538] = {.count = 1, .reusable = true}, SHIFT(1183), - [2540] = {.count = 1, .reusable = true}, SHIFT(1184), - [2542] = {.count = 1, .reusable = true}, SHIFT(1185), - [2544] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [2546] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [2548] = {.count = 1, .reusable = true}, SHIFT(1189), - [2550] = {.count = 1, .reusable = true}, SHIFT(1190), - [2552] = {.count = 1, .reusable = false}, SHIFT(1191), - [2554] = {.count = 1, .reusable = true}, SHIFT(1192), - [2556] = {.count = 1, .reusable = false}, SHIFT(1193), - [2558] = {.count = 1, .reusable = false}, SHIFT(1194), - [2560] = {.count = 1, .reusable = true}, SHIFT(1196), - [2562] = {.count = 1, .reusable = true}, SHIFT(1197), - [2564] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(273), - [2567] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), - [2570] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), - [2573] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(278), - [2576] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(279), - [2579] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), - [2581] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), - [2583] = {.count = 1, .reusable = true}, SHIFT(1201), - [2585] = {.count = 1, .reusable = true}, SHIFT(1202), - [2587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(287), - [2590] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(289), - [2593] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(290), - [2596] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(288), - [2599] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(291), - [2602] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(292), - [2605] = {.count = 1, .reusable = true}, SHIFT(1204), - [2607] = {.count = 1, .reusable = true}, SHIFT(1206), - [2609] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2611] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2613] = {.count = 1, .reusable = false}, SHIFT(301), - [2615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(305), - [2618] = {.count = 1, .reusable = false}, SHIFT(1209), - [2620] = {.count = 1, .reusable = true}, SHIFT(1210), - [2622] = {.count = 1, .reusable = false}, SHIFT(1211), - [2624] = {.count = 1, .reusable = true}, SHIFT(1212), - [2626] = {.count = 1, .reusable = true}, SHIFT(1214), - [2628] = {.count = 1, .reusable = true}, SHIFT(1215), - [2630] = {.count = 1, .reusable = true}, SHIFT(1216), - [2632] = {.count = 1, .reusable = true}, SHIFT(1217), - [2634] = {.count = 1, .reusable = false}, SHIFT(1219), - [2636] = {.count = 1, .reusable = true}, SHIFT(1219), - [2638] = {.count = 1, .reusable = true}, SHIFT(1218), - [2640] = {.count = 1, .reusable = true}, SHIFT(1220), - [2642] = {.count = 1, .reusable = false}, SHIFT(1222), - [2644] = {.count = 1, .reusable = true}, SHIFT(1222), - [2646] = {.count = 1, .reusable = true}, SHIFT(1221), - [2648] = {.count = 1, .reusable = false}, SHIFT(1224), - [2650] = {.count = 1, .reusable = true}, SHIFT(1224), - [2652] = {.count = 1, .reusable = true}, SHIFT(1223), - [2654] = {.count = 1, .reusable = true}, SHIFT(1225), - [2656] = {.count = 1, .reusable = true}, SHIFT(1226), - [2658] = {.count = 1, .reusable = true}, SHIFT(1227), - [2660] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [2662] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [2664] = {.count = 1, .reusable = false}, SHIFT(1228), - [2666] = {.count = 1, .reusable = true}, SHIFT(1228), - [2668] = {.count = 1, .reusable = true}, SHIFT(1229), - [2670] = {.count = 1, .reusable = true}, SHIFT(1230), - [2672] = {.count = 1, .reusable = false}, SHIFT(1231), - [2674] = {.count = 1, .reusable = true}, SHIFT(1232), - [2676] = {.count = 1, .reusable = true}, SHIFT(1233), - [2678] = {.count = 1, .reusable = true}, SHIFT(1234), - [2680] = {.count = 1, .reusable = true}, SHIFT(1235), - [2682] = {.count = 1, .reusable = true}, SHIFT(1236), - [2684] = {.count = 1, .reusable = true}, SHIFT(1238), - [2686] = {.count = 1, .reusable = true}, SHIFT(1239), - [2688] = {.count = 1, .reusable = true}, SHIFT(1240), - [2690] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), - [2692] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), - [2694] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(329), - [2697] = {.count = 1, .reusable = false}, SHIFT(1243), - [2699] = {.count = 1, .reusable = true}, SHIFT(1244), - [2701] = {.count = 1, .reusable = false}, SHIFT(1245), - [2703] = {.count = 1, .reusable = true}, SHIFT(1246), - [2705] = {.count = 1, .reusable = true}, SHIFT(1248), - [2707] = {.count = 1, .reusable = true}, SHIFT(1249), - [2709] = {.count = 1, .reusable = true}, SHIFT(1250), - [2711] = {.count = 1, .reusable = true}, SHIFT(1251), - [2713] = {.count = 1, .reusable = false}, SHIFT(1253), - [2715] = {.count = 1, .reusable = true}, SHIFT(1253), - [2717] = {.count = 1, .reusable = true}, SHIFT(1252), - [2719] = {.count = 1, .reusable = true}, SHIFT(1254), - [2721] = {.count = 1, .reusable = false}, SHIFT(1256), - [2723] = {.count = 1, .reusable = true}, SHIFT(1256), - [2725] = {.count = 1, .reusable = true}, SHIFT(1255), - [2727] = {.count = 1, .reusable = false}, SHIFT(1258), - [2729] = {.count = 1, .reusable = true}, SHIFT(1258), - [2731] = {.count = 1, .reusable = true}, SHIFT(1257), - [2733] = {.count = 1, .reusable = true}, SHIFT(1259), - [2735] = {.count = 1, .reusable = true}, SHIFT(1260), - [2737] = {.count = 1, .reusable = true}, SHIFT(1261), - [2739] = {.count = 1, .reusable = true}, SHIFT(1262), - [2741] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(351), - [2744] = {.count = 1, .reusable = false}, SHIFT(1264), - [2746] = {.count = 1, .reusable = true}, SHIFT(1265), - [2748] = {.count = 1, .reusable = false}, SHIFT(1266), - [2750] = {.count = 1, .reusable = true}, SHIFT(1267), - [2752] = {.count = 1, .reusable = true}, SHIFT(1269), - [2754] = {.count = 1, .reusable = true}, SHIFT(1270), - [2756] = {.count = 1, .reusable = true}, SHIFT(1271), - [2758] = {.count = 1, .reusable = true}, SHIFT(1272), - [2760] = {.count = 1, .reusable = false}, SHIFT(1274), - [2762] = {.count = 1, .reusable = true}, SHIFT(1274), - [2764] = {.count = 1, .reusable = true}, SHIFT(1273), - [2766] = {.count = 1, .reusable = true}, SHIFT(1275), - [2768] = {.count = 1, .reusable = false}, SHIFT(1277), - [2770] = {.count = 1, .reusable = true}, SHIFT(1277), - [2772] = {.count = 1, .reusable = true}, SHIFT(1276), - [2774] = {.count = 1, .reusable = false}, SHIFT(1279), - [2776] = {.count = 1, .reusable = true}, SHIFT(1279), - [2778] = {.count = 1, .reusable = true}, SHIFT(1278), - [2780] = {.count = 1, .reusable = true}, SHIFT(1280), - [2782] = {.count = 1, .reusable = true}, SHIFT(1281), - [2784] = {.count = 1, .reusable = true}, SHIFT(1282), - [2786] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(371), - [2789] = {.count = 1, .reusable = false}, SHIFT(1283), - [2791] = {.count = 1, .reusable = true}, SHIFT(1284), - [2793] = {.count = 1, .reusable = false}, SHIFT(1285), - [2795] = {.count = 1, .reusable = true}, SHIFT(1286), - [2797] = {.count = 1, .reusable = true}, SHIFT(1288), - [2799] = {.count = 1, .reusable = true}, SHIFT(1289), - [2801] = {.count = 1, .reusable = true}, SHIFT(1290), - [2803] = {.count = 1, .reusable = true}, SHIFT(1291), - [2805] = {.count = 1, .reusable = false}, SHIFT(1293), - [2807] = {.count = 1, .reusable = true}, SHIFT(1293), - [2809] = {.count = 1, .reusable = true}, SHIFT(1292), - [2811] = {.count = 1, .reusable = true}, SHIFT(1294), - [2813] = {.count = 1, .reusable = false}, SHIFT(1296), - [2815] = {.count = 1, .reusable = true}, SHIFT(1296), - [2817] = {.count = 1, .reusable = true}, SHIFT(1295), - [2819] = {.count = 1, .reusable = false}, SHIFT(1298), - [2821] = {.count = 1, .reusable = true}, SHIFT(1298), - [2823] = {.count = 1, .reusable = true}, SHIFT(1297), - [2825] = {.count = 1, .reusable = true}, SHIFT(1299), - [2827] = {.count = 1, .reusable = true}, SHIFT(1300), - [2829] = {.count = 1, .reusable = true}, SHIFT(1301), - [2831] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(391), - [2834] = {.count = 1, .reusable = false}, SHIFT(1302), - [2836] = {.count = 1, .reusable = true}, SHIFT(1303), - [2838] = {.count = 1, .reusable = false}, SHIFT(1304), - [2840] = {.count = 1, .reusable = true}, SHIFT(1305), - [2842] = {.count = 1, .reusable = true}, SHIFT(1307), - [2844] = {.count = 1, .reusable = true}, SHIFT(1308), - [2846] = {.count = 1, .reusable = true}, SHIFT(1309), - [2848] = {.count = 1, .reusable = true}, SHIFT(1310), - [2850] = {.count = 1, .reusable = false}, SHIFT(1312), - [2852] = {.count = 1, .reusable = true}, SHIFT(1312), - [2854] = {.count = 1, .reusable = true}, SHIFT(1311), - [2856] = {.count = 1, .reusable = true}, SHIFT(1313), - [2858] = {.count = 1, .reusable = false}, SHIFT(1315), - [2860] = {.count = 1, .reusable = true}, SHIFT(1315), - [2862] = {.count = 1, .reusable = true}, SHIFT(1314), - [2864] = {.count = 1, .reusable = false}, SHIFT(1317), - [2866] = {.count = 1, .reusable = true}, SHIFT(1317), - [2868] = {.count = 1, .reusable = true}, SHIFT(1316), - [2870] = {.count = 1, .reusable = true}, SHIFT(1318), - [2872] = {.count = 1, .reusable = true}, SHIFT(1319), - [2874] = {.count = 1, .reusable = true}, SHIFT(1320), - [2876] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [2878] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), - [2880] = {.count = 1, .reusable = true}, SHIFT(1321), - [2882] = {.count = 1, .reusable = false}, SHIFT(1322), - [2884] = {.count = 1, .reusable = true}, SHIFT(1323), - [2886] = {.count = 1, .reusable = true}, SHIFT(1325), - [2888] = {.count = 1, .reusable = true}, SHIFT(1326), - [2890] = {.count = 1, .reusable = true}, SHIFT(1327), - [2892] = {.count = 1, .reusable = true}, SHIFT(1328), - [2894] = {.count = 1, .reusable = false}, SHIFT(1330), - [2896] = {.count = 1, .reusable = true}, SHIFT(1330), - [2898] = {.count = 1, .reusable = true}, SHIFT(1329), - [2900] = {.count = 1, .reusable = true}, SHIFT(1331), - [2902] = {.count = 1, .reusable = false}, SHIFT(1333), - [2904] = {.count = 1, .reusable = true}, SHIFT(1333), - [2906] = {.count = 1, .reusable = true}, SHIFT(1332), - [2908] = {.count = 1, .reusable = false}, SHIFT(1335), - [2910] = {.count = 1, .reusable = true}, SHIFT(1335), - [2912] = {.count = 1, .reusable = true}, SHIFT(1334), - [2914] = {.count = 1, .reusable = true}, SHIFT(1336), - [2916] = {.count = 1, .reusable = true}, SHIFT(1337), - [2918] = {.count = 1, .reusable = true}, SHIFT(1338), - [2920] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), - [2922] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), - [2924] = {.count = 1, .reusable = true}, SHIFT(1339), - [2926] = {.count = 1, .reusable = true}, SHIFT(1340), - [2928] = {.count = 1, .reusable = true}, SHIFT(1341), - [2930] = {.count = 1, .reusable = true}, SHIFT(1342), - [2932] = {.count = 1, .reusable = true}, SHIFT(1343), - [2934] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [2936] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [2938] = {.count = 1, .reusable = true}, SHIFT(1344), - [2940] = {.count = 1, .reusable = true}, SHIFT(1345), - [2942] = {.count = 1, .reusable = false}, SHIFT(1347), - [2944] = {.count = 1, .reusable = false}, SHIFT(1348), - [2946] = {.count = 1, .reusable = true}, SHIFT(1350), - [2948] = {.count = 1, .reusable = true}, SHIFT(1351), - [2950] = {.count = 1, .reusable = false}, SHIFT(1352), - [2952] = {.count = 1, .reusable = false}, SHIFT(1350), - [2954] = {.count = 1, .reusable = true}, SHIFT(1353), - [2956] = {.count = 1, .reusable = true}, SHIFT(1354), - [2958] = {.count = 1, .reusable = true}, SHIFT(1355), - [2960] = {.count = 1, .reusable = true}, SHIFT(1356), - [2962] = {.count = 1, .reusable = false}, SHIFT(1357), - [2964] = {.count = 1, .reusable = false}, SHIFT(1355), - [2966] = {.count = 1, .reusable = true}, SHIFT(1365), - [2968] = {.count = 1, .reusable = false}, SHIFT(1367), - [2970] = {.count = 1, .reusable = false}, SHIFT(1368), - [2972] = {.count = 1, .reusable = true}, SHIFT(1369), - [2974] = {.count = 1, .reusable = true}, SHIFT(1370), - [2976] = {.count = 1, .reusable = false}, SHIFT(1372), - [2978] = {.count = 1, .reusable = true}, SHIFT(1372), - [2980] = {.count = 1, .reusable = true}, SHIFT(1371), - [2982] = {.count = 1, .reusable = true}, SHIFT(1373), - [2984] = {.count = 1, .reusable = true}, SHIFT(1374), - [2986] = {.count = 1, .reusable = false}, SHIFT(1375), - [2988] = {.count = 1, .reusable = false}, SHIFT(1374), - [2990] = {.count = 1, .reusable = true}, SHIFT(1377), - [2992] = {.count = 1, .reusable = false}, SHIFT(1379), - [2994] = {.count = 1, .reusable = true}, SHIFT(1379), - [2996] = {.count = 1, .reusable = true}, SHIFT(1378), - [2998] = {.count = 1, .reusable = true}, SHIFT(1380), - [3000] = {.count = 1, .reusable = false}, SHIFT(1382), - [3002] = {.count = 1, .reusable = true}, SHIFT(1382), - [3004] = {.count = 1, .reusable = true}, SHIFT(1381), - [3006] = {.count = 1, .reusable = true}, SHIFT(1383), - [3008] = {.count = 1, .reusable = false}, SHIFT(1384), - [3010] = {.count = 1, .reusable = true}, SHIFT(1384), - [3012] = {.count = 1, .reusable = true}, SHIFT(1385), - [3014] = {.count = 1, .reusable = true}, SHIFT(1386), - [3016] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [3018] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [3020] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [3022] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(889), - [3025] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), - [3028] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(432), - [3031] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(433), - [3034] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(434), - [3037] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(889), - [3040] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(435), - [3043] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(437), - [3046] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(438), - [3049] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(439), - [3052] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(434), - [3055] = {.count = 1, .reusable = false}, SHIFT(1387), - [3057] = {.count = 1, .reusable = true}, SHIFT(1388), - [3059] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [3061] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [3063] = {.count = 1, .reusable = true}, SHIFT(1390), - [3065] = {.count = 1, .reusable = true}, SHIFT(1391), - [3067] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [3069] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [3071] = {.count = 1, .reusable = true}, SHIFT(1392), - [3073] = {.count = 1, .reusable = true}, SHIFT(1393), - [3075] = {.count = 1, .reusable = true}, SHIFT(1394), - [3077] = {.count = 1, .reusable = true}, SHIFT(1395), - [3079] = {.count = 1, .reusable = false}, SHIFT(1396), - [3081] = {.count = 1, .reusable = true}, SHIFT(1396), - [3083] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3085] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3087] = {.count = 1, .reusable = true}, SHIFT(1397), - [3089] = {.count = 1, .reusable = false}, SHIFT(1398), - [3091] = {.count = 1, .reusable = true}, SHIFT(1398), - [3093] = {.count = 1, .reusable = false}, SHIFT(1400), - [3095] = {.count = 1, .reusable = true}, SHIFT(1400), - [3097] = {.count = 1, .reusable = false}, SHIFT(1402), - [3099] = {.count = 1, .reusable = true}, SHIFT(1402), - [3101] = {.count = 1, .reusable = true}, SHIFT(1404), - [3103] = {.count = 1, .reusable = false}, SHIFT(1406), - [3105] = {.count = 1, .reusable = false}, SHIFT(1410), - [3107] = {.count = 1, .reusable = false}, SHIFT(1414), - [3109] = {.count = 1, .reusable = true}, SHIFT(1414), - [3111] = {.count = 1, .reusable = true}, SHIFT(1415), - [3113] = {.count = 1, .reusable = false}, SHIFT(1416), - [3115] = {.count = 1, .reusable = true}, SHIFT(1416), - [3117] = {.count = 1, .reusable = true}, SHIFT(1417), - [3119] = {.count = 1, .reusable = true}, SHIFT(1418), - [3121] = {.count = 1, .reusable = true}, SHIFT(1419), - [3123] = {.count = 1, .reusable = true}, SHIFT(1421), - [3125] = {.count = 1, .reusable = false}, SHIFT(1422), - [3127] = {.count = 1, .reusable = true}, SHIFT(1422), - [3129] = {.count = 1, .reusable = true}, SHIFT(1424), - [3131] = {.count = 1, .reusable = false}, SHIFT(1424), - [3133] = {.count = 1, .reusable = false}, SHIFT(1425), - [3135] = {.count = 1, .reusable = true}, SHIFT(1425), - [3137] = {.count = 1, .reusable = true}, SHIFT(1426), - [3139] = {.count = 1, .reusable = false}, SHIFT(1427), - [3141] = {.count = 1, .reusable = true}, SHIFT(1427), - [3143] = {.count = 1, .reusable = false}, SHIFT(1428), - [3145] = {.count = 1, .reusable = true}, SHIFT(1428), - [3147] = {.count = 1, .reusable = true}, SHIFT(1429), - [3149] = {.count = 1, .reusable = true}, SHIFT(1431), - [3151] = {.count = 1, .reusable = true}, SHIFT(1432), - [3153] = {.count = 1, .reusable = true}, SHIFT(1433), - [3155] = {.count = 1, .reusable = true}, SHIFT(1434), - [3157] = {.count = 1, .reusable = true}, SHIFT(1435), - [3159] = {.count = 1, .reusable = false}, SHIFT(1437), - [3161] = {.count = 1, .reusable = false}, SHIFT(1438), - [3163] = {.count = 1, .reusable = true}, SHIFT(1439), - [3165] = {.count = 1, .reusable = true}, SHIFT(1440), - [3167] = {.count = 1, .reusable = false}, SHIFT(1442), - [3169] = {.count = 1, .reusable = true}, SHIFT(1442), - [3171] = {.count = 1, .reusable = true}, SHIFT(1441), - [3173] = {.count = 1, .reusable = true}, SHIFT(1443), - [3175] = {.count = 1, .reusable = true}, SHIFT(1444), - [3177] = {.count = 1, .reusable = false}, SHIFT(1445), - [3179] = {.count = 1, .reusable = false}, SHIFT(1444), - [3181] = {.count = 1, .reusable = true}, SHIFT(1447), - [3183] = {.count = 1, .reusable = false}, SHIFT(1449), - [3185] = {.count = 1, .reusable = true}, SHIFT(1449), - [3187] = {.count = 1, .reusable = true}, SHIFT(1448), - [3189] = {.count = 1, .reusable = true}, SHIFT(1450), - [3191] = {.count = 1, .reusable = false}, SHIFT(1452), - [3193] = {.count = 1, .reusable = true}, SHIFT(1452), - [3195] = {.count = 1, .reusable = true}, SHIFT(1451), - [3197] = {.count = 1, .reusable = true}, SHIFT(1453), - [3199] = {.count = 1, .reusable = true}, SHIFT(1454), - [3201] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(466), - [3204] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(467), - [3207] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(468), - [3210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(469), - [3213] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(470), - [3216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(471), - [3219] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(472), - [3222] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(473), - [3225] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(474), - [3228] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(475), - [3231] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(470), - [3234] = {.count = 1, .reusable = true}, SHIFT(1455), - [3236] = {.count = 1, .reusable = false}, SHIFT(1457), - [3238] = {.count = 1, .reusable = false}, SHIFT(1458), - [3240] = {.count = 1, .reusable = true}, SHIFT(1459), - [3242] = {.count = 1, .reusable = true}, SHIFT(1460), - [3244] = {.count = 1, .reusable = false}, SHIFT(1462), - [3246] = {.count = 1, .reusable = true}, SHIFT(1462), - [3248] = {.count = 1, .reusable = true}, SHIFT(1461), - [3250] = {.count = 1, .reusable = true}, SHIFT(1463), - [3252] = {.count = 1, .reusable = true}, SHIFT(1464), - [3254] = {.count = 1, .reusable = false}, SHIFT(1465), - [3256] = {.count = 1, .reusable = false}, SHIFT(1464), - [3258] = {.count = 1, .reusable = true}, SHIFT(1467), - [3260] = {.count = 1, .reusable = false}, SHIFT(1469), - [3262] = {.count = 1, .reusable = true}, SHIFT(1469), - [3264] = {.count = 1, .reusable = true}, SHIFT(1468), - [3266] = {.count = 1, .reusable = true}, SHIFT(1470), - [3268] = {.count = 1, .reusable = false}, SHIFT(1472), - [3270] = {.count = 1, .reusable = true}, SHIFT(1472), - [3272] = {.count = 1, .reusable = true}, SHIFT(1471), - [3274] = {.count = 1, .reusable = true}, SHIFT(1473), - [3276] = {.count = 1, .reusable = true}, SHIFT(1474), - [3278] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(479), - [3281] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(480), - [3284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(481), - [3287] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(482), - [3290] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(483), - [3293] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(484), - [3296] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(485), - [3299] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(486), - [3302] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(487), - [3305] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(482), - [3308] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(489), - [3311] = {.count = 1, .reusable = false}, SHIFT(1475), - [3313] = {.count = 1, .reusable = true}, SHIFT(1476), - [3315] = {.count = 1, .reusable = false}, SHIFT(1477), - [3317] = {.count = 1, .reusable = true}, SHIFT(1478), - [3319] = {.count = 1, .reusable = true}, SHIFT(1480), - [3321] = {.count = 1, .reusable = true}, SHIFT(1481), - [3323] = {.count = 1, .reusable = true}, SHIFT(1482), - [3325] = {.count = 1, .reusable = true}, SHIFT(1483), - [3327] = {.count = 1, .reusable = false}, SHIFT(1485), - [3329] = {.count = 1, .reusable = true}, SHIFT(1485), - [3331] = {.count = 1, .reusable = true}, SHIFT(1484), - [3333] = {.count = 1, .reusable = true}, SHIFT(1486), - [3335] = {.count = 1, .reusable = false}, SHIFT(1488), - [3337] = {.count = 1, .reusable = true}, SHIFT(1488), - [3339] = {.count = 1, .reusable = true}, SHIFT(1487), - [3341] = {.count = 1, .reusable = false}, SHIFT(1490), - [3343] = {.count = 1, .reusable = true}, SHIFT(1490), - [3345] = {.count = 1, .reusable = true}, SHIFT(1489), - [3347] = {.count = 1, .reusable = true}, SHIFT(1491), - [3349] = {.count = 1, .reusable = true}, SHIFT(1492), - [3351] = {.count = 1, .reusable = true}, SHIFT(1493), - [3353] = {.count = 1, .reusable = true}, SHIFT(1495), - [3355] = {.count = 1, .reusable = true}, SHIFT(1496), - [3357] = {.count = 1, .reusable = true}, SHIFT(1497), - [3359] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(514), - [3362] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(516), - [3365] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(516), - [3368] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(517), - [3371] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(517), - [3374] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(518), - [3377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(515), - [3380] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(519), - [3383] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(156), - [3386] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(157), - [3389] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(520), - [3392] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), - [3395] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), - [3398] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(161), - [3401] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(162), - [3404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(520), - [3407] = {.count = 1, .reusable = true}, SHIFT(1504), - [3409] = {.count = 1, .reusable = true}, SHIFT(1505), - [3411] = {.count = 1, .reusable = false}, SHIFT(1506), - [3413] = {.count = 1, .reusable = true}, SHIFT(1506), - [3415] = {.count = 1, .reusable = true}, SHIFT(1507), - [3417] = {.count = 1, .reusable = false}, SHIFT(1508), - [3419] = {.count = 1, .reusable = true}, SHIFT(1508), - [3421] = {.count = 1, .reusable = true}, SHIFT(1509), - [3423] = {.count = 1, .reusable = true}, SHIFT(1511), - [3425] = {.count = 1, .reusable = true}, SHIFT(1512), - [3427] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(531), - [3430] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(532), - [3433] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(533), - [3436] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(533), - [3439] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(536), - [3442] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(537), - [3445] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(537), - [3448] = {.count = 1, .reusable = true}, SHIFT(1516), - [3450] = {.count = 1, .reusable = true}, SHIFT(1517), - [3452] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(543), - [3455] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(545), - [3458] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(545), - [3461] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(546), - [3464] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(544), - [3467] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(547), - [3470] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(548), - [3473] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(548), - [3476] = {.count = 1, .reusable = true}, SHIFT(1521), - [3478] = {.count = 1, .reusable = true}, SHIFT(1522), - [3480] = {.count = 1, .reusable = false}, SHIFT(1524), - [3482] = {.count = 1, .reusable = true}, SHIFT(1524), - [3484] = {.count = 1, .reusable = true}, SHIFT(1523), - [3486] = {.count = 1, .reusable = true}, SHIFT(1525), - [3488] = {.count = 1, .reusable = true}, SHIFT(1526), - [3490] = {.count = 1, .reusable = false}, SHIFT(1527), - [3492] = {.count = 1, .reusable = false}, SHIFT(1526), - [3494] = {.count = 1, .reusable = true}, SHIFT(1529), - [3496] = {.count = 1, .reusable = false}, SHIFT(1531), - [3498] = {.count = 1, .reusable = true}, SHIFT(1531), - [3500] = {.count = 1, .reusable = true}, SHIFT(1530), - [3502] = {.count = 1, .reusable = true}, SHIFT(1532), - [3504] = {.count = 1, .reusable = false}, SHIFT(1534), - [3506] = {.count = 1, .reusable = true}, SHIFT(1534), - [3508] = {.count = 1, .reusable = true}, SHIFT(1533), - [3510] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [3512] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [3514] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1043), - [3517] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [3519] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(559), - [3522] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(560), - [3525] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), - [3527] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), - [3529] = {.count = 1, .reusable = true}, SHIFT(1537), - [3531] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [3533] = {.count = 1, .reusable = true}, SHIFT(1538), - [3535] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [3537] = {.count = 1, .reusable = true}, SHIFT(1539), - [3539] = {.count = 1, .reusable = false}, SHIFT(1541), - [3541] = {.count = 1, .reusable = false}, SHIFT(1542), - [3543] = {.count = 1, .reusable = true}, SHIFT(1543), - [3545] = {.count = 1, .reusable = true}, SHIFT(1544), - [3547] = {.count = 1, .reusable = false}, SHIFT(1546), - [3549] = {.count = 1, .reusable = true}, SHIFT(1546), - [3551] = {.count = 1, .reusable = true}, SHIFT(1545), - [3553] = {.count = 1, .reusable = true}, SHIFT(1547), - [3555] = {.count = 1, .reusable = true}, SHIFT(1548), - [3557] = {.count = 1, .reusable = false}, SHIFT(1549), - [3559] = {.count = 1, .reusable = false}, SHIFT(1548), - [3561] = {.count = 1, .reusable = true}, SHIFT(1551), - [3563] = {.count = 1, .reusable = false}, SHIFT(1553), - [3565] = {.count = 1, .reusable = true}, SHIFT(1553), - [3567] = {.count = 1, .reusable = true}, SHIFT(1552), - [3569] = {.count = 1, .reusable = true}, SHIFT(1554), - [3571] = {.count = 1, .reusable = false}, SHIFT(1556), - [3573] = {.count = 1, .reusable = true}, SHIFT(1556), - [3575] = {.count = 1, .reusable = true}, SHIFT(1555), - [3577] = {.count = 1, .reusable = true}, SHIFT(1557), - [3579] = {.count = 1, .reusable = true}, SHIFT(1558), - [3581] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [3583] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [3585] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(585), - [3590] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(586), - [3593] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(587), - [3596] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(588), - [3599] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(589), - [3602] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(590), - [3605] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(591), - [3608] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(592), - [3611] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(594), - [3614] = {.count = 1, .reusable = false}, SHIFT(1559), - [3616] = {.count = 1, .reusable = true}, SHIFT(1560), - [3618] = {.count = 1, .reusable = false}, SHIFT(1561), - [3620] = {.count = 1, .reusable = true}, SHIFT(1562), - [3622] = {.count = 1, .reusable = true}, SHIFT(1564), - [3624] = {.count = 1, .reusable = true}, SHIFT(1565), - [3626] = {.count = 1, .reusable = true}, SHIFT(1566), - [3628] = {.count = 1, .reusable = true}, SHIFT(1567), - [3630] = {.count = 1, .reusable = false}, SHIFT(1569), - [3632] = {.count = 1, .reusable = true}, SHIFT(1569), - [3634] = {.count = 1, .reusable = true}, SHIFT(1568), - [3636] = {.count = 1, .reusable = true}, SHIFT(1570), - [3638] = {.count = 1, .reusable = false}, SHIFT(1572), - [3640] = {.count = 1, .reusable = true}, SHIFT(1572), - [3642] = {.count = 1, .reusable = true}, SHIFT(1571), - [3644] = {.count = 1, .reusable = false}, SHIFT(1574), - [3646] = {.count = 1, .reusable = true}, SHIFT(1574), - [3648] = {.count = 1, .reusable = true}, SHIFT(1573), - [3650] = {.count = 1, .reusable = true}, SHIFT(1575), - [3652] = {.count = 1, .reusable = true}, SHIFT(1576), - [3654] = {.count = 1, .reusable = true}, SHIFT(1577), - [3656] = {.count = 1, .reusable = true}, SHIFT(1578), - [3658] = {.count = 1, .reusable = true}, SHIFT(1582), - [3660] = {.count = 1, .reusable = false}, SHIFT(1584), - [3662] = {.count = 1, .reusable = false}, SHIFT(1585), - [3664] = {.count = 1, .reusable = true}, SHIFT(1587), - [3666] = {.count = 1, .reusable = true}, SHIFT(1588), - [3668] = {.count = 1, .reusable = false}, SHIFT(1589), - [3670] = {.count = 1, .reusable = false}, SHIFT(1587), - [3672] = {.count = 1, .reusable = true}, SHIFT(1590), - [3674] = {.count = 1, .reusable = true}, SHIFT(1591), - [3676] = {.count = 1, .reusable = true}, SHIFT(1592), - [3678] = {.count = 1, .reusable = false}, SHIFT(1593), - [3680] = {.count = 1, .reusable = false}, SHIFT(1591), - [3682] = {.count = 1, .reusable = true}, SHIFT(1601), - [3684] = {.count = 1, .reusable = true}, SHIFT(1602), - [3686] = {.count = 1, .reusable = true}, SHIFT(1603), - [3688] = {.count = 1, .reusable = false}, SHIFT(1602), - [3690] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(617), - [3693] = {.count = 1, .reusable = false}, SHIFT(1605), - [3695] = {.count = 1, .reusable = true}, SHIFT(1606), - [3697] = {.count = 1, .reusable = false}, SHIFT(1607), - [3699] = {.count = 1, .reusable = true}, SHIFT(1608), - [3701] = {.count = 1, .reusable = true}, SHIFT(1610), - [3703] = {.count = 1, .reusable = true}, SHIFT(1611), - [3705] = {.count = 1, .reusable = true}, SHIFT(1612), - [3707] = {.count = 1, .reusable = true}, SHIFT(1613), - [3709] = {.count = 1, .reusable = false}, SHIFT(1615), - [3711] = {.count = 1, .reusable = true}, SHIFT(1615), - [3713] = {.count = 1, .reusable = true}, SHIFT(1614), - [3715] = {.count = 1, .reusable = true}, SHIFT(1616), - [3717] = {.count = 1, .reusable = false}, SHIFT(1618), - [3719] = {.count = 1, .reusable = true}, SHIFT(1618), - [3721] = {.count = 1, .reusable = true}, SHIFT(1617), - [3723] = {.count = 1, .reusable = false}, SHIFT(1620), - [3725] = {.count = 1, .reusable = true}, SHIFT(1620), - [3727] = {.count = 1, .reusable = true}, SHIFT(1619), - [3729] = {.count = 1, .reusable = true}, SHIFT(1621), - [3731] = {.count = 1, .reusable = true}, SHIFT(1622), - [3733] = {.count = 1, .reusable = true}, SHIFT(1623), - [3735] = {.count = 1, .reusable = false}, SHIFT(1624), - [3737] = {.count = 1, .reusable = true}, SHIFT(1624), - [3739] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3741] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(639), - [3744] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(43), - [3747] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(44), - [3750] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(640), - [3753] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(46), - [3756] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(47), - [3759] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(48), - [3762] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(49), - [3765] = {.count = 1, .reusable = false}, SHIFT(1627), - [3767] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [3769] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [3771] = {.count = 1, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), - [3773] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), - [3775] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), - [3777] = {.count = 1, .reusable = true}, SHIFT(1628), - [3779] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [3781] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [3783] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [3785] = {.count = 1, .reusable = true}, SHIFT(1630), - [3787] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3789] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(649), - [3792] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [3794] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [3796] = {.count = 1, .reusable = true}, SHIFT(1632), - [3798] = {.count = 1, .reusable = true}, SHIFT(1633), - [3800] = {.count = 1, .reusable = true}, SHIFT(1636), - [3802] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [3804] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [3806] = {.count = 1, .reusable = true}, SHIFT(1638), - [3808] = {.count = 1, .reusable = false}, SHIFT(1641), - [3810] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [3812] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [3814] = {.count = 1, .reusable = true}, SHIFT(1643), - [3816] = {.count = 1, .reusable = false}, SHIFT(1645), - [3818] = {.count = 1, .reusable = true}, SHIFT(1647), - [3820] = {.count = 1, .reusable = true}, SHIFT(1648), - [3822] = {.count = 1, .reusable = true}, SHIFT(1649), - [3824] = {.count = 1, .reusable = false}, SHIFT(1650), - [3826] = {.count = 1, .reusable = true}, SHIFT(1650), - [3828] = {.count = 1, .reusable = false}, SHIFT(1651), - [3830] = {.count = 1, .reusable = true}, SHIFT(1652), - [3832] = {.count = 1, .reusable = true}, SHIFT(1654), - [3834] = {.count = 1, .reusable = true}, SHIFT(1655), - [3836] = {.count = 1, .reusable = true}, SHIFT(1656), - [3838] = {.count = 1, .reusable = true}, SHIFT(1657), - [3840] = {.count = 1, .reusable = true}, SHIFT(1658), - [3842] = {.count = 1, .reusable = true}, SHIFT(1659), - [3844] = {.count = 1, .reusable = false}, SHIFT(1660), - [3846] = {.count = 1, .reusable = true}, SHIFT(1660), - [3848] = {.count = 1, .reusable = true}, SHIFT(1661), - [3850] = {.count = 1, .reusable = false}, SHIFT(1662), - [3852] = {.count = 1, .reusable = true}, SHIFT(1662), - [3854] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [3856] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [3858] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [3860] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [3862] = {.count = 1, .reusable = true}, SHIFT(1664), - [3864] = {.count = 1, .reusable = true}, SHIFT(1665), - [3866] = {.count = 1, .reusable = false}, SHIFT(1670), - [3868] = {.count = 1, .reusable = true}, SHIFT(1670), - [3870] = {.count = 1, .reusable = true}, SHIFT(1671), - [3872] = {.count = 1, .reusable = true}, SHIFT(1672), - [3874] = {.count = 1, .reusable = false}, SHIFT(1673), - [3876] = {.count = 1, .reusable = true}, SHIFT(1673), - [3878] = {.count = 1, .reusable = true}, SHIFT(1674), - [3880] = {.count = 1, .reusable = true}, SHIFT(1675), - [3882] = {.count = 1, .reusable = true}, SHIFT(1676), - [3884] = {.count = 1, .reusable = true}, SHIFT(1677), - [3886] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), - [3888] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), - [3890] = {.count = 1, .reusable = true}, SHIFT(1680), - [3892] = {.count = 1, .reusable = true}, SHIFT(1681), - [3894] = {.count = 1, .reusable = true}, SHIFT(1682), - [3896] = {.count = 1, .reusable = true}, SHIFT(1683), - [3898] = {.count = 1, .reusable = false}, SHIFT(1684), - [3900] = {.count = 1, .reusable = true}, SHIFT(1684), - [3902] = {.count = 1, .reusable = false}, SHIFT(1685), - [3904] = {.count = 1, .reusable = true}, SHIFT(1686), - [3906] = {.count = 1, .reusable = true}, SHIFT(1688), - [3908] = {.count = 1, .reusable = true}, SHIFT(1689), - [3910] = {.count = 1, .reusable = true}, SHIFT(1690), - [3912] = {.count = 1, .reusable = true}, SHIFT(1691), - [3914] = {.count = 1, .reusable = true}, SHIFT(1692), - [3916] = {.count = 1, .reusable = true}, SHIFT(1693), - [3918] = {.count = 1, .reusable = false}, SHIFT(1694), - [3920] = {.count = 1, .reusable = true}, SHIFT(1694), - [3922] = {.count = 1, .reusable = true}, SHIFT(1695), - [3924] = {.count = 1, .reusable = false}, SHIFT(1696), - [3926] = {.count = 1, .reusable = true}, SHIFT(1696), - [3928] = {.count = 1, .reusable = true}, SHIFT(1697), - [3930] = {.count = 1, .reusable = true}, SHIFT(1698), - [3932] = {.count = 1, .reusable = true}, SHIFT(1700), - [3934] = {.count = 1, .reusable = false}, SHIFT(1702), - [3936] = {.count = 1, .reusable = false}, SHIFT(1703), - [3938] = {.count = 1, .reusable = true}, SHIFT(1705), - [3940] = {.count = 1, .reusable = true}, SHIFT(1706), - [3942] = {.count = 1, .reusable = false}, SHIFT(1707), - [3944] = {.count = 1, .reusable = false}, SHIFT(1705), - [3946] = {.count = 1, .reusable = true}, SHIFT(1708), - [3948] = {.count = 1, .reusable = true}, SHIFT(1709), - [3950] = {.count = 1, .reusable = true}, SHIFT(1710), - [3952] = {.count = 1, .reusable = false}, SHIFT(1711), - [3954] = {.count = 1, .reusable = false}, SHIFT(1709), - [3956] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(744), - [3959] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(745), - [3962] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(746), - [3965] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(747), - [3968] = {.count = 1, .reusable = true}, SHIFT(1719), - [3970] = {.count = 1, .reusable = true}, SHIFT(1720), - [3972] = {.count = 1, .reusable = true}, SHIFT(1721), - [3974] = {.count = 1, .reusable = false}, SHIFT(1722), - [3976] = {.count = 1, .reusable = true}, SHIFT(1722), - [3978] = {.count = 1, .reusable = false}, SHIFT(1723), - [3980] = {.count = 1, .reusable = true}, SHIFT(1724), - [3982] = {.count = 1, .reusable = true}, SHIFT(1726), - [3984] = {.count = 1, .reusable = true}, SHIFT(1727), - [3986] = {.count = 1, .reusable = true}, SHIFT(1728), - [3988] = {.count = 1, .reusable = true}, SHIFT(1729), - [3990] = {.count = 1, .reusable = true}, SHIFT(1730), - [3992] = {.count = 1, .reusable = true}, SHIFT(1731), - [3994] = {.count = 1, .reusable = false}, SHIFT(1732), - [3996] = {.count = 1, .reusable = true}, SHIFT(1732), - [3998] = {.count = 1, .reusable = true}, SHIFT(1733), - [4000] = {.count = 1, .reusable = false}, SHIFT(1734), - [4002] = {.count = 1, .reusable = true}, SHIFT(1734), - [4004] = {.count = 1, .reusable = true}, SHIFT(1735), - [4006] = {.count = 1, .reusable = true}, SHIFT(1736), - [4008] = {.count = 1, .reusable = true}, SHIFT(1737), - [4010] = {.count = 1, .reusable = true}, SHIFT(1738), - [4012] = {.count = 1, .reusable = false}, SHIFT(1739), - [4014] = {.count = 1, .reusable = true}, SHIFT(1739), - [4016] = {.count = 1, .reusable = false}, SHIFT(1740), - [4018] = {.count = 1, .reusable = true}, SHIFT(1741), - [4020] = {.count = 1, .reusable = true}, SHIFT(1743), - [4022] = {.count = 1, .reusable = true}, SHIFT(1744), - [4024] = {.count = 1, .reusable = true}, SHIFT(1745), - [4026] = {.count = 1, .reusable = true}, SHIFT(1746), - [4028] = {.count = 1, .reusable = true}, SHIFT(1747), - [4030] = {.count = 1, .reusable = true}, SHIFT(1748), - [4032] = {.count = 1, .reusable = false}, SHIFT(1749), - [4034] = {.count = 1, .reusable = true}, SHIFT(1749), - [4036] = {.count = 1, .reusable = true}, SHIFT(1750), - [4038] = {.count = 1, .reusable = false}, SHIFT(1751), - [4040] = {.count = 1, .reusable = true}, SHIFT(1751), - [4042] = {.count = 1, .reusable = true}, SHIFT(1752), - [4044] = {.count = 1, .reusable = true}, SHIFT(1753), - [4046] = {.count = 1, .reusable = true}, SHIFT(1754), - [4048] = {.count = 1, .reusable = false}, SHIFT(1755), - [4050] = {.count = 1, .reusable = true}, SHIFT(1755), - [4052] = {.count = 1, .reusable = false}, SHIFT(1756), - [4054] = {.count = 1, .reusable = true}, SHIFT(1757), - [4056] = {.count = 1, .reusable = true}, SHIFT(1759), - [4058] = {.count = 1, .reusable = true}, SHIFT(1760), - [4060] = {.count = 1, .reusable = true}, SHIFT(1761), - [4062] = {.count = 1, .reusable = true}, SHIFT(1762), - [4064] = {.count = 1, .reusable = true}, SHIFT(1763), - [4066] = {.count = 1, .reusable = true}, SHIFT(1764), - [4068] = {.count = 1, .reusable = false}, SHIFT(1765), - [4070] = {.count = 1, .reusable = true}, SHIFT(1765), - [4072] = {.count = 1, .reusable = true}, SHIFT(1766), - [4074] = {.count = 1, .reusable = false}, SHIFT(1767), - [4076] = {.count = 1, .reusable = true}, SHIFT(1767), - [4078] = {.count = 1, .reusable = true}, SHIFT(1768), - [4080] = {.count = 1, .reusable = true}, SHIFT(1769), - [4082] = {.count = 1, .reusable = true}, SHIFT(1770), - [4084] = {.count = 1, .reusable = false}, SHIFT(1771), - [4086] = {.count = 1, .reusable = true}, SHIFT(1771), - [4088] = {.count = 1, .reusable = false}, SHIFT(1772), - [4090] = {.count = 1, .reusable = true}, SHIFT(1773), - [4092] = {.count = 1, .reusable = true}, SHIFT(1775), - [4094] = {.count = 1, .reusable = true}, SHIFT(1776), - [4096] = {.count = 1, .reusable = true}, SHIFT(1777), - [4098] = {.count = 1, .reusable = true}, SHIFT(1778), - [4100] = {.count = 1, .reusable = true}, SHIFT(1779), - [4102] = {.count = 1, .reusable = true}, SHIFT(1780), - [4104] = {.count = 1, .reusable = false}, SHIFT(1781), - [4106] = {.count = 1, .reusable = true}, SHIFT(1781), - [4108] = {.count = 1, .reusable = true}, SHIFT(1782), - [4110] = {.count = 1, .reusable = false}, SHIFT(1783), - [4112] = {.count = 1, .reusable = true}, SHIFT(1783), - [4114] = {.count = 1, .reusable = true}, SHIFT(1784), - [4116] = {.count = 1, .reusable = true}, SHIFT(1785), - [4118] = {.count = 1, .reusable = true}, SHIFT(1786), - [4120] = {.count = 1, .reusable = false}, SHIFT(1787), - [4122] = {.count = 1, .reusable = true}, SHIFT(1787), - [4124] = {.count = 1, .reusable = false}, SHIFT(1788), - [4126] = {.count = 1, .reusable = true}, SHIFT(1789), - [4128] = {.count = 1, .reusable = true}, SHIFT(1791), - [4130] = {.count = 1, .reusable = true}, SHIFT(1792), - [4132] = {.count = 1, .reusable = true}, SHIFT(1793), - [4134] = {.count = 1, .reusable = true}, SHIFT(1794), - [4136] = {.count = 1, .reusable = true}, SHIFT(1795), - [4138] = {.count = 1, .reusable = true}, SHIFT(1796), - [4140] = {.count = 1, .reusable = false}, SHIFT(1797), - [4142] = {.count = 1, .reusable = true}, SHIFT(1797), - [4144] = {.count = 1, .reusable = true}, SHIFT(1798), - [4146] = {.count = 1, .reusable = false}, SHIFT(1799), - [4148] = {.count = 1, .reusable = true}, SHIFT(1799), - [4150] = {.count = 1, .reusable = true}, SHIFT(1800), - [4152] = {.count = 1, .reusable = true}, SHIFT(1801), - [4154] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [4156] = {.count = 1, .reusable = true}, SHIFT(1802), - [4158] = {.count = 1, .reusable = true}, SHIFT(1803), - [4160] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [4162] = {.count = 1, .reusable = true}, SHIFT(1804), - [4164] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [4166] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [4168] = {.count = 1, .reusable = false}, SHIFT(1806), - [4170] = {.count = 1, .reusable = false}, SHIFT(1807), - [4172] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [4174] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [4176] = {.count = 1, .reusable = true}, SHIFT(1808), - [4178] = {.count = 1, .reusable = true}, SHIFT(1809), - [4180] = {.count = 1, .reusable = false}, SHIFT(1811), - [4182] = {.count = 1, .reusable = true}, SHIFT(1811), - [4184] = {.count = 1, .reusable = true}, SHIFT(1810), - [4186] = {.count = 1, .reusable = true}, SHIFT(1812), - [4188] = {.count = 1, .reusable = true}, SHIFT(1813), - [4190] = {.count = 1, .reusable = false}, SHIFT(1814), - [4192] = {.count = 1, .reusable = false}, SHIFT(1813), - [4194] = {.count = 1, .reusable = true}, SHIFT(1816), - [4196] = {.count = 1, .reusable = false}, SHIFT(1818), - [4198] = {.count = 1, .reusable = true}, SHIFT(1818), - [4200] = {.count = 1, .reusable = true}, SHIFT(1817), - [4202] = {.count = 1, .reusable = true}, SHIFT(1819), - [4204] = {.count = 1, .reusable = false}, SHIFT(1821), - [4206] = {.count = 1, .reusable = true}, SHIFT(1821), - [4208] = {.count = 1, .reusable = true}, SHIFT(1820), - [4210] = {.count = 1, .reusable = true}, SHIFT(1822), - [4212] = {.count = 1, .reusable = true}, SHIFT(1823), - [4214] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(868), - [4217] = {.count = 1, .reusable = false}, SHIFT(1824), - [4219] = {.count = 1, .reusable = true}, SHIFT(1825), - [4221] = {.count = 1, .reusable = false}, SHIFT(1826), - [4223] = {.count = 1, .reusable = true}, SHIFT(1827), - [4225] = {.count = 1, .reusable = true}, SHIFT(1829), - [4227] = {.count = 1, .reusable = true}, SHIFT(1830), - [4229] = {.count = 1, .reusable = true}, SHIFT(1831), - [4231] = {.count = 1, .reusable = true}, SHIFT(1832), - [4233] = {.count = 1, .reusable = false}, SHIFT(1834), - [4235] = {.count = 1, .reusable = true}, SHIFT(1834), - [4237] = {.count = 1, .reusable = true}, SHIFT(1833), - [4239] = {.count = 1, .reusable = true}, SHIFT(1835), - [4241] = {.count = 1, .reusable = false}, SHIFT(1837), - [4243] = {.count = 1, .reusable = true}, SHIFT(1837), - [4245] = {.count = 1, .reusable = true}, SHIFT(1836), - [4247] = {.count = 1, .reusable = false}, SHIFT(1839), - [4249] = {.count = 1, .reusable = true}, SHIFT(1839), - [4251] = {.count = 1, .reusable = true}, SHIFT(1838), - [4253] = {.count = 1, .reusable = true}, SHIFT(1840), - [4255] = {.count = 1, .reusable = true}, SHIFT(1841), - [4257] = {.count = 1, .reusable = true}, SHIFT(1842), - [4259] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4261] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4263] = {.count = 1, .reusable = true}, SHIFT(1843), - [4265] = {.count = 1, .reusable = true}, SHIFT(1844), - [4267] = {.count = 1, .reusable = true}, SHIFT(1845), - [4269] = {.count = 1, .reusable = true}, SHIFT(1846), - [4271] = {.count = 1, .reusable = false}, SHIFT(1847), - [4273] = {.count = 1, .reusable = true}, SHIFT(1847), - [4275] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4277] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4279] = {.count = 1, .reusable = true}, SHIFT(1848), - [4281] = {.count = 1, .reusable = false}, SHIFT(1849), - [4283] = {.count = 1, .reusable = true}, SHIFT(1849), - [4285] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4287] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4289] = {.count = 1, .reusable = true}, SHIFT(1850), - [4291] = {.count = 1, .reusable = false}, SHIFT(1851), - [4293] = {.count = 1, .reusable = true}, SHIFT(1851), - [4295] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4297] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4299] = {.count = 1, .reusable = true}, SHIFT(1852), - [4301] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4303] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4305] = {.count = 1, .reusable = true}, SHIFT(1853), - [4307] = {.count = 1, .reusable = true}, SHIFT(1855), - [4309] = {.count = 1, .reusable = false}, SHIFT(1857), - [4311] = {.count = 1, .reusable = true}, SHIFT(1857), - [4313] = {.count = 1, .reusable = false}, SHIFT(1859), - [4315] = {.count = 1, .reusable = true}, SHIFT(1859), - [4317] = {.count = 1, .reusable = false}, SHIFT(1860), - [4319] = {.count = 1, .reusable = false}, SHIFT(1862), - [4321] = {.count = 1, .reusable = true}, SHIFT(1864), - [4323] = {.count = 1, .reusable = false}, SHIFT(1864), - [4325] = {.count = 1, .reusable = false}, SHIFT(1867), - [4327] = {.count = 1, .reusable = false}, SHIFT(1870), - [4329] = {.count = 1, .reusable = true}, SHIFT(1870), - [4331] = {.count = 1, .reusable = false}, SHIFT(1871), - [4333] = {.count = 1, .reusable = false}, SHIFT(1874), - [4335] = {.count = 1, .reusable = true}, SHIFT(1874), - [4337] = {.count = 1, .reusable = true}, SHIFT(1876), - [4339] = {.count = 1, .reusable = false}, SHIFT(1877), - [4341] = {.count = 1, .reusable = true}, SHIFT(1877), - [4343] = {.count = 1, .reusable = true}, SHIFT(1878), - [4345] = {.count = 1, .reusable = true}, SHIFT(1879), - [4347] = {.count = 1, .reusable = true}, SHIFT(1881), - [4349] = {.count = 1, .reusable = false}, SHIFT(1882), - [4351] = {.count = 1, .reusable = true}, SHIFT(1882), - [4353] = {.count = 1, .reusable = true}, SHIFT(1883), - [4355] = {.count = 1, .reusable = true}, SHIFT(1884), - [4357] = {.count = 1, .reusable = false}, SHIFT(1885), - [4359] = {.count = 1, .reusable = true}, SHIFT(1886), - [4361] = {.count = 1, .reusable = true}, SHIFT(1887), - [4363] = {.count = 1, .reusable = true}, SHIFT(1888), - [4365] = {.count = 1, .reusable = true}, SHIFT(1889), - [4367] = {.count = 1, .reusable = true}, SHIFT(1890), - [4369] = {.count = 1, .reusable = true}, SHIFT(1892), - [4371] = {.count = 1, .reusable = true}, SHIFT(1893), - [4373] = {.count = 1, .reusable = true}, SHIFT(1894), - [4375] = {.count = 1, .reusable = true}, SHIFT(1897), - [4377] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(924), - [4380] = {.count = 1, .reusable = false}, SHIFT(1899), - [4382] = {.count = 1, .reusable = true}, SHIFT(1900), - [4384] = {.count = 1, .reusable = false}, SHIFT(1901), - [4386] = {.count = 1, .reusable = true}, SHIFT(1902), - [4388] = {.count = 1, .reusable = true}, SHIFT(1904), - [4390] = {.count = 1, .reusable = true}, SHIFT(1905), - [4392] = {.count = 1, .reusable = true}, SHIFT(1906), - [4394] = {.count = 1, .reusable = true}, SHIFT(1907), - [4396] = {.count = 1, .reusable = false}, SHIFT(1909), - [4398] = {.count = 1, .reusable = true}, SHIFT(1909), - [4400] = {.count = 1, .reusable = true}, SHIFT(1908), - [4402] = {.count = 1, .reusable = true}, SHIFT(1910), - [4404] = {.count = 1, .reusable = false}, SHIFT(1912), - [4406] = {.count = 1, .reusable = true}, SHIFT(1912), - [4408] = {.count = 1, .reusable = true}, SHIFT(1911), - [4410] = {.count = 1, .reusable = false}, SHIFT(1914), - [4412] = {.count = 1, .reusable = true}, SHIFT(1914), - [4414] = {.count = 1, .reusable = true}, SHIFT(1913), - [4416] = {.count = 1, .reusable = true}, SHIFT(1915), - [4418] = {.count = 1, .reusable = true}, SHIFT(1916), - [4420] = {.count = 1, .reusable = true}, SHIFT(1917), - [4422] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(944), - [4425] = {.count = 1, .reusable = false}, SHIFT(1918), - [4427] = {.count = 1, .reusable = true}, SHIFT(1919), - [4429] = {.count = 1, .reusable = false}, SHIFT(1920), - [4431] = {.count = 1, .reusable = true}, SHIFT(1921), - [4433] = {.count = 1, .reusable = true}, SHIFT(1923), - [4435] = {.count = 1, .reusable = true}, SHIFT(1924), - [4437] = {.count = 1, .reusable = true}, SHIFT(1925), - [4439] = {.count = 1, .reusable = true}, SHIFT(1926), - [4441] = {.count = 1, .reusable = false}, SHIFT(1928), - [4443] = {.count = 1, .reusable = true}, SHIFT(1928), - [4445] = {.count = 1, .reusable = true}, SHIFT(1927), - [4447] = {.count = 1, .reusable = true}, SHIFT(1929), - [4449] = {.count = 1, .reusable = false}, SHIFT(1931), - [4451] = {.count = 1, .reusable = true}, SHIFT(1931), - [4453] = {.count = 1, .reusable = true}, SHIFT(1930), - [4455] = {.count = 1, .reusable = false}, SHIFT(1933), - [4457] = {.count = 1, .reusable = true}, SHIFT(1933), - [4459] = {.count = 1, .reusable = true}, SHIFT(1932), - [4461] = {.count = 1, .reusable = true}, SHIFT(1934), - [4463] = {.count = 1, .reusable = true}, SHIFT(1935), - [4465] = {.count = 1, .reusable = true}, SHIFT(1936), - [4467] = {.count = 1, .reusable = true}, SHIFT(1937), - [4469] = {.count = 1, .reusable = true}, SHIFT(1938), - [4471] = {.count = 1, .reusable = true}, SHIFT(1939), - [4473] = {.count = 1, .reusable = false}, SHIFT(1940), - [4475] = {.count = 1, .reusable = true}, SHIFT(1940), - [4477] = {.count = 1, .reusable = false}, SHIFT(1941), - [4479] = {.count = 1, .reusable = true}, SHIFT(1942), - [4481] = {.count = 1, .reusable = true}, SHIFT(1944), - [4483] = {.count = 1, .reusable = true}, SHIFT(1945), - [4485] = {.count = 1, .reusable = true}, SHIFT(1946), - [4487] = {.count = 1, .reusable = true}, SHIFT(1947), - [4489] = {.count = 1, .reusable = true}, SHIFT(1948), - [4491] = {.count = 1, .reusable = true}, SHIFT(1949), - [4493] = {.count = 1, .reusable = false}, SHIFT(1950), - [4495] = {.count = 1, .reusable = true}, SHIFT(1950), - [4497] = {.count = 1, .reusable = true}, SHIFT(1951), - [4499] = {.count = 1, .reusable = false}, SHIFT(1952), - [4501] = {.count = 1, .reusable = true}, SHIFT(1952), - [4503] = {.count = 1, .reusable = false}, SHIFT(1958), - [4505] = {.count = 1, .reusable = true}, SHIFT(1958), - [4507] = {.count = 1, .reusable = true}, SHIFT(1959), - [4509] = {.count = 1, .reusable = true}, SHIFT(1960), - [4511] = {.count = 1, .reusable = false}, SHIFT(1961), - [4513] = {.count = 1, .reusable = true}, SHIFT(1961), - [4515] = {.count = 1, .reusable = true}, SHIFT(1962), - [4517] = {.count = 1, .reusable = true}, SHIFT(1963), - [4519] = {.count = 1, .reusable = true}, SHIFT(1964), - [4521] = {.count = 1, .reusable = true}, SHIFT(1965), - [4523] = {.count = 1, .reusable = true}, SHIFT(1968), - [4525] = {.count = 1, .reusable = false}, SHIFT(1969), - [4527] = {.count = 1, .reusable = true}, SHIFT(1970), - [4529] = {.count = 1, .reusable = true}, SHIFT(1972), - [4531] = {.count = 1, .reusable = true}, SHIFT(1973), - [4533] = {.count = 1, .reusable = true}, SHIFT(1974), - [4535] = {.count = 1, .reusable = true}, SHIFT(1975), - [4537] = {.count = 1, .reusable = false}, SHIFT(1977), - [4539] = {.count = 1, .reusable = true}, SHIFT(1977), - [4541] = {.count = 1, .reusable = true}, SHIFT(1976), - [4543] = {.count = 1, .reusable = true}, SHIFT(1978), - [4545] = {.count = 1, .reusable = false}, SHIFT(1980), - [4547] = {.count = 1, .reusable = true}, SHIFT(1980), - [4549] = {.count = 1, .reusable = true}, SHIFT(1979), - [4551] = {.count = 1, .reusable = false}, SHIFT(1982), - [4553] = {.count = 1, .reusable = true}, SHIFT(1982), - [4555] = {.count = 1, .reusable = true}, SHIFT(1981), - [4557] = {.count = 1, .reusable = true}, SHIFT(1983), - [4559] = {.count = 1, .reusable = true}, SHIFT(1984), - [4561] = {.count = 1, .reusable = true}, SHIFT(1985), - [4563] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), - [4565] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), - [4567] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [4569] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [4571] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1055), - [4574] = {.count = 1, .reusable = false}, SHIFT(1986), - [4576] = {.count = 1, .reusable = true}, SHIFT(1987), - [4578] = {.count = 1, .reusable = false}, SHIFT(1988), - [4580] = {.count = 1, .reusable = true}, SHIFT(1989), - [4582] = {.count = 1, .reusable = true}, SHIFT(1991), - [4584] = {.count = 1, .reusable = true}, SHIFT(1992), - [4586] = {.count = 1, .reusable = true}, SHIFT(1993), - [4588] = {.count = 1, .reusable = true}, SHIFT(1994), - [4590] = {.count = 1, .reusable = false}, SHIFT(1996), - [4592] = {.count = 1, .reusable = true}, SHIFT(1996), - [4594] = {.count = 1, .reusable = true}, SHIFT(1995), - [4596] = {.count = 1, .reusable = true}, SHIFT(1997), - [4598] = {.count = 1, .reusable = false}, SHIFT(1999), - [4600] = {.count = 1, .reusable = true}, SHIFT(1999), - [4602] = {.count = 1, .reusable = true}, SHIFT(1998), - [4604] = {.count = 1, .reusable = false}, SHIFT(2001), - [4606] = {.count = 1, .reusable = true}, SHIFT(2001), - [4608] = {.count = 1, .reusable = true}, SHIFT(2000), - [4610] = {.count = 1, .reusable = true}, SHIFT(2002), - [4612] = {.count = 1, .reusable = true}, SHIFT(2003), - [4614] = {.count = 1, .reusable = true}, SHIFT(2004), - [4616] = {.count = 1, .reusable = true}, SHIFT(2005), - [4618] = {.count = 1, .reusable = true}, SHIFT(2006), - [4620] = {.count = 1, .reusable = true}, SHIFT(2007), - [4622] = {.count = 1, .reusable = false}, SHIFT(2008), - [4624] = {.count = 1, .reusable = true}, SHIFT(2008), - [4626] = {.count = 1, .reusable = false}, SHIFT(2009), - [4628] = {.count = 1, .reusable = true}, SHIFT(2010), - [4630] = {.count = 1, .reusable = true}, SHIFT(2012), - [4632] = {.count = 1, .reusable = true}, SHIFT(2013), - [4634] = {.count = 1, .reusable = true}, SHIFT(2014), - [4636] = {.count = 1, .reusable = true}, SHIFT(2015), - [4638] = {.count = 1, .reusable = true}, SHIFT(2016), - [4640] = {.count = 1, .reusable = true}, SHIFT(2017), - [4642] = {.count = 1, .reusable = false}, SHIFT(2018), - [4644] = {.count = 1, .reusable = true}, SHIFT(2018), - [4646] = {.count = 1, .reusable = true}, SHIFT(2019), - [4648] = {.count = 1, .reusable = false}, SHIFT(2020), - [4650] = {.count = 1, .reusable = true}, SHIFT(2020), - [4652] = {.count = 1, .reusable = true}, SHIFT(2021), - [4654] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), - [4656] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), - [4658] = {.count = 1, .reusable = true}, SHIFT(2023), - [4660] = {.count = 1, .reusable = true}, SHIFT(2024), - [4662] = {.count = 1, .reusable = false}, SHIFT(2026), - [4664] = {.count = 1, .reusable = false}, SHIFT(2027), - [4666] = {.count = 1, .reusable = true}, SHIFT(2028), - [4668] = {.count = 1, .reusable = true}, SHIFT(2029), - [4670] = {.count = 1, .reusable = false}, SHIFT(2031), - [4672] = {.count = 1, .reusable = true}, SHIFT(2031), - [4674] = {.count = 1, .reusable = true}, SHIFT(2030), - [4676] = {.count = 1, .reusable = true}, SHIFT(2032), - [4678] = {.count = 1, .reusable = true}, SHIFT(2033), - [4680] = {.count = 1, .reusable = false}, SHIFT(2034), + [1553] = {.count = 1, .reusable = true}, SHIFT(779), + [1555] = {.count = 1, .reusable = false}, SHIFT(782), + [1557] = {.count = 1, .reusable = false}, SHIFT(783), + [1559] = {.count = 1, .reusable = true}, SHIFT(783), + [1561] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1563] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), + [1566] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), + [1569] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), + [1572] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [1575] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), + [1578] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [1581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [1584] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), + [1587] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), + [1590] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1592] = {.count = 1, .reusable = true}, SHIFT(786), + [1594] = {.count = 1, .reusable = false}, SHIFT(788), + [1596] = {.count = 1, .reusable = false}, SHIFT(789), + [1598] = {.count = 1, .reusable = true}, SHIFT(790), + [1600] = {.count = 1, .reusable = true}, SHIFT(791), + [1602] = {.count = 1, .reusable = false}, SHIFT(793), + [1604] = {.count = 1, .reusable = true}, SHIFT(793), + [1606] = {.count = 1, .reusable = true}, SHIFT(792), + [1608] = {.count = 1, .reusable = true}, SHIFT(794), + [1610] = {.count = 1, .reusable = true}, SHIFT(795), + [1612] = {.count = 1, .reusable = false}, SHIFT(796), + [1614] = {.count = 1, .reusable = false}, SHIFT(795), + [1616] = {.count = 1, .reusable = true}, SHIFT(798), + [1618] = {.count = 1, .reusable = false}, SHIFT(800), + [1620] = {.count = 1, .reusable = true}, SHIFT(800), + [1622] = {.count = 1, .reusable = true}, SHIFT(799), + [1624] = {.count = 1, .reusable = true}, SHIFT(801), + [1626] = {.count = 1, .reusable = false}, SHIFT(803), + [1628] = {.count = 1, .reusable = true}, SHIFT(803), + [1630] = {.count = 1, .reusable = true}, SHIFT(802), + [1632] = {.count = 1, .reusable = false}, SHIFT(804), + [1634] = {.count = 1, .reusable = false}, SHIFT(805), + [1636] = {.count = 1, .reusable = true}, SHIFT(805), + [1638] = {.count = 1, .reusable = false}, SHIFT(808), + [1640] = {.count = 1, .reusable = true}, SHIFT(808), + [1642] = {.count = 1, .reusable = false}, SHIFT(811), + [1644] = {.count = 1, .reusable = false}, SHIFT(812), + [1646] = {.count = 1, .reusable = true}, SHIFT(812), + [1648] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1650] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1652] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(126), + [1655] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1657] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1659] = {.count = 1, .reusable = true}, SHIFT(815), + [1661] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1663] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), + [1665] = {.count = 1, .reusable = true}, SHIFT(816), + [1667] = {.count = 1, .reusable = true}, SHIFT(817), + [1669] = {.count = 1, .reusable = false}, SHIFT(819), + [1671] = {.count = 1, .reusable = true}, SHIFT(819), + [1673] = {.count = 1, .reusable = true}, SHIFT(818), + [1675] = {.count = 1, .reusable = true}, SHIFT(820), + [1677] = {.count = 1, .reusable = true}, SHIFT(821), + [1679] = {.count = 1, .reusable = false}, SHIFT(822), + [1681] = {.count = 1, .reusable = false}, SHIFT(821), + [1683] = {.count = 1, .reusable = true}, SHIFT(824), + [1685] = {.count = 1, .reusable = false}, SHIFT(826), + [1687] = {.count = 1, .reusable = true}, SHIFT(826), + [1689] = {.count = 1, .reusable = true}, SHIFT(825), + [1691] = {.count = 1, .reusable = true}, SHIFT(827), + [1693] = {.count = 1, .reusable = false}, SHIFT(829), + [1695] = {.count = 1, .reusable = true}, SHIFT(829), + [1697] = {.count = 1, .reusable = true}, SHIFT(828), + [1699] = {.count = 1, .reusable = false}, SHIFT(830), + [1701] = {.count = 1, .reusable = false}, SHIFT(831), + [1703] = {.count = 1, .reusable = true}, SHIFT(831), + [1705] = {.count = 1, .reusable = false}, SHIFT(834), + [1707] = {.count = 1, .reusable = true}, SHIFT(834), + [1709] = {.count = 1, .reusable = false}, SHIFT(837), + [1711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(838), + [1714] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(130), + [1717] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(131), + [1720] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(132), + [1723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), + [1726] = {.count = 1, .reusable = true}, SHIFT(839), + [1728] = {.count = 1, .reusable = true}, SHIFT(840), + [1730] = {.count = 1, .reusable = true}, SHIFT(842), + [1732] = {.count = 1, .reusable = false}, SHIFT(843), + [1734] = {.count = 1, .reusable = true}, SHIFT(844), + [1736] = {.count = 1, .reusable = false}, SHIFT(845), + [1738] = {.count = 1, .reusable = true}, SHIFT(846), + [1740] = {.count = 1, .reusable = true}, SHIFT(847), + [1742] = {.count = 1, .reusable = true}, SHIFT(848), + [1744] = {.count = 1, .reusable = true}, SHIFT(849), + [1746] = {.count = 1, .reusable = true}, SHIFT(850), + [1748] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1750] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1752] = {.count = 1, .reusable = true}, SHIFT(852), + [1754] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1756] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1758] = {.count = 1, .reusable = false}, SHIFT(854), + [1760] = {.count = 1, .reusable = false}, SHIFT(855), + [1762] = {.count = 1, .reusable = true}, SHIFT(857), + [1764] = {.count = 1, .reusable = true}, SHIFT(858), + [1766] = {.count = 1, .reusable = false}, SHIFT(859), + [1768] = {.count = 1, .reusable = false}, SHIFT(857), + [1770] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1772] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1774] = {.count = 1, .reusable = true}, SHIFT(860), + [1776] = {.count = 1, .reusable = true}, SHIFT(861), + [1778] = {.count = 1, .reusable = true}, SHIFT(862), + [1780] = {.count = 1, .reusable = false}, SHIFT(863), + [1782] = {.count = 1, .reusable = false}, SHIFT(861), + [1784] = {.count = 1, .reusable = true}, SHIFT(865), + [1786] = {.count = 1, .reusable = true}, SHIFT(875), + [1788] = {.count = 1, .reusable = false}, SHIFT(876), + [1790] = {.count = 1, .reusable = true}, SHIFT(876), + [1792] = {.count = 1, .reusable = true}, SHIFT(877), + [1794] = {.count = 1, .reusable = true}, SHIFT(878), + [1796] = {.count = 1, .reusable = false}, SHIFT(880), + [1798] = {.count = 1, .reusable = true}, SHIFT(880), + [1800] = {.count = 1, .reusable = true}, SHIFT(879), + [1802] = {.count = 1, .reusable = true}, SHIFT(881), + [1804] = {.count = 1, .reusable = false}, SHIFT(883), + [1806] = {.count = 1, .reusable = true}, SHIFT(883), + [1808] = {.count = 1, .reusable = true}, SHIFT(882), + [1810] = {.count = 1, .reusable = false}, SHIFT(885), + [1812] = {.count = 1, .reusable = true}, SHIFT(885), + [1814] = {.count = 1, .reusable = true}, SHIFT(884), + [1816] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1818] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1820] = {.count = 1, .reusable = true}, SHIFT(886), + [1822] = {.count = 1, .reusable = true}, SHIFT(887), + [1824] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1826] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [1828] = {.count = 1, .reusable = true}, SHIFT(888), + [1830] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [1832] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [1834] = {.count = 1, .reusable = true}, SHIFT(889), + [1836] = {.count = 1, .reusable = false}, SHIFT(889), + [1838] = {.count = 1, .reusable = false}, SHIFT(890), + [1840] = {.count = 1, .reusable = true}, SHIFT(890), + [1842] = {.count = 1, .reusable = true}, SHIFT(892), + [1844] = {.count = 1, .reusable = true}, SHIFT(894), + [1846] = {.count = 1, .reusable = true}, SHIFT(895), + [1848] = {.count = 1, .reusable = false}, SHIFT(899), + [1850] = {.count = 1, .reusable = true}, SHIFT(899), + [1852] = {.count = 1, .reusable = true}, SHIFT(900), + [1854] = {.count = 1, .reusable = true}, SHIFT(901), + [1856] = {.count = 1, .reusable = true}, SHIFT(902), + [1858] = {.count = 1, .reusable = true}, SHIFT(903), + [1860] = {.count = 1, .reusable = false}, SHIFT(906), + [1862] = {.count = 1, .reusable = true}, SHIFT(906), + [1864] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [1866] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [1868] = {.count = 1, .reusable = true}, SHIFT(908), + [1870] = {.count = 1, .reusable = false}, SHIFT(908), + [1872] = {.count = 1, .reusable = false}, SHIFT(909), + [1874] = {.count = 1, .reusable = true}, SHIFT(909), + [1876] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [1878] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [1880] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [1882] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [1884] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [1886] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [1888] = {.count = 1, .reusable = true}, SHIFT(911), + [1890] = {.count = 1, .reusable = false}, SHIFT(912), + [1892] = {.count = 1, .reusable = false}, SHIFT(911), + [1894] = {.count = 1, .reusable = true}, SHIFT(913), + [1896] = {.count = 1, .reusable = true}, SHIFT(914), + [1898] = {.count = 1, .reusable = true}, SHIFT(915), + [1900] = {.count = 1, .reusable = false}, SHIFT(916), + [1902] = {.count = 1, .reusable = false}, SHIFT(914), + [1904] = {.count = 1, .reusable = true}, SHIFT(919), + [1906] = {.count = 1, .reusable = true}, SHIFT(918), + [1908] = {.count = 1, .reusable = true}, SHIFT(920), + [1910] = {.count = 1, .reusable = true}, SHIFT(921), + [1912] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1914] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1916] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [1918] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [1920] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [1922] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [1924] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [1926] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [1928] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [1930] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [1932] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [1934] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [1936] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [1938] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(168), + [1941] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [1943] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(170), + [1946] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(171), + [1949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(172), + [1952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(169), + [1955] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(173), + [1958] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [1961] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), + [1964] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(174), + [1967] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [1970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [1973] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [1976] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), + [1979] = {.count = 1, .reusable = true}, SHIFT(926), + [1981] = {.count = 1, .reusable = false}, SHIFT(656), + [1983] = {.count = 1, .reusable = true}, SHIFT(927), + [1985] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [1987] = {.count = 1, .reusable = true}, SHIFT(929), + [1989] = {.count = 1, .reusable = true}, SHIFT(930), + [1991] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [1993] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [1995] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [1997] = {.count = 1, .reusable = true}, SHIFT(931), + [1999] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2001] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2003] = {.count = 1, .reusable = false}, SHIFT(933), + [2005] = {.count = 1, .reusable = false}, SHIFT(934), + [2007] = {.count = 1, .reusable = true}, SHIFT(936), + [2009] = {.count = 1, .reusable = true}, SHIFT(937), + [2011] = {.count = 1, .reusable = false}, SHIFT(938), + [2013] = {.count = 1, .reusable = false}, SHIFT(936), + [2015] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2017] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2019] = {.count = 1, .reusable = true}, SHIFT(939), + [2021] = {.count = 1, .reusable = true}, SHIFT(940), + [2023] = {.count = 1, .reusable = true}, SHIFT(941), + [2025] = {.count = 1, .reusable = false}, SHIFT(942), + [2027] = {.count = 1, .reusable = false}, SHIFT(940), + [2029] = {.count = 1, .reusable = true}, SHIFT(953), + [2031] = {.count = 1, .reusable = true}, SHIFT(955), + [2033] = {.count = 1, .reusable = false}, SHIFT(957), + [2035] = {.count = 1, .reusable = false}, SHIFT(958), + [2037] = {.count = 1, .reusable = true}, SHIFT(959), + [2039] = {.count = 1, .reusable = true}, SHIFT(960), + [2041] = {.count = 1, .reusable = false}, SHIFT(962), + [2043] = {.count = 1, .reusable = true}, SHIFT(962), + [2045] = {.count = 1, .reusable = true}, SHIFT(961), + [2047] = {.count = 1, .reusable = true}, SHIFT(963), + [2049] = {.count = 1, .reusable = true}, SHIFT(964), + [2051] = {.count = 1, .reusable = false}, SHIFT(965), + [2053] = {.count = 1, .reusable = false}, SHIFT(964), + [2055] = {.count = 1, .reusable = true}, SHIFT(967), + [2057] = {.count = 1, .reusable = false}, SHIFT(969), + [2059] = {.count = 1, .reusable = true}, SHIFT(969), + [2061] = {.count = 1, .reusable = true}, SHIFT(968), + [2063] = {.count = 1, .reusable = true}, SHIFT(970), + [2065] = {.count = 1, .reusable = false}, SHIFT(972), + [2067] = {.count = 1, .reusable = true}, SHIFT(972), + [2069] = {.count = 1, .reusable = true}, SHIFT(971), + [2071] = {.count = 1, .reusable = false}, SHIFT(973), + [2073] = {.count = 1, .reusable = false}, SHIFT(974), + [2075] = {.count = 1, .reusable = true}, SHIFT(974), + [2077] = {.count = 1, .reusable = false}, SHIFT(977), + [2079] = {.count = 1, .reusable = true}, SHIFT(977), + [2081] = {.count = 1, .reusable = false}, SHIFT(980), + [2083] = {.count = 1, .reusable = false}, SHIFT(981), + [2085] = {.count = 1, .reusable = true}, SHIFT(981), + [2087] = {.count = 1, .reusable = true}, SHIFT(984), + [2089] = {.count = 1, .reusable = true}, SHIFT(985), + [2091] = {.count = 1, .reusable = false}, SHIFT(986), + [2093] = {.count = 1, .reusable = true}, SHIFT(987), + [2095] = {.count = 1, .reusable = true}, SHIFT(988), + [2097] = {.count = 1, .reusable = false}, SHIFT(989), + [2099] = {.count = 1, .reusable = true}, SHIFT(990), + [2101] = {.count = 1, .reusable = true}, SHIFT(991), + [2103] = {.count = 1, .reusable = true}, SHIFT(992), + [2105] = {.count = 1, .reusable = true}, SHIFT(993), + [2107] = {.count = 1, .reusable = true}, SHIFT(994), + [2109] = {.count = 1, .reusable = false}, SHIFT(990), + [2111] = {.count = 1, .reusable = true}, SHIFT(986), + [2113] = {.count = 1, .reusable = false}, SHIFT(996), + [2115] = {.count = 1, .reusable = true}, SHIFT(996), + [2117] = {.count = 1, .reusable = true}, SHIFT(997), + [2119] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [2121] = {.count = 1, .reusable = true}, SHIFT(998), + [2123] = {.count = 1, .reusable = false}, SHIFT(1000), + [2125] = {.count = 1, .reusable = false}, SHIFT(1001), + [2127] = {.count = 1, .reusable = true}, SHIFT(1002), + [2129] = {.count = 1, .reusable = true}, SHIFT(1003), + [2131] = {.count = 1, .reusable = false}, SHIFT(1005), + [2133] = {.count = 1, .reusable = true}, SHIFT(1005), + [2135] = {.count = 1, .reusable = true}, SHIFT(1004), + [2137] = {.count = 1, .reusable = true}, SHIFT(1006), + [2139] = {.count = 1, .reusable = true}, SHIFT(1007), + [2141] = {.count = 1, .reusable = false}, SHIFT(1008), + [2143] = {.count = 1, .reusable = false}, SHIFT(1007), + [2145] = {.count = 1, .reusable = true}, SHIFT(1010), + [2147] = {.count = 1, .reusable = false}, SHIFT(1012), + [2149] = {.count = 1, .reusable = true}, SHIFT(1012), + [2151] = {.count = 1, .reusable = true}, SHIFT(1011), + [2153] = {.count = 1, .reusable = true}, SHIFT(1013), + [2155] = {.count = 1, .reusable = false}, SHIFT(1015), + [2157] = {.count = 1, .reusable = true}, SHIFT(1015), + [2159] = {.count = 1, .reusable = true}, SHIFT(1014), + [2161] = {.count = 1, .reusable = false}, SHIFT(1016), + [2163] = {.count = 1, .reusable = false}, SHIFT(1017), + [2165] = {.count = 1, .reusable = true}, SHIFT(1017), + [2167] = {.count = 1, .reusable = false}, SHIFT(1020), + [2169] = {.count = 1, .reusable = true}, SHIFT(1020), + [2171] = {.count = 1, .reusable = false}, SHIFT(1023), + [2173] = {.count = 1, .reusable = false}, SHIFT(1024), + [2175] = {.count = 1, .reusable = true}, SHIFT(1024), + [2177] = {.count = 1, .reusable = false}, SHIFT(1029), + [2179] = {.count = 1, .reusable = false}, SHIFT(1031), + [2181] = {.count = 1, .reusable = false}, SHIFT(562), + [2183] = {.count = 1, .reusable = false}, SHIFT(44), + [2185] = {.count = 1, .reusable = false}, SHIFT(563), + [2187] = {.count = 1, .reusable = false}, SHIFT(47), + [2189] = {.count = 1, .reusable = false}, SHIFT(48), + [2191] = {.count = 1, .reusable = false}, SHIFT(49), + [2193] = {.count = 1, .reusable = false}, SHIFT(50), + [2195] = {.count = 1, .reusable = true}, SHIFT(1031), + [2197] = {.count = 1, .reusable = false}, SHIFT(1033), + [2199] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2201] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2203] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [2205] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [2207] = {.count = 1, .reusable = false}, SHIFT(1035), + [2209] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), + [2211] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), + [2213] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [2215] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [2217] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [2219] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2221] = {.count = 1, .reusable = true}, SHIFT(1040), + [2223] = {.count = 1, .reusable = false}, SHIFT(1040), + [2225] = {.count = 1, .reusable = true}, SHIFT(572), + [2227] = {.count = 1, .reusable = true}, SHIFT(573), + [2229] = {.count = 1, .reusable = false}, SHIFT(1045), + [2231] = {.count = 1, .reusable = true}, SHIFT(1046), + [2233] = {.count = 1, .reusable = true}, SHIFT(1047), + [2235] = {.count = 1, .reusable = false}, SHIFT(1047), + [2237] = {.count = 1, .reusable = false}, SHIFT(1051), + [2239] = {.count = 1, .reusable = true}, SHIFT(1051), + [2241] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(215), + [2244] = {.count = 1, .reusable = false}, SHIFT(1052), + [2246] = {.count = 1, .reusable = false}, SHIFT(1053), + [2248] = {.count = 1, .reusable = false}, SHIFT(1056), + [2250] = {.count = 1, .reusable = true}, SHIFT(1056), + [2252] = {.count = 1, .reusable = true}, SHIFT(1057), + [2254] = {.count = 1, .reusable = false}, SHIFT(1058), + [2256] = {.count = 1, .reusable = true}, SHIFT(1059), + [2258] = {.count = 1, .reusable = true}, SHIFT(1061), + [2260] = {.count = 1, .reusable = true}, SHIFT(1062), + [2262] = {.count = 1, .reusable = true}, SHIFT(1063), + [2264] = {.count = 1, .reusable = true}, SHIFT(1064), + [2266] = {.count = 1, .reusable = false}, SHIFT(1066), + [2268] = {.count = 1, .reusable = true}, SHIFT(1066), + [2270] = {.count = 1, .reusable = true}, SHIFT(1065), + [2272] = {.count = 1, .reusable = true}, SHIFT(1067), + [2274] = {.count = 1, .reusable = false}, SHIFT(1069), + [2276] = {.count = 1, .reusable = true}, SHIFT(1069), + [2278] = {.count = 1, .reusable = true}, SHIFT(1068), + [2280] = {.count = 1, .reusable = false}, SHIFT(1071), + [2282] = {.count = 1, .reusable = true}, SHIFT(1071), + [2284] = {.count = 1, .reusable = true}, SHIFT(1070), + [2286] = {.count = 1, .reusable = true}, SHIFT(1072), + [2288] = {.count = 1, .reusable = true}, SHIFT(1073), + [2290] = {.count = 1, .reusable = true}, SHIFT(1074), + [2292] = {.count = 1, .reusable = true}, SHIFT(1075), + [2294] = {.count = 1, .reusable = false}, SHIFT(1075), + [2296] = {.count = 1, .reusable = false}, SHIFT(1076), + [2298] = {.count = 1, .reusable = true}, SHIFT(1076), + [2300] = {.count = 1, .reusable = false}, SHIFT(1077), + [2302] = {.count = 1, .reusable = true}, SHIFT(1077), + [2304] = {.count = 1, .reusable = true}, SHIFT(1078), + [2306] = {.count = 1, .reusable = false}, SHIFT(1078), + [2308] = {.count = 1, .reusable = false}, SHIFT(1079), + [2310] = {.count = 1, .reusable = true}, SHIFT(1079), + [2312] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [2314] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [2316] = {.count = 1, .reusable = false}, SHIFT(1081), + [2318] = {.count = 1, .reusable = true}, SHIFT(1081), + [2320] = {.count = 1, .reusable = true}, SHIFT(1082), + [2322] = {.count = 1, .reusable = false}, SHIFT(1084), + [2324] = {.count = 1, .reusable = true}, SHIFT(1084), + [2326] = {.count = 1, .reusable = true}, SHIFT(1085), + [2328] = {.count = 1, .reusable = true}, SHIFT(1086), + [2330] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [2332] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [2334] = {.count = 1, .reusable = true}, SHIFT(1090), + [2336] = {.count = 1, .reusable = true}, SHIFT(1091), + [2338] = {.count = 1, .reusable = false}, SHIFT(1092), + [2340] = {.count = 1, .reusable = true}, SHIFT(1093), + [2342] = {.count = 1, .reusable = false}, SHIFT(1094), + [2344] = {.count = 1, .reusable = false}, SHIFT(1095), + [2346] = {.count = 1, .reusable = true}, SHIFT(1097), + [2348] = {.count = 1, .reusable = true}, SHIFT(1098), + [2350] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(249), + [2353] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(250), + [2356] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(251), + [2359] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(254), + [2362] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(255), + [2365] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), + [2367] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), + [2369] = {.count = 1, .reusable = true}, SHIFT(1102), + [2371] = {.count = 1, .reusable = true}, SHIFT(1103), + [2373] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(263), + [2376] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(265), + [2379] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(266), + [2382] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(264), + [2385] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(267), + [2388] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(268), + [2391] = {.count = 1, .reusable = true}, SHIFT(1105), + [2393] = {.count = 1, .reusable = true}, SHIFT(1107), + [2395] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2397] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2399] = {.count = 1, .reusable = false}, SHIFT(277), + [2401] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(281), + [2404] = {.count = 1, .reusable = false}, SHIFT(1110), + [2406] = {.count = 1, .reusable = true}, SHIFT(1111), + [2408] = {.count = 1, .reusable = false}, SHIFT(1112), + [2410] = {.count = 1, .reusable = true}, SHIFT(1113), + [2412] = {.count = 1, .reusable = true}, SHIFT(1115), + [2414] = {.count = 1, .reusable = true}, SHIFT(1116), + [2416] = {.count = 1, .reusable = true}, SHIFT(1117), + [2418] = {.count = 1, .reusable = true}, SHIFT(1118), + [2420] = {.count = 1, .reusable = false}, SHIFT(1120), + [2422] = {.count = 1, .reusable = true}, SHIFT(1120), + [2424] = {.count = 1, .reusable = true}, SHIFT(1119), + [2426] = {.count = 1, .reusable = true}, SHIFT(1121), + [2428] = {.count = 1, .reusable = false}, SHIFT(1123), + [2430] = {.count = 1, .reusable = true}, SHIFT(1123), + [2432] = {.count = 1, .reusable = true}, SHIFT(1122), + [2434] = {.count = 1, .reusable = false}, SHIFT(1125), + [2436] = {.count = 1, .reusable = true}, SHIFT(1125), + [2438] = {.count = 1, .reusable = true}, SHIFT(1124), + [2440] = {.count = 1, .reusable = true}, SHIFT(1126), + [2442] = {.count = 1, .reusable = true}, SHIFT(1127), + [2444] = {.count = 1, .reusable = true}, SHIFT(1128), + [2446] = {.count = 1, .reusable = true}, SHIFT(1129), + [2448] = {.count = 1, .reusable = false}, SHIFT(1129), + [2450] = {.count = 1, .reusable = false}, SHIFT(1130), + [2452] = {.count = 1, .reusable = true}, SHIFT(1130), + [2454] = {.count = 1, .reusable = false}, SHIFT(1131), + [2456] = {.count = 1, .reusable = true}, SHIFT(1131), + [2458] = {.count = 1, .reusable = true}, SHIFT(1132), + [2460] = {.count = 1, .reusable = false}, SHIFT(1132), + [2462] = {.count = 1, .reusable = false}, SHIFT(1133), + [2464] = {.count = 1, .reusable = true}, SHIFT(1133), + [2466] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [2468] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [2470] = {.count = 1, .reusable = false}, SHIFT(1134), + [2472] = {.count = 1, .reusable = true}, SHIFT(1134), + [2474] = {.count = 1, .reusable = true}, SHIFT(1135), + [2476] = {.count = 1, .reusable = true}, SHIFT(1136), + [2478] = {.count = 1, .reusable = false}, SHIFT(1137), + [2480] = {.count = 1, .reusable = true}, SHIFT(1138), + [2482] = {.count = 1, .reusable = true}, SHIFT(1139), + [2484] = {.count = 1, .reusable = true}, SHIFT(1140), + [2486] = {.count = 1, .reusable = true}, SHIFT(1141), + [2488] = {.count = 1, .reusable = true}, SHIFT(1142), + [2490] = {.count = 1, .reusable = true}, SHIFT(1144), + [2492] = {.count = 1, .reusable = true}, SHIFT(1145), + [2494] = {.count = 1, .reusable = true}, SHIFT(1146), + [2496] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), + [2498] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), + [2500] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(308), + [2503] = {.count = 1, .reusable = false}, SHIFT(1149), + [2505] = {.count = 1, .reusable = true}, SHIFT(1150), + [2507] = {.count = 1, .reusable = false}, SHIFT(1151), + [2509] = {.count = 1, .reusable = true}, SHIFT(1152), + [2511] = {.count = 1, .reusable = true}, SHIFT(1154), + [2513] = {.count = 1, .reusable = true}, SHIFT(1155), + [2515] = {.count = 1, .reusable = true}, SHIFT(1156), + [2517] = {.count = 1, .reusable = true}, SHIFT(1157), + [2519] = {.count = 1, .reusable = false}, SHIFT(1159), + [2521] = {.count = 1, .reusable = true}, SHIFT(1159), + [2523] = {.count = 1, .reusable = true}, SHIFT(1158), + [2525] = {.count = 1, .reusable = true}, SHIFT(1160), + [2527] = {.count = 1, .reusable = false}, SHIFT(1162), + [2529] = {.count = 1, .reusable = true}, SHIFT(1162), + [2531] = {.count = 1, .reusable = true}, SHIFT(1161), + [2533] = {.count = 1, .reusable = false}, SHIFT(1164), + [2535] = {.count = 1, .reusable = true}, SHIFT(1164), + [2537] = {.count = 1, .reusable = true}, SHIFT(1163), + [2539] = {.count = 1, .reusable = true}, SHIFT(1165), + [2541] = {.count = 1, .reusable = true}, SHIFT(1166), + [2543] = {.count = 1, .reusable = true}, SHIFT(1167), + [2545] = {.count = 1, .reusable = true}, SHIFT(1168), + [2547] = {.count = 1, .reusable = false}, SHIFT(1168), + [2549] = {.count = 1, .reusable = false}, SHIFT(1169), + [2551] = {.count = 1, .reusable = true}, SHIFT(1169), + [2553] = {.count = 1, .reusable = false}, SHIFT(1170), + [2555] = {.count = 1, .reusable = true}, SHIFT(1170), + [2557] = {.count = 1, .reusable = true}, SHIFT(1171), + [2559] = {.count = 1, .reusable = false}, SHIFT(1171), + [2561] = {.count = 1, .reusable = false}, SHIFT(1172), + [2563] = {.count = 1, .reusable = true}, SHIFT(1172), + [2565] = {.count = 1, .reusable = true}, SHIFT(1173), + [2567] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(333), + [2570] = {.count = 1, .reusable = false}, SHIFT(1175), + [2572] = {.count = 1, .reusable = true}, SHIFT(1176), + [2574] = {.count = 1, .reusable = false}, SHIFT(1177), + [2576] = {.count = 1, .reusable = true}, SHIFT(1178), + [2578] = {.count = 1, .reusable = true}, SHIFT(1180), + [2580] = {.count = 1, .reusable = true}, SHIFT(1181), + [2582] = {.count = 1, .reusable = true}, SHIFT(1182), + [2584] = {.count = 1, .reusable = true}, SHIFT(1183), + [2586] = {.count = 1, .reusable = false}, SHIFT(1185), + [2588] = {.count = 1, .reusable = true}, SHIFT(1185), + [2590] = {.count = 1, .reusable = true}, SHIFT(1184), + [2592] = {.count = 1, .reusable = true}, SHIFT(1186), + [2594] = {.count = 1, .reusable = false}, SHIFT(1188), + [2596] = {.count = 1, .reusable = true}, SHIFT(1188), + [2598] = {.count = 1, .reusable = true}, SHIFT(1187), + [2600] = {.count = 1, .reusable = false}, SHIFT(1190), + [2602] = {.count = 1, .reusable = true}, SHIFT(1190), + [2604] = {.count = 1, .reusable = true}, SHIFT(1189), + [2606] = {.count = 1, .reusable = true}, SHIFT(1191), + [2608] = {.count = 1, .reusable = true}, SHIFT(1192), + [2610] = {.count = 1, .reusable = true}, SHIFT(1193), + [2612] = {.count = 1, .reusable = true}, SHIFT(1194), + [2614] = {.count = 1, .reusable = false}, SHIFT(1194), + [2616] = {.count = 1, .reusable = false}, SHIFT(1195), + [2618] = {.count = 1, .reusable = true}, SHIFT(1195), + [2620] = {.count = 1, .reusable = false}, SHIFT(1196), + [2622] = {.count = 1, .reusable = true}, SHIFT(1196), + [2624] = {.count = 1, .reusable = true}, SHIFT(1197), + [2626] = {.count = 1, .reusable = false}, SHIFT(1197), + [2628] = {.count = 1, .reusable = false}, SHIFT(1198), + [2630] = {.count = 1, .reusable = true}, SHIFT(1198), + [2632] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(356), + [2635] = {.count = 1, .reusable = false}, SHIFT(1199), + [2637] = {.count = 1, .reusable = true}, SHIFT(1200), + [2639] = {.count = 1, .reusable = false}, SHIFT(1201), + [2641] = {.count = 1, .reusable = true}, SHIFT(1202), + [2643] = {.count = 1, .reusable = true}, SHIFT(1204), + [2645] = {.count = 1, .reusable = true}, SHIFT(1205), + [2647] = {.count = 1, .reusable = true}, SHIFT(1206), + [2649] = {.count = 1, .reusable = true}, SHIFT(1207), + [2651] = {.count = 1, .reusable = false}, SHIFT(1209), + [2653] = {.count = 1, .reusable = true}, SHIFT(1209), + [2655] = {.count = 1, .reusable = true}, SHIFT(1208), + [2657] = {.count = 1, .reusable = true}, SHIFT(1210), + [2659] = {.count = 1, .reusable = false}, SHIFT(1212), + [2661] = {.count = 1, .reusable = true}, SHIFT(1212), + [2663] = {.count = 1, .reusable = true}, SHIFT(1211), + [2665] = {.count = 1, .reusable = false}, SHIFT(1214), + [2667] = {.count = 1, .reusable = true}, SHIFT(1214), + [2669] = {.count = 1, .reusable = true}, SHIFT(1213), + [2671] = {.count = 1, .reusable = true}, SHIFT(1215), + [2673] = {.count = 1, .reusable = true}, SHIFT(1216), + [2675] = {.count = 1, .reusable = true}, SHIFT(1217), + [2677] = {.count = 1, .reusable = true}, SHIFT(1218), + [2679] = {.count = 1, .reusable = false}, SHIFT(1218), + [2681] = {.count = 1, .reusable = false}, SHIFT(1219), + [2683] = {.count = 1, .reusable = true}, SHIFT(1219), + [2685] = {.count = 1, .reusable = false}, SHIFT(1220), + [2687] = {.count = 1, .reusable = true}, SHIFT(1220), + [2689] = {.count = 1, .reusable = true}, SHIFT(1221), + [2691] = {.count = 1, .reusable = false}, SHIFT(1221), + [2693] = {.count = 1, .reusable = false}, SHIFT(1222), + [2695] = {.count = 1, .reusable = true}, SHIFT(1222), + [2697] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(379), + [2700] = {.count = 1, .reusable = false}, SHIFT(1223), + [2702] = {.count = 1, .reusable = true}, SHIFT(1224), + [2704] = {.count = 1, .reusable = false}, SHIFT(1225), + [2706] = {.count = 1, .reusable = true}, SHIFT(1226), + [2708] = {.count = 1, .reusable = true}, SHIFT(1228), + [2710] = {.count = 1, .reusable = true}, SHIFT(1229), + [2712] = {.count = 1, .reusable = true}, SHIFT(1230), + [2714] = {.count = 1, .reusable = true}, SHIFT(1231), + [2716] = {.count = 1, .reusable = false}, SHIFT(1233), + [2718] = {.count = 1, .reusable = true}, SHIFT(1233), + [2720] = {.count = 1, .reusable = true}, SHIFT(1232), + [2722] = {.count = 1, .reusable = true}, SHIFT(1234), + [2724] = {.count = 1, .reusable = false}, SHIFT(1236), + [2726] = {.count = 1, .reusable = true}, SHIFT(1236), + [2728] = {.count = 1, .reusable = true}, SHIFT(1235), + [2730] = {.count = 1, .reusable = false}, SHIFT(1238), + [2732] = {.count = 1, .reusable = true}, SHIFT(1238), + [2734] = {.count = 1, .reusable = true}, SHIFT(1237), + [2736] = {.count = 1, .reusable = true}, SHIFT(1239), + [2738] = {.count = 1, .reusable = true}, SHIFT(1240), + [2740] = {.count = 1, .reusable = true}, SHIFT(1241), + [2742] = {.count = 1, .reusable = true}, SHIFT(1242), + [2744] = {.count = 1, .reusable = false}, SHIFT(1242), + [2746] = {.count = 1, .reusable = false}, SHIFT(1243), + [2748] = {.count = 1, .reusable = true}, SHIFT(1243), + [2750] = {.count = 1, .reusable = false}, SHIFT(1244), + [2752] = {.count = 1, .reusable = true}, SHIFT(1244), + [2754] = {.count = 1, .reusable = true}, SHIFT(1245), + [2756] = {.count = 1, .reusable = false}, SHIFT(1245), + [2758] = {.count = 1, .reusable = false}, SHIFT(1246), + [2760] = {.count = 1, .reusable = true}, SHIFT(1246), + [2762] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [2764] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), + [2766] = {.count = 1, .reusable = true}, SHIFT(1247), + [2768] = {.count = 1, .reusable = false}, SHIFT(1248), + [2770] = {.count = 1, .reusable = true}, SHIFT(1249), + [2772] = {.count = 1, .reusable = true}, SHIFT(1251), + [2774] = {.count = 1, .reusable = true}, SHIFT(1252), + [2776] = {.count = 1, .reusable = true}, SHIFT(1253), + [2778] = {.count = 1, .reusable = true}, SHIFT(1254), + [2780] = {.count = 1, .reusable = false}, SHIFT(1256), + [2782] = {.count = 1, .reusable = true}, SHIFT(1256), + [2784] = {.count = 1, .reusable = true}, SHIFT(1255), + [2786] = {.count = 1, .reusable = true}, SHIFT(1257), + [2788] = {.count = 1, .reusable = false}, SHIFT(1259), + [2790] = {.count = 1, .reusable = true}, SHIFT(1259), + [2792] = {.count = 1, .reusable = true}, SHIFT(1258), + [2794] = {.count = 1, .reusable = false}, SHIFT(1261), + [2796] = {.count = 1, .reusable = true}, SHIFT(1261), + [2798] = {.count = 1, .reusable = true}, SHIFT(1260), + [2800] = {.count = 1, .reusable = true}, SHIFT(1262), + [2802] = {.count = 1, .reusable = true}, SHIFT(1263), + [2804] = {.count = 1, .reusable = true}, SHIFT(1264), + [2806] = {.count = 1, .reusable = true}, SHIFT(1265), + [2808] = {.count = 1, .reusable = false}, SHIFT(1265), + [2810] = {.count = 1, .reusable = false}, SHIFT(1266), + [2812] = {.count = 1, .reusable = true}, SHIFT(1266), + [2814] = {.count = 1, .reusable = false}, SHIFT(1267), + [2816] = {.count = 1, .reusable = true}, SHIFT(1267), + [2818] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [2820] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [2822] = {.count = 1, .reusable = true}, SHIFT(1268), + [2824] = {.count = 1, .reusable = true}, SHIFT(1269), + [2826] = {.count = 1, .reusable = true}, SHIFT(1270), + [2828] = {.count = 1, .reusable = true}, SHIFT(1271), + [2830] = {.count = 1, .reusable = true}, SHIFT(1272), + [2832] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [2834] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [2836] = {.count = 1, .reusable = true}, SHIFT(1273), + [2838] = {.count = 1, .reusable = true}, SHIFT(1274), + [2840] = {.count = 1, .reusable = false}, SHIFT(1276), + [2842] = {.count = 1, .reusable = false}, SHIFT(1277), + [2844] = {.count = 1, .reusable = true}, SHIFT(1279), + [2846] = {.count = 1, .reusable = true}, SHIFT(1280), + [2848] = {.count = 1, .reusable = false}, SHIFT(1281), + [2850] = {.count = 1, .reusable = false}, SHIFT(1279), + [2852] = {.count = 1, .reusable = true}, SHIFT(1282), + [2854] = {.count = 1, .reusable = true}, SHIFT(1283), + [2856] = {.count = 1, .reusable = true}, SHIFT(1284), + [2858] = {.count = 1, .reusable = true}, SHIFT(1285), + [2860] = {.count = 1, .reusable = false}, SHIFT(1286), + [2862] = {.count = 1, .reusable = false}, SHIFT(1284), + [2864] = {.count = 1, .reusable = true}, SHIFT(1297), + [2866] = {.count = 1, .reusable = false}, SHIFT(1299), + [2868] = {.count = 1, .reusable = false}, SHIFT(1300), + [2870] = {.count = 1, .reusable = true}, SHIFT(1301), + [2872] = {.count = 1, .reusable = true}, SHIFT(1302), + [2874] = {.count = 1, .reusable = false}, SHIFT(1304), + [2876] = {.count = 1, .reusable = true}, SHIFT(1304), + [2878] = {.count = 1, .reusable = true}, SHIFT(1303), + [2880] = {.count = 1, .reusable = true}, SHIFT(1305), + [2882] = {.count = 1, .reusable = true}, SHIFT(1306), + [2884] = {.count = 1, .reusable = false}, SHIFT(1307), + [2886] = {.count = 1, .reusable = false}, SHIFT(1306), + [2888] = {.count = 1, .reusable = true}, SHIFT(1309), + [2890] = {.count = 1, .reusable = false}, SHIFT(1311), + [2892] = {.count = 1, .reusable = true}, SHIFT(1311), + [2894] = {.count = 1, .reusable = true}, SHIFT(1310), + [2896] = {.count = 1, .reusable = true}, SHIFT(1312), + [2898] = {.count = 1, .reusable = false}, SHIFT(1314), + [2900] = {.count = 1, .reusable = true}, SHIFT(1314), + [2902] = {.count = 1, .reusable = true}, SHIFT(1313), + [2904] = {.count = 1, .reusable = true}, SHIFT(1315), + [2906] = {.count = 1, .reusable = false}, SHIFT(1316), + [2908] = {.count = 1, .reusable = true}, SHIFT(1316), + [2910] = {.count = 1, .reusable = false}, SHIFT(1317), + [2912] = {.count = 1, .reusable = false}, SHIFT(1318), + [2914] = {.count = 1, .reusable = true}, SHIFT(1318), + [2916] = {.count = 1, .reusable = false}, SHIFT(1321), + [2918] = {.count = 1, .reusable = true}, SHIFT(1321), + [2920] = {.count = 1, .reusable = false}, SHIFT(1324), + [2922] = {.count = 1, .reusable = false}, SHIFT(1325), + [2924] = {.count = 1, .reusable = true}, SHIFT(1325), + [2926] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2928] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2930] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [2932] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(876), + [2935] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(424), + [2938] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(425), + [2941] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(426), + [2944] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(427), + [2947] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(876), + [2950] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(428), + [2953] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(430), + [2956] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), + [2959] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(432), + [2962] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(427), + [2965] = {.count = 1, .reusable = false}, SHIFT(1328), + [2967] = {.count = 1, .reusable = true}, SHIFT(1329), + [2969] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2971] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2973] = {.count = 1, .reusable = true}, SHIFT(1331), + [2975] = {.count = 1, .reusable = true}, SHIFT(1332), + [2977] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2979] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2981] = {.count = 1, .reusable = true}, SHIFT(1333), + [2983] = {.count = 1, .reusable = true}, SHIFT(1334), + [2985] = {.count = 1, .reusable = true}, SHIFT(1335), + [2987] = {.count = 1, .reusable = true}, SHIFT(1336), + [2989] = {.count = 1, .reusable = false}, SHIFT(1337), + [2991] = {.count = 1, .reusable = true}, SHIFT(1337), + [2993] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2995] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2997] = {.count = 1, .reusable = true}, SHIFT(1338), + [2999] = {.count = 1, .reusable = false}, SHIFT(1339), + [3001] = {.count = 1, .reusable = true}, SHIFT(1339), + [3003] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 4), + [3005] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 4), + [3007] = {.count = 1, .reusable = true}, SHIFT(1340), + [3009] = {.count = 1, .reusable = true}, SHIFT(1342), + [3011] = {.count = 1, .reusable = true}, SHIFT(1343), + [3013] = {.count = 1, .reusable = false}, SHIFT(1344), + [3015] = {.count = 1, .reusable = true}, SHIFT(1345), + [3017] = {.count = 1, .reusable = false}, SHIFT(1346), + [3019] = {.count = 1, .reusable = false}, SHIFT(1347), + [3021] = {.count = 1, .reusable = true}, SHIFT(1350), + [3023] = {.count = 1, .reusable = true}, SHIFT(1351), + [3025] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(458), + [3028] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(459), + [3031] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(460), + [3034] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 4), + [3036] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 4), + [3038] = {.count = 1, .reusable = true}, SHIFT(1354), + [3040] = {.count = 1, .reusable = true}, SHIFT(1356), + [3042] = {.count = 1, .reusable = true}, SHIFT(1357), + [3044] = {.count = 1, .reusable = false}, SHIFT(1359), + [3046] = {.count = 1, .reusable = true}, SHIFT(1359), + [3048] = {.count = 1, .reusable = true}, SHIFT(1358), + [3050] = {.count = 1, .reusable = true}, SHIFT(1360), + [3052] = {.count = 1, .reusable = true}, SHIFT(1361), + [3054] = {.count = 1, .reusable = false}, SHIFT(1362), + [3056] = {.count = 1, .reusable = false}, SHIFT(1361), + [3058] = {.count = 1, .reusable = true}, SHIFT(1364), + [3060] = {.count = 1, .reusable = false}, SHIFT(1366), + [3062] = {.count = 1, .reusable = true}, SHIFT(1366), + [3064] = {.count = 1, .reusable = true}, SHIFT(1365), + [3066] = {.count = 1, .reusable = true}, SHIFT(1367), + [3068] = {.count = 1, .reusable = false}, SHIFT(1369), + [3070] = {.count = 1, .reusable = true}, SHIFT(1369), + [3072] = {.count = 1, .reusable = true}, SHIFT(1368), + [3074] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [3076] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [3078] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(919), + [3081] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [3083] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(476), + [3086] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(477), + [3089] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), + [3091] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), + [3093] = {.count = 1, .reusable = true}, SHIFT(1372), + [3095] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [3097] = {.count = 1, .reusable = true}, SHIFT(1373), + [3099] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [3101] = {.count = 1, .reusable = true}, SHIFT(1374), + [3103] = {.count = 1, .reusable = false}, SHIFT(1376), + [3105] = {.count = 1, .reusable = false}, SHIFT(1377), + [3107] = {.count = 1, .reusable = true}, SHIFT(1378), + [3109] = {.count = 1, .reusable = true}, SHIFT(1379), + [3111] = {.count = 1, .reusable = false}, SHIFT(1381), + [3113] = {.count = 1, .reusable = true}, SHIFT(1381), + [3115] = {.count = 1, .reusable = true}, SHIFT(1380), + [3117] = {.count = 1, .reusable = true}, SHIFT(1382), + [3119] = {.count = 1, .reusable = true}, SHIFT(1383), + [3121] = {.count = 1, .reusable = false}, SHIFT(1384), + [3123] = {.count = 1, .reusable = false}, SHIFT(1383), + [3125] = {.count = 1, .reusable = true}, SHIFT(1386), + [3127] = {.count = 1, .reusable = false}, SHIFT(1388), + [3129] = {.count = 1, .reusable = true}, SHIFT(1388), + [3131] = {.count = 1, .reusable = true}, SHIFT(1387), + [3133] = {.count = 1, .reusable = true}, SHIFT(1389), + [3135] = {.count = 1, .reusable = false}, SHIFT(1391), + [3137] = {.count = 1, .reusable = true}, SHIFT(1391), + [3139] = {.count = 1, .reusable = true}, SHIFT(1390), + [3141] = {.count = 1, .reusable = false}, SHIFT(1392), + [3143] = {.count = 1, .reusable = false}, SHIFT(1393), + [3145] = {.count = 1, .reusable = true}, SHIFT(1393), + [3147] = {.count = 1, .reusable = false}, SHIFT(1396), + [3149] = {.count = 1, .reusable = true}, SHIFT(1396), + [3151] = {.count = 1, .reusable = false}, SHIFT(1399), + [3153] = {.count = 1, .reusable = false}, SHIFT(1400), + [3155] = {.count = 1, .reusable = true}, SHIFT(1400), + [3157] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [3159] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [3161] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3163] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(502), + [3166] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(503), + [3169] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(504), + [3172] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(505), + [3175] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(506), + [3178] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(507), + [3181] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(508), + [3184] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(509), + [3187] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(511), + [3190] = {.count = 1, .reusable = false}, SHIFT(1403), + [3192] = {.count = 1, .reusable = true}, SHIFT(1404), + [3194] = {.count = 1, .reusable = false}, SHIFT(1405), + [3196] = {.count = 1, .reusable = true}, SHIFT(1406), + [3198] = {.count = 1, .reusable = true}, SHIFT(1408), + [3200] = {.count = 1, .reusable = true}, SHIFT(1409), + [3202] = {.count = 1, .reusable = true}, SHIFT(1410), + [3204] = {.count = 1, .reusable = true}, SHIFT(1411), + [3206] = {.count = 1, .reusable = false}, SHIFT(1413), + [3208] = {.count = 1, .reusable = true}, SHIFT(1413), + [3210] = {.count = 1, .reusable = true}, SHIFT(1412), + [3212] = {.count = 1, .reusable = true}, SHIFT(1414), + [3214] = {.count = 1, .reusable = false}, SHIFT(1416), + [3216] = {.count = 1, .reusable = true}, SHIFT(1416), + [3218] = {.count = 1, .reusable = true}, SHIFT(1415), + [3220] = {.count = 1, .reusable = false}, SHIFT(1418), + [3222] = {.count = 1, .reusable = true}, SHIFT(1418), + [3224] = {.count = 1, .reusable = true}, SHIFT(1417), + [3226] = {.count = 1, .reusable = true}, SHIFT(1419), + [3228] = {.count = 1, .reusable = true}, SHIFT(1420), + [3230] = {.count = 1, .reusable = true}, SHIFT(1421), + [3232] = {.count = 1, .reusable = true}, SHIFT(1422), + [3234] = {.count = 1, .reusable = false}, SHIFT(1422), + [3236] = {.count = 1, .reusable = false}, SHIFT(1423), + [3238] = {.count = 1, .reusable = true}, SHIFT(1423), + [3240] = {.count = 1, .reusable = false}, SHIFT(1424), + [3242] = {.count = 1, .reusable = true}, SHIFT(1424), + [3244] = {.count = 1, .reusable = true}, SHIFT(1425), + [3246] = {.count = 1, .reusable = false}, SHIFT(1425), + [3248] = {.count = 1, .reusable = false}, SHIFT(1426), + [3250] = {.count = 1, .reusable = true}, SHIFT(1426), + [3252] = {.count = 1, .reusable = true}, SHIFT(1427), + [3254] = {.count = 1, .reusable = true}, SHIFT(1431), + [3256] = {.count = 1, .reusable = false}, SHIFT(1433), + [3258] = {.count = 1, .reusable = false}, SHIFT(1434), + [3260] = {.count = 1, .reusable = true}, SHIFT(1436), + [3262] = {.count = 1, .reusable = true}, SHIFT(1437), + [3264] = {.count = 1, .reusable = false}, SHIFT(1438), + [3266] = {.count = 1, .reusable = false}, SHIFT(1436), + [3268] = {.count = 1, .reusable = true}, SHIFT(1439), + [3270] = {.count = 1, .reusable = true}, SHIFT(1440), + [3272] = {.count = 1, .reusable = true}, SHIFT(1441), + [3274] = {.count = 1, .reusable = false}, SHIFT(1442), + [3276] = {.count = 1, .reusable = false}, SHIFT(1440), + [3278] = {.count = 1, .reusable = true}, SHIFT(1453), + [3280] = {.count = 1, .reusable = true}, SHIFT(1454), + [3282] = {.count = 1, .reusable = true}, SHIFT(1455), + [3284] = {.count = 1, .reusable = false}, SHIFT(1454), + [3286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(537), + [3289] = {.count = 1, .reusable = false}, SHIFT(1457), + [3291] = {.count = 1, .reusable = true}, SHIFT(1458), + [3293] = {.count = 1, .reusable = false}, SHIFT(1459), + [3295] = {.count = 1, .reusable = true}, SHIFT(1460), + [3297] = {.count = 1, .reusable = true}, SHIFT(1462), + [3299] = {.count = 1, .reusable = true}, SHIFT(1463), + [3301] = {.count = 1, .reusable = true}, SHIFT(1464), + [3303] = {.count = 1, .reusable = true}, SHIFT(1465), + [3305] = {.count = 1, .reusable = false}, SHIFT(1467), + [3307] = {.count = 1, .reusable = true}, SHIFT(1467), + [3309] = {.count = 1, .reusable = true}, SHIFT(1466), + [3311] = {.count = 1, .reusable = true}, SHIFT(1468), + [3313] = {.count = 1, .reusable = false}, SHIFT(1470), + [3315] = {.count = 1, .reusable = true}, SHIFT(1470), + [3317] = {.count = 1, .reusable = true}, SHIFT(1469), + [3319] = {.count = 1, .reusable = false}, SHIFT(1472), + [3321] = {.count = 1, .reusable = true}, SHIFT(1472), + [3323] = {.count = 1, .reusable = true}, SHIFT(1471), + [3325] = {.count = 1, .reusable = true}, SHIFT(1473), + [3327] = {.count = 1, .reusable = true}, SHIFT(1474), + [3329] = {.count = 1, .reusable = true}, SHIFT(1475), + [3331] = {.count = 1, .reusable = true}, SHIFT(1476), + [3333] = {.count = 1, .reusable = false}, SHIFT(1476), + [3335] = {.count = 1, .reusable = false}, SHIFT(1477), + [3337] = {.count = 1, .reusable = true}, SHIFT(1477), + [3339] = {.count = 1, .reusable = false}, SHIFT(1478), + [3341] = {.count = 1, .reusable = true}, SHIFT(1478), + [3343] = {.count = 1, .reusable = true}, SHIFT(1479), + [3345] = {.count = 1, .reusable = false}, SHIFT(1479), + [3347] = {.count = 1, .reusable = false}, SHIFT(1480), + [3349] = {.count = 1, .reusable = true}, SHIFT(1480), + [3351] = {.count = 1, .reusable = false}, SHIFT(1481), + [3353] = {.count = 1, .reusable = true}, SHIFT(1481), + [3355] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3357] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(562), + [3360] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(44), + [3363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(45), + [3366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(563), + [3369] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(47), + [3372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(48), + [3375] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(49), + [3378] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(50), + [3381] = {.count = 1, .reusable = false}, SHIFT(1484), + [3383] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [3385] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [3387] = {.count = 1, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), + [3389] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), + [3391] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), + [3393] = {.count = 1, .reusable = true}, SHIFT(1485), + [3395] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [3397] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3399] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3401] = {.count = 1, .reusable = true}, SHIFT(1487), + [3403] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3405] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(572), + [3408] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3410] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3412] = {.count = 1, .reusable = true}, SHIFT(1489), + [3414] = {.count = 1, .reusable = true}, SHIFT(1490), + [3416] = {.count = 1, .reusable = true}, SHIFT(1493), + [3418] = {.count = 1, .reusable = true}, SHIFT(1495), + [3420] = {.count = 1, .reusable = false}, SHIFT(1498), + [3422] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [3424] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [3426] = {.count = 1, .reusable = true}, SHIFT(1500), + [3428] = {.count = 1, .reusable = false}, SHIFT(1502), + [3430] = {.count = 1, .reusable = true}, SHIFT(1504), + [3432] = {.count = 1, .reusable = true}, SHIFT(1505), + [3434] = {.count = 1, .reusable = true}, SHIFT(1506), + [3436] = {.count = 1, .reusable = false}, SHIFT(1507), + [3438] = {.count = 1, .reusable = true}, SHIFT(1507), + [3440] = {.count = 1, .reusable = false}, SHIFT(1508), + [3442] = {.count = 1, .reusable = true}, SHIFT(1509), + [3444] = {.count = 1, .reusable = true}, SHIFT(1511), + [3446] = {.count = 1, .reusable = true}, SHIFT(1512), + [3448] = {.count = 1, .reusable = true}, SHIFT(1513), + [3450] = {.count = 1, .reusable = true}, SHIFT(1514), + [3452] = {.count = 1, .reusable = true}, SHIFT(1515), + [3454] = {.count = 1, .reusable = true}, SHIFT(1516), + [3456] = {.count = 1, .reusable = false}, SHIFT(1517), + [3458] = {.count = 1, .reusable = true}, SHIFT(1517), + [3460] = {.count = 1, .reusable = true}, SHIFT(1518), + [3462] = {.count = 1, .reusable = false}, SHIFT(1519), + [3464] = {.count = 1, .reusable = true}, SHIFT(1519), + [3466] = {.count = 1, .reusable = true}, SHIFT(1520), + [3468] = {.count = 1, .reusable = true}, SHIFT(1521), + [3470] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [3472] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [3474] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [3476] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [3478] = {.count = 1, .reusable = true}, SHIFT(1523), + [3480] = {.count = 1, .reusable = true}, SHIFT(1524), + [3482] = {.count = 1, .reusable = false}, SHIFT(1529), + [3484] = {.count = 1, .reusable = true}, SHIFT(1529), + [3486] = {.count = 1, .reusable = true}, SHIFT(1530), + [3488] = {.count = 1, .reusable = true}, SHIFT(1531), + [3490] = {.count = 1, .reusable = false}, SHIFT(1532), + [3492] = {.count = 1, .reusable = true}, SHIFT(1532), + [3494] = {.count = 1, .reusable = true}, SHIFT(1533), + [3496] = {.count = 1, .reusable = true}, SHIFT(1534), + [3498] = {.count = 1, .reusable = true}, SHIFT(1535), + [3500] = {.count = 1, .reusable = true}, SHIFT(1536), + [3502] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), + [3504] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), + [3506] = {.count = 1, .reusable = true}, SHIFT(1539), + [3508] = {.count = 1, .reusable = true}, SHIFT(1540), + [3510] = {.count = 1, .reusable = true}, SHIFT(1541), + [3512] = {.count = 1, .reusable = true}, SHIFT(1542), + [3514] = {.count = 1, .reusable = false}, SHIFT(1543), + [3516] = {.count = 1, .reusable = true}, SHIFT(1543), + [3518] = {.count = 1, .reusable = false}, SHIFT(1544), + [3520] = {.count = 1, .reusable = true}, SHIFT(1545), + [3522] = {.count = 1, .reusable = true}, SHIFT(1547), + [3524] = {.count = 1, .reusable = true}, SHIFT(1548), + [3526] = {.count = 1, .reusable = true}, SHIFT(1549), + [3528] = {.count = 1, .reusable = true}, SHIFT(1550), + [3530] = {.count = 1, .reusable = true}, SHIFT(1551), + [3532] = {.count = 1, .reusable = true}, SHIFT(1552), + [3534] = {.count = 1, .reusable = false}, SHIFT(1553), + [3536] = {.count = 1, .reusable = true}, SHIFT(1553), + [3538] = {.count = 1, .reusable = true}, SHIFT(1554), + [3540] = {.count = 1, .reusable = false}, SHIFT(1555), + [3542] = {.count = 1, .reusable = true}, SHIFT(1555), + [3544] = {.count = 1, .reusable = true}, SHIFT(1556), + [3546] = {.count = 1, .reusable = true}, SHIFT(1557), + [3548] = {.count = 1, .reusable = true}, SHIFT(1558), + [3550] = {.count = 1, .reusable = true}, SHIFT(1559), + [3552] = {.count = 1, .reusable = true}, SHIFT(1561), + [3554] = {.count = 1, .reusable = false}, SHIFT(1563), + [3556] = {.count = 1, .reusable = false}, SHIFT(1564), + [3558] = {.count = 1, .reusable = true}, SHIFT(1566), + [3560] = {.count = 1, .reusable = true}, SHIFT(1567), + [3562] = {.count = 1, .reusable = false}, SHIFT(1568), + [3564] = {.count = 1, .reusable = false}, SHIFT(1566), + [3566] = {.count = 1, .reusable = true}, SHIFT(1569), + [3568] = {.count = 1, .reusable = true}, SHIFT(1570), + [3570] = {.count = 1, .reusable = true}, SHIFT(1571), + [3572] = {.count = 1, .reusable = false}, SHIFT(1572), + [3574] = {.count = 1, .reusable = false}, SHIFT(1570), + [3576] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(686), + [3579] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(687), + [3582] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(688), + [3585] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(689), + [3588] = {.count = 1, .reusable = true}, SHIFT(1583), + [3590] = {.count = 1, .reusable = true}, SHIFT(1584), + [3592] = {.count = 1, .reusable = true}, SHIFT(1585), + [3594] = {.count = 1, .reusable = false}, SHIFT(1586), + [3596] = {.count = 1, .reusable = true}, SHIFT(1586), + [3598] = {.count = 1, .reusable = false}, SHIFT(1587), + [3600] = {.count = 1, .reusable = true}, SHIFT(1588), + [3602] = {.count = 1, .reusable = true}, SHIFT(1590), + [3604] = {.count = 1, .reusable = true}, SHIFT(1591), + [3606] = {.count = 1, .reusable = true}, SHIFT(1592), + [3608] = {.count = 1, .reusable = true}, SHIFT(1593), + [3610] = {.count = 1, .reusable = true}, SHIFT(1594), + [3612] = {.count = 1, .reusable = true}, SHIFT(1595), + [3614] = {.count = 1, .reusable = false}, SHIFT(1596), + [3616] = {.count = 1, .reusable = true}, SHIFT(1596), + [3618] = {.count = 1, .reusable = true}, SHIFT(1597), + [3620] = {.count = 1, .reusable = false}, SHIFT(1598), + [3622] = {.count = 1, .reusable = true}, SHIFT(1598), + [3624] = {.count = 1, .reusable = true}, SHIFT(1599), + [3626] = {.count = 1, .reusable = true}, SHIFT(1600), + [3628] = {.count = 1, .reusable = true}, SHIFT(1601), + [3630] = {.count = 1, .reusable = true}, SHIFT(1602), + [3632] = {.count = 1, .reusable = true}, SHIFT(1603), + [3634] = {.count = 1, .reusable = true}, SHIFT(1604), + [3636] = {.count = 1, .reusable = false}, SHIFT(1605), + [3638] = {.count = 1, .reusable = true}, SHIFT(1605), + [3640] = {.count = 1, .reusable = false}, SHIFT(1606), + [3642] = {.count = 1, .reusable = true}, SHIFT(1607), + [3644] = {.count = 1, .reusable = true}, SHIFT(1609), + [3646] = {.count = 1, .reusable = true}, SHIFT(1610), + [3648] = {.count = 1, .reusable = true}, SHIFT(1611), + [3650] = {.count = 1, .reusable = true}, SHIFT(1612), + [3652] = {.count = 1, .reusable = true}, SHIFT(1613), + [3654] = {.count = 1, .reusable = true}, SHIFT(1614), + [3656] = {.count = 1, .reusable = false}, SHIFT(1615), + [3658] = {.count = 1, .reusable = true}, SHIFT(1615), + [3660] = {.count = 1, .reusable = true}, SHIFT(1616), + [3662] = {.count = 1, .reusable = false}, SHIFT(1617), + [3664] = {.count = 1, .reusable = true}, SHIFT(1617), + [3666] = {.count = 1, .reusable = true}, SHIFT(1618), + [3668] = {.count = 1, .reusable = true}, SHIFT(1619), + [3670] = {.count = 1, .reusable = true}, SHIFT(1620), + [3672] = {.count = 1, .reusable = true}, SHIFT(1621), + [3674] = {.count = 1, .reusable = true}, SHIFT(1622), + [3676] = {.count = 1, .reusable = false}, SHIFT(1623), + [3678] = {.count = 1, .reusable = true}, SHIFT(1623), + [3680] = {.count = 1, .reusable = false}, SHIFT(1624), + [3682] = {.count = 1, .reusable = true}, SHIFT(1625), + [3684] = {.count = 1, .reusable = true}, SHIFT(1627), + [3686] = {.count = 1, .reusable = true}, SHIFT(1628), + [3688] = {.count = 1, .reusable = true}, SHIFT(1629), + [3690] = {.count = 1, .reusable = true}, SHIFT(1630), + [3692] = {.count = 1, .reusable = true}, SHIFT(1631), + [3694] = {.count = 1, .reusable = true}, SHIFT(1632), + [3696] = {.count = 1, .reusable = false}, SHIFT(1633), + [3698] = {.count = 1, .reusable = true}, SHIFT(1633), + [3700] = {.count = 1, .reusable = true}, SHIFT(1634), + [3702] = {.count = 1, .reusable = false}, SHIFT(1635), + [3704] = {.count = 1, .reusable = true}, SHIFT(1635), + [3706] = {.count = 1, .reusable = true}, SHIFT(1636), + [3708] = {.count = 1, .reusable = true}, SHIFT(1637), + [3710] = {.count = 1, .reusable = true}, SHIFT(1638), + [3712] = {.count = 1, .reusable = true}, SHIFT(1639), + [3714] = {.count = 1, .reusable = true}, SHIFT(1640), + [3716] = {.count = 1, .reusable = false}, SHIFT(1641), + [3718] = {.count = 1, .reusable = true}, SHIFT(1641), + [3720] = {.count = 1, .reusable = false}, SHIFT(1642), + [3722] = {.count = 1, .reusable = true}, SHIFT(1643), + [3724] = {.count = 1, .reusable = true}, SHIFT(1645), + [3726] = {.count = 1, .reusable = true}, SHIFT(1646), + [3728] = {.count = 1, .reusable = true}, SHIFT(1647), + [3730] = {.count = 1, .reusable = true}, SHIFT(1648), + [3732] = {.count = 1, .reusable = true}, SHIFT(1649), + [3734] = {.count = 1, .reusable = true}, SHIFT(1650), + [3736] = {.count = 1, .reusable = false}, SHIFT(1651), + [3738] = {.count = 1, .reusable = true}, SHIFT(1651), + [3740] = {.count = 1, .reusable = true}, SHIFT(1652), + [3742] = {.count = 1, .reusable = false}, SHIFT(1653), + [3744] = {.count = 1, .reusable = true}, SHIFT(1653), + [3746] = {.count = 1, .reusable = true}, SHIFT(1654), + [3748] = {.count = 1, .reusable = true}, SHIFT(1655), + [3750] = {.count = 1, .reusable = true}, SHIFT(1656), + [3752] = {.count = 1, .reusable = true}, SHIFT(1657), + [3754] = {.count = 1, .reusable = true}, SHIFT(1658), + [3756] = {.count = 1, .reusable = false}, SHIFT(1659), + [3758] = {.count = 1, .reusable = true}, SHIFT(1659), + [3760] = {.count = 1, .reusable = false}, SHIFT(1660), + [3762] = {.count = 1, .reusable = true}, SHIFT(1661), + [3764] = {.count = 1, .reusable = true}, SHIFT(1663), + [3766] = {.count = 1, .reusable = true}, SHIFT(1664), + [3768] = {.count = 1, .reusable = true}, SHIFT(1665), + [3770] = {.count = 1, .reusable = true}, SHIFT(1666), + [3772] = {.count = 1, .reusable = true}, SHIFT(1667), + [3774] = {.count = 1, .reusable = true}, SHIFT(1668), + [3776] = {.count = 1, .reusable = false}, SHIFT(1669), + [3778] = {.count = 1, .reusable = true}, SHIFT(1669), + [3780] = {.count = 1, .reusable = true}, SHIFT(1670), + [3782] = {.count = 1, .reusable = false}, SHIFT(1671), + [3784] = {.count = 1, .reusable = true}, SHIFT(1671), + [3786] = {.count = 1, .reusable = true}, SHIFT(1672), + [3788] = {.count = 1, .reusable = true}, SHIFT(1673), + [3790] = {.count = 1, .reusable = true}, SHIFT(1674), + [3792] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [3794] = {.count = 1, .reusable = true}, SHIFT(1675), + [3796] = {.count = 1, .reusable = true}, SHIFT(1676), + [3798] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [3800] = {.count = 1, .reusable = true}, SHIFT(1677), + [3802] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3804] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3806] = {.count = 1, .reusable = false}, SHIFT(1679), + [3808] = {.count = 1, .reusable = false}, SHIFT(1680), + [3810] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [3812] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [3814] = {.count = 1, .reusable = true}, SHIFT(1681), + [3816] = {.count = 1, .reusable = true}, SHIFT(1682), + [3818] = {.count = 1, .reusable = false}, SHIFT(1684), + [3820] = {.count = 1, .reusable = true}, SHIFT(1684), + [3822] = {.count = 1, .reusable = true}, SHIFT(1683), + [3824] = {.count = 1, .reusable = true}, SHIFT(1685), + [3826] = {.count = 1, .reusable = true}, SHIFT(1686), + [3828] = {.count = 1, .reusable = false}, SHIFT(1687), + [3830] = {.count = 1, .reusable = false}, SHIFT(1686), + [3832] = {.count = 1, .reusable = true}, SHIFT(1689), + [3834] = {.count = 1, .reusable = false}, SHIFT(1691), + [3836] = {.count = 1, .reusable = true}, SHIFT(1691), + [3838] = {.count = 1, .reusable = true}, SHIFT(1690), + [3840] = {.count = 1, .reusable = true}, SHIFT(1692), + [3842] = {.count = 1, .reusable = false}, SHIFT(1694), + [3844] = {.count = 1, .reusable = true}, SHIFT(1694), + [3846] = {.count = 1, .reusable = true}, SHIFT(1693), + [3848] = {.count = 1, .reusable = false}, SHIFT(1695), + [3850] = {.count = 1, .reusable = false}, SHIFT(1696), + [3852] = {.count = 1, .reusable = true}, SHIFT(1696), + [3854] = {.count = 1, .reusable = false}, SHIFT(1699), + [3856] = {.count = 1, .reusable = true}, SHIFT(1699), + [3858] = {.count = 1, .reusable = false}, SHIFT(1702), + [3860] = {.count = 1, .reusable = false}, SHIFT(1703), + [3862] = {.count = 1, .reusable = true}, SHIFT(1703), + [3864] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(852), + [3867] = {.count = 1, .reusable = false}, SHIFT(1706), + [3869] = {.count = 1, .reusable = true}, SHIFT(1707), + [3871] = {.count = 1, .reusable = false}, SHIFT(1708), + [3873] = {.count = 1, .reusable = true}, SHIFT(1709), + [3875] = {.count = 1, .reusable = true}, SHIFT(1711), + [3877] = {.count = 1, .reusable = true}, SHIFT(1712), + [3879] = {.count = 1, .reusable = true}, SHIFT(1713), + [3881] = {.count = 1, .reusable = true}, SHIFT(1714), + [3883] = {.count = 1, .reusable = false}, SHIFT(1716), + [3885] = {.count = 1, .reusable = true}, SHIFT(1716), + [3887] = {.count = 1, .reusable = true}, SHIFT(1715), + [3889] = {.count = 1, .reusable = true}, SHIFT(1717), + [3891] = {.count = 1, .reusable = false}, SHIFT(1719), + [3893] = {.count = 1, .reusable = true}, SHIFT(1719), + [3895] = {.count = 1, .reusable = true}, SHIFT(1718), + [3897] = {.count = 1, .reusable = false}, SHIFT(1721), + [3899] = {.count = 1, .reusable = true}, SHIFT(1721), + [3901] = {.count = 1, .reusable = true}, SHIFT(1720), + [3903] = {.count = 1, .reusable = true}, SHIFT(1722), + [3905] = {.count = 1, .reusable = true}, SHIFT(1723), + [3907] = {.count = 1, .reusable = true}, SHIFT(1724), + [3909] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3911] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3913] = {.count = 1, .reusable = true}, SHIFT(1725), + [3915] = {.count = 1, .reusable = true}, SHIFT(1726), + [3917] = {.count = 1, .reusable = false}, SHIFT(1726), + [3919] = {.count = 1, .reusable = false}, SHIFT(1727), + [3921] = {.count = 1, .reusable = true}, SHIFT(1727), + [3923] = {.count = 1, .reusable = false}, SHIFT(1728), + [3925] = {.count = 1, .reusable = true}, SHIFT(1728), + [3927] = {.count = 1, .reusable = true}, SHIFT(1729), + [3929] = {.count = 1, .reusable = false}, SHIFT(1729), + [3931] = {.count = 1, .reusable = false}, SHIFT(1730), + [3933] = {.count = 1, .reusable = true}, SHIFT(1730), + [3935] = {.count = 1, .reusable = true}, SHIFT(1731), + [3937] = {.count = 1, .reusable = true}, SHIFT(1732), + [3939] = {.count = 1, .reusable = true}, SHIFT(1733), + [3941] = {.count = 1, .reusable = false}, SHIFT(1734), + [3943] = {.count = 1, .reusable = true}, SHIFT(1734), + [3945] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3947] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3949] = {.count = 1, .reusable = true}, SHIFT(1735), + [3951] = {.count = 1, .reusable = false}, SHIFT(1736), + [3953] = {.count = 1, .reusable = true}, SHIFT(1736), + [3955] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3957] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3959] = {.count = 1, .reusable = true}, SHIFT(1737), + [3961] = {.count = 1, .reusable = false}, SHIFT(1738), + [3963] = {.count = 1, .reusable = true}, SHIFT(1738), + [3965] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [3967] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [3969] = {.count = 1, .reusable = true}, SHIFT(1739), + [3971] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [3973] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [3975] = {.count = 1, .reusable = true}, SHIFT(1740), + [3977] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 5), + [3979] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 5), + [3981] = {.count = 1, .reusable = false}, SHIFT(1742), + [3983] = {.count = 1, .reusable = true}, SHIFT(1742), + [3985] = {.count = 1, .reusable = true}, SHIFT(1743), + [3987] = {.count = 1, .reusable = true}, SHIFT(1744), + [3989] = {.count = 1, .reusable = false}, SHIFT(1745), + [3991] = {.count = 1, .reusable = true}, SHIFT(1745), + [3993] = {.count = 1, .reusable = true}, SHIFT(1746), + [3995] = {.count = 1, .reusable = true}, SHIFT(1747), + [3997] = {.count = 1, .reusable = true}, SHIFT(1748), + [3999] = {.count = 1, .reusable = true}, SHIFT(1749), + [4001] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 5), + [4003] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 5), + [4005] = {.count = 1, .reusable = true}, SHIFT(1752), + [4007] = {.count = 1, .reusable = false}, SHIFT(1753), + [4009] = {.count = 1, .reusable = true}, SHIFT(1754), + [4011] = {.count = 1, .reusable = true}, SHIFT(1756), + [4013] = {.count = 1, .reusable = true}, SHIFT(1757), + [4015] = {.count = 1, .reusable = true}, SHIFT(1758), + [4017] = {.count = 1, .reusable = true}, SHIFT(1759), + [4019] = {.count = 1, .reusable = false}, SHIFT(1761), + [4021] = {.count = 1, .reusable = true}, SHIFT(1761), + [4023] = {.count = 1, .reusable = true}, SHIFT(1760), + [4025] = {.count = 1, .reusable = true}, SHIFT(1762), + [4027] = {.count = 1, .reusable = false}, SHIFT(1764), + [4029] = {.count = 1, .reusable = true}, SHIFT(1764), + [4031] = {.count = 1, .reusable = true}, SHIFT(1763), + [4033] = {.count = 1, .reusable = false}, SHIFT(1766), + [4035] = {.count = 1, .reusable = true}, SHIFT(1766), + [4037] = {.count = 1, .reusable = true}, SHIFT(1765), + [4039] = {.count = 1, .reusable = true}, SHIFT(1767), + [4041] = {.count = 1, .reusable = true}, SHIFT(1768), + [4043] = {.count = 1, .reusable = true}, SHIFT(1769), + [4045] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), + [4047] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), + [4049] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [4051] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [4053] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(931), + [4056] = {.count = 1, .reusable = false}, SHIFT(1770), + [4058] = {.count = 1, .reusable = true}, SHIFT(1771), + [4060] = {.count = 1, .reusable = false}, SHIFT(1772), + [4062] = {.count = 1, .reusable = true}, SHIFT(1773), + [4064] = {.count = 1, .reusable = true}, SHIFT(1775), + [4066] = {.count = 1, .reusable = true}, SHIFT(1776), + [4068] = {.count = 1, .reusable = true}, SHIFT(1777), + [4070] = {.count = 1, .reusable = true}, SHIFT(1778), + [4072] = {.count = 1, .reusable = false}, SHIFT(1780), + [4074] = {.count = 1, .reusable = true}, SHIFT(1780), + [4076] = {.count = 1, .reusable = true}, SHIFT(1779), + [4078] = {.count = 1, .reusable = true}, SHIFT(1781), + [4080] = {.count = 1, .reusable = false}, SHIFT(1783), + [4082] = {.count = 1, .reusable = true}, SHIFT(1783), + [4084] = {.count = 1, .reusable = true}, SHIFT(1782), + [4086] = {.count = 1, .reusable = false}, SHIFT(1785), + [4088] = {.count = 1, .reusable = true}, SHIFT(1785), + [4090] = {.count = 1, .reusable = true}, SHIFT(1784), + [4092] = {.count = 1, .reusable = true}, SHIFT(1786), + [4094] = {.count = 1, .reusable = true}, SHIFT(1787), + [4096] = {.count = 1, .reusable = true}, SHIFT(1788), + [4098] = {.count = 1, .reusable = true}, SHIFT(1789), + [4100] = {.count = 1, .reusable = false}, SHIFT(1789), + [4102] = {.count = 1, .reusable = false}, SHIFT(1790), + [4104] = {.count = 1, .reusable = true}, SHIFT(1790), + [4106] = {.count = 1, .reusable = false}, SHIFT(1791), + [4108] = {.count = 1, .reusable = true}, SHIFT(1791), + [4110] = {.count = 1, .reusable = true}, SHIFT(1792), + [4112] = {.count = 1, .reusable = false}, SHIFT(1792), + [4114] = {.count = 1, .reusable = false}, SHIFT(1793), + [4116] = {.count = 1, .reusable = true}, SHIFT(1793), + [4118] = {.count = 1, .reusable = true}, SHIFT(1794), + [4120] = {.count = 1, .reusable = true}, SHIFT(1795), + [4122] = {.count = 1, .reusable = true}, SHIFT(1796), + [4124] = {.count = 1, .reusable = false}, SHIFT(1797), + [4126] = {.count = 1, .reusable = true}, SHIFT(1797), + [4128] = {.count = 1, .reusable = false}, SHIFT(1798), + [4130] = {.count = 1, .reusable = true}, SHIFT(1799), + [4132] = {.count = 1, .reusable = true}, SHIFT(1801), + [4134] = {.count = 1, .reusable = true}, SHIFT(1802), + [4136] = {.count = 1, .reusable = true}, SHIFT(1803), + [4138] = {.count = 1, .reusable = true}, SHIFT(1804), + [4140] = {.count = 1, .reusable = true}, SHIFT(1805), + [4142] = {.count = 1, .reusable = true}, SHIFT(1806), + [4144] = {.count = 1, .reusable = false}, SHIFT(1807), + [4146] = {.count = 1, .reusable = true}, SHIFT(1807), + [4148] = {.count = 1, .reusable = true}, SHIFT(1808), + [4150] = {.count = 1, .reusable = false}, SHIFT(1809), + [4152] = {.count = 1, .reusable = true}, SHIFT(1809), + [4154] = {.count = 1, .reusable = true}, SHIFT(1810), + [4156] = {.count = 1, .reusable = true}, SHIFT(1811), + [4158] = {.count = 1, .reusable = true}, SHIFT(1812), + [4160] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [4162] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [4164] = {.count = 1, .reusable = true}, SHIFT(1814), + [4166] = {.count = 1, .reusable = true}, SHIFT(1815), + [4168] = {.count = 1, .reusable = false}, SHIFT(1817), + [4170] = {.count = 1, .reusable = false}, SHIFT(1818), + [4172] = {.count = 1, .reusable = true}, SHIFT(1819), + [4174] = {.count = 1, .reusable = true}, SHIFT(1820), + [4176] = {.count = 1, .reusable = false}, SHIFT(1822), + [4178] = {.count = 1, .reusable = true}, SHIFT(1822), + [4180] = {.count = 1, .reusable = true}, SHIFT(1821), + [4182] = {.count = 1, .reusable = true}, SHIFT(1823), + [4184] = {.count = 1, .reusable = true}, SHIFT(1824), + [4186] = {.count = 1, .reusable = false}, SHIFT(1825), + [4188] = {.count = 1, .reusable = false}, SHIFT(1824), + [4190] = {.count = 1, .reusable = true}, SHIFT(1827), + [4192] = {.count = 1, .reusable = false}, SHIFT(1829), + [4194] = {.count = 1, .reusable = true}, SHIFT(1829), + [4196] = {.count = 1, .reusable = true}, SHIFT(1828), + [4198] = {.count = 1, .reusable = true}, SHIFT(1830), + [4200] = {.count = 1, .reusable = false}, SHIFT(1832), + [4202] = {.count = 1, .reusable = true}, SHIFT(1832), + [4204] = {.count = 1, .reusable = true}, SHIFT(1831), + [4206] = {.count = 1, .reusable = false}, SHIFT(1833), + [4208] = {.count = 1, .reusable = false}, SHIFT(1834), + [4210] = {.count = 1, .reusable = true}, SHIFT(1834), + [4212] = {.count = 1, .reusable = false}, SHIFT(1837), + [4214] = {.count = 1, .reusable = true}, SHIFT(1837), + [4216] = {.count = 1, .reusable = false}, SHIFT(1840), + [4218] = {.count = 1, .reusable = false}, SHIFT(1841), + [4220] = {.count = 1, .reusable = true}, SHIFT(1841), + [4222] = {.count = 1, .reusable = false}, SHIFT(985), + [4224] = {.count = 1, .reusable = false}, SHIFT(987), + [4226] = {.count = 1, .reusable = false}, SHIFT(988), + [4228] = {.count = 1, .reusable = false}, SHIFT(991), + [4230] = {.count = 1, .reusable = false}, SHIFT(992), + [4232] = {.count = 1, .reusable = false}, SHIFT(993), + [4234] = {.count = 1, .reusable = false}, SHIFT(994), + [4236] = {.count = 1, .reusable = false}, SHIFT(1846), + [4238] = {.count = 1, .reusable = true}, SHIFT(1847), + [4240] = {.count = 1, .reusable = true}, SHIFT(1848), + [4242] = {.count = 1, .reusable = true}, SHIFT(1849), + [4244] = {.count = 1, .reusable = true}, SHIFT(1850), + [4246] = {.count = 1, .reusable = false}, SHIFT(1851), + [4248] = {.count = 1, .reusable = true}, SHIFT(1851), + [4250] = {.count = 1, .reusable = false}, SHIFT(1852), + [4252] = {.count = 1, .reusable = true}, SHIFT(1853), + [4254] = {.count = 1, .reusable = true}, SHIFT(1855), + [4256] = {.count = 1, .reusable = true}, SHIFT(1856), + [4258] = {.count = 1, .reusable = true}, SHIFT(1857), + [4260] = {.count = 1, .reusable = true}, SHIFT(1858), + [4262] = {.count = 1, .reusable = true}, SHIFT(1859), + [4264] = {.count = 1, .reusable = true}, SHIFT(1860), + [4266] = {.count = 1, .reusable = false}, SHIFT(1861), + [4268] = {.count = 1, .reusable = true}, SHIFT(1861), + [4270] = {.count = 1, .reusable = true}, SHIFT(1862), + [4272] = {.count = 1, .reusable = false}, SHIFT(1863), + [4274] = {.count = 1, .reusable = true}, SHIFT(1863), + [4276] = {.count = 1, .reusable = true}, SHIFT(1864), + [4278] = {.count = 1, .reusable = true}, SHIFT(1865), + [4280] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4282] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4284] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [4286] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [4288] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [4290] = {.count = 1, .reusable = true}, SHIFT(1868), + [4292] = {.count = 1, .reusable = true}, SHIFT(1869), + [4294] = {.count = 1, .reusable = true}, SHIFT(1870), + [4296] = {.count = 1, .reusable = true}, SHIFT(1872), + [4298] = {.count = 1, .reusable = false}, SHIFT(1873), + [4300] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [4302] = {.count = 1, .reusable = true}, SHIFT(1874), + [4304] = {.count = 1, .reusable = false}, SHIFT(1875), + [4306] = {.count = 1, .reusable = false}, SHIFT(1876), + [4308] = {.count = 1, .reusable = false}, SHIFT(1877), + [4310] = {.count = 1, .reusable = true}, SHIFT(1878), + [4312] = {.count = 1, .reusable = false}, SHIFT(1879), + [4314] = {.count = 1, .reusable = false}, SHIFT(1880), + [4316] = {.count = 1, .reusable = false}, SHIFT(1881), + [4318] = {.count = 1, .reusable = true}, SHIFT(1882), + [4320] = {.count = 1, .reusable = false}, SHIFT(1883), + [4322] = {.count = 1, .reusable = true}, SHIFT(1890), + [4324] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [4326] = {.count = 1, .reusable = true}, SHIFT(1893), + [4328] = {.count = 1, .reusable = true}, SHIFT(1897), + [4330] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4332] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4334] = {.count = 1, .reusable = true}, SHIFT(1898), + [4336] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1899), + [4339] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(87), + [4342] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(88), + [4345] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1900), + [4348] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), + [4351] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), + [4354] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(92), + [4357] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(93), + [4360] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4362] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4364] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4366] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4368] = {.count = 1, .reusable = true}, SHIFT(1903), + [4370] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [4372] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [4374] = {.count = 1, .reusable = true}, SHIFT(1905), + [4376] = {.count = 1, .reusable = true}, SHIFT(1906), + [4378] = {.count = 1, .reusable = true}, SHIFT(1907), + [4380] = {.count = 1, .reusable = true}, SHIFT(1908), + [4382] = {.count = 1, .reusable = false}, SHIFT(1909), + [4384] = {.count = 1, .reusable = true}, SHIFT(1909), + [4386] = {.count = 1, .reusable = true}, SHIFT(1910), + [4388] = {.count = 1, .reusable = false}, SHIFT(1911), + [4390] = {.count = 1, .reusable = true}, SHIFT(1911), + [4392] = {.count = 1, .reusable = true}, SHIFT(1912), + [4394] = {.count = 1, .reusable = false}, SHIFT(1913), + [4396] = {.count = 1, .reusable = true}, SHIFT(1913), + [4398] = {.count = 1, .reusable = true}, SHIFT(1914), + [4400] = {.count = 1, .reusable = true}, SHIFT(1915), + [4402] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), + [4404] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), + [4406] = {.count = 1, .reusable = true}, SHIFT(1917), + [4408] = {.count = 1, .reusable = true}, SHIFT(1918), + [4410] = {.count = 1, .reusable = true}, SHIFT(1920), + [4412] = {.count = 1, .reusable = true}, SHIFT(1921), + [4414] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1093), + [4417] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1094), + [4420] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1095), + [4423] = {.count = 1, .reusable = true}, SHIFT(1923), + [4425] = {.count = 1, .reusable = true}, SHIFT(1924), + [4427] = {.count = 1, .reusable = true}, SHIFT(1925), + [4429] = {.count = 1, .reusable = true}, SHIFT(1926), + [4431] = {.count = 1, .reusable = false}, SHIFT(1927), + [4433] = {.count = 1, .reusable = true}, SHIFT(1927), + [4435] = {.count = 1, .reusable = true}, SHIFT(1928), + [4437] = {.count = 1, .reusable = false}, SHIFT(1929), + [4439] = {.count = 1, .reusable = true}, SHIFT(1929), + [4441] = {.count = 1, .reusable = true}, SHIFT(1930), + [4443] = {.count = 1, .reusable = false}, SHIFT(1931), + [4445] = {.count = 1, .reusable = true}, SHIFT(1931), + [4447] = {.count = 1, .reusable = true}, SHIFT(1932), + [4449] = {.count = 1, .reusable = true}, SHIFT(1933), + [4451] = {.count = 1, .reusable = true}, SHIFT(1934), + [4453] = {.count = 1, .reusable = false}, SHIFT(1936), + [4455] = {.count = 1, .reusable = false}, SHIFT(1937), + [4457] = {.count = 1, .reusable = true}, SHIFT(1938), + [4459] = {.count = 1, .reusable = true}, SHIFT(1939), + [4461] = {.count = 1, .reusable = false}, SHIFT(1941), + [4463] = {.count = 1, .reusable = true}, SHIFT(1941), + [4465] = {.count = 1, .reusable = true}, SHIFT(1940), + [4467] = {.count = 1, .reusable = true}, SHIFT(1942), + [4469] = {.count = 1, .reusable = true}, SHIFT(1943), + [4471] = {.count = 1, .reusable = false}, SHIFT(1944), + [4473] = {.count = 1, .reusable = false}, SHIFT(1943), + [4475] = {.count = 1, .reusable = true}, SHIFT(1946), + [4477] = {.count = 1, .reusable = false}, SHIFT(1948), + [4479] = {.count = 1, .reusable = true}, SHIFT(1948), + [4481] = {.count = 1, .reusable = true}, SHIFT(1947), + [4483] = {.count = 1, .reusable = true}, SHIFT(1949), + [4485] = {.count = 1, .reusable = false}, SHIFT(1951), + [4487] = {.count = 1, .reusable = true}, SHIFT(1951), + [4489] = {.count = 1, .reusable = true}, SHIFT(1950), + [4491] = {.count = 1, .reusable = false}, SHIFT(1952), + [4493] = {.count = 1, .reusable = false}, SHIFT(1953), + [4495] = {.count = 1, .reusable = true}, SHIFT(1953), + [4497] = {.count = 1, .reusable = false}, SHIFT(1956), + [4499] = {.count = 1, .reusable = true}, SHIFT(1956), + [4501] = {.count = 1, .reusable = false}, SHIFT(1959), + [4503] = {.count = 1, .reusable = false}, SHIFT(1960), + [4505] = {.count = 1, .reusable = true}, SHIFT(1960), + [4507] = {.count = 1, .reusable = true}, SHIFT(1963), + [4509] = {.count = 1, .reusable = true}, SHIFT(1964), + [4511] = {.count = 1, .reusable = true}, SHIFT(1965), + [4513] = {.count = 1, .reusable = true}, SHIFT(1966), + [4515] = {.count = 1, .reusable = false}, SHIFT(1967), + [4517] = {.count = 1, .reusable = true}, SHIFT(1967), + [4519] = {.count = 1, .reusable = true}, SHIFT(1968), + [4521] = {.count = 1, .reusable = false}, SHIFT(1969), + [4523] = {.count = 1, .reusable = true}, SHIFT(1969), + [4525] = {.count = 1, .reusable = true}, SHIFT(1970), + [4527] = {.count = 1, .reusable = false}, SHIFT(1971), + [4529] = {.count = 1, .reusable = true}, SHIFT(1971), + [4531] = {.count = 1, .reusable = true}, SHIFT(1972), + [4533] = {.count = 1, .reusable = true}, SHIFT(1973), + [4535] = {.count = 1, .reusable = true}, SHIFT(1974), + [4537] = {.count = 1, .reusable = true}, SHIFT(1975), + [4539] = {.count = 1, .reusable = true}, SHIFT(1976), + [4541] = {.count = 1, .reusable = true}, SHIFT(1977), + [4543] = {.count = 1, .reusable = false}, SHIFT(1978), + [4545] = {.count = 1, .reusable = true}, SHIFT(1978), + [4547] = {.count = 1, .reusable = true}, SHIFT(1979), + [4549] = {.count = 1, .reusable = false}, SHIFT(1980), + [4551] = {.count = 1, .reusable = true}, SHIFT(1980), + [4553] = {.count = 1, .reusable = true}, SHIFT(1981), + [4555] = {.count = 1, .reusable = false}, SHIFT(1982), + [4557] = {.count = 1, .reusable = true}, SHIFT(1982), + [4559] = {.count = 1, .reusable = true}, SHIFT(1983), + [4561] = {.count = 1, .reusable = true}, SHIFT(1984), + [4563] = {.count = 1, .reusable = true}, SHIFT(1985), + [4565] = {.count = 1, .reusable = true}, SHIFT(1986), + [4567] = {.count = 1, .reusable = true}, SHIFT(1987), + [4569] = {.count = 1, .reusable = true}, SHIFT(1988), + [4571] = {.count = 1, .reusable = false}, SHIFT(1989), + [4573] = {.count = 1, .reusable = true}, SHIFT(1989), + [4575] = {.count = 1, .reusable = true}, SHIFT(1990), + [4577] = {.count = 1, .reusable = false}, SHIFT(1991), + [4579] = {.count = 1, .reusable = true}, SHIFT(1991), + [4581] = {.count = 1, .reusable = true}, SHIFT(1992), + [4583] = {.count = 1, .reusable = false}, SHIFT(1993), + [4585] = {.count = 1, .reusable = true}, SHIFT(1993), + [4587] = {.count = 1, .reusable = true}, SHIFT(1994), + [4589] = {.count = 1, .reusable = true}, SHIFT(1995), + [4591] = {.count = 1, .reusable = true}, SHIFT(1996), + [4593] = {.count = 1, .reusable = true}, SHIFT(1997), + [4595] = {.count = 1, .reusable = true}, SHIFT(1998), + [4597] = {.count = 1, .reusable = true}, SHIFT(1999), + [4599] = {.count = 1, .reusable = false}, SHIFT(2000), + [4601] = {.count = 1, .reusable = true}, SHIFT(2000), + [4603] = {.count = 1, .reusable = true}, SHIFT(2001), + [4605] = {.count = 1, .reusable = false}, SHIFT(2002), + [4607] = {.count = 1, .reusable = true}, SHIFT(2002), + [4609] = {.count = 1, .reusable = true}, SHIFT(2003), + [4611] = {.count = 1, .reusable = false}, SHIFT(2004), + [4613] = {.count = 1, .reusable = true}, SHIFT(2004), + [4615] = {.count = 1, .reusable = true}, SHIFT(2005), + [4617] = {.count = 1, .reusable = true}, SHIFT(2006), + [4619] = {.count = 1, .reusable = true}, SHIFT(2007), + [4621] = {.count = 1, .reusable = true}, SHIFT(2008), + [4623] = {.count = 1, .reusable = true}, SHIFT(2009), + [4625] = {.count = 1, .reusable = true}, SHIFT(2010), + [4627] = {.count = 1, .reusable = false}, SHIFT(2011), + [4629] = {.count = 1, .reusable = true}, SHIFT(2011), + [4631] = {.count = 1, .reusable = true}, SHIFT(2012), + [4633] = {.count = 1, .reusable = false}, SHIFT(2013), + [4635] = {.count = 1, .reusable = true}, SHIFT(2013), + [4637] = {.count = 1, .reusable = true}, SHIFT(2014), + [4639] = {.count = 1, .reusable = false}, SHIFT(2015), + [4641] = {.count = 1, .reusable = true}, SHIFT(2015), + [4643] = {.count = 1, .reusable = true}, SHIFT(2016), + [4645] = {.count = 1, .reusable = true}, SHIFT(2017), + [4647] = {.count = 1, .reusable = true}, SHIFT(2018), + [4649] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [4651] = {.count = 1, .reusable = true}, SHIFT(2019), + [4653] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [4655] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1273), + [4658] = {.count = 1, .reusable = false}, SHIFT(2020), + [4660] = {.count = 1, .reusable = true}, SHIFT(2021), + [4662] = {.count = 1, .reusable = false}, SHIFT(2022), + [4664] = {.count = 1, .reusable = true}, SHIFT(2023), + [4666] = {.count = 1, .reusable = true}, SHIFT(2025), + [4668] = {.count = 1, .reusable = true}, SHIFT(2026), + [4670] = {.count = 1, .reusable = true}, SHIFT(2027), + [4672] = {.count = 1, .reusable = true}, SHIFT(2028), + [4674] = {.count = 1, .reusable = false}, SHIFT(2030), + [4676] = {.count = 1, .reusable = true}, SHIFT(2030), + [4678] = {.count = 1, .reusable = true}, SHIFT(2029), + [4680] = {.count = 1, .reusable = true}, SHIFT(2031), [4682] = {.count = 1, .reusable = false}, SHIFT(2033), - [4684] = {.count = 1, .reusable = true}, SHIFT(2036), - [4686] = {.count = 1, .reusable = false}, SHIFT(2038), - [4688] = {.count = 1, .reusable = true}, SHIFT(2038), - [4690] = {.count = 1, .reusable = true}, SHIFT(2037), - [4692] = {.count = 1, .reusable = true}, SHIFT(2039), - [4694] = {.count = 1, .reusable = false}, SHIFT(2041), - [4696] = {.count = 1, .reusable = true}, SHIFT(2041), - [4698] = {.count = 1, .reusable = true}, SHIFT(2040), - [4700] = {.count = 1, .reusable = true}, SHIFT(2042), - [4702] = {.count = 1, .reusable = true}, SHIFT(2043), - [4704] = {.count = 1, .reusable = false}, SHIFT(1097), - [4706] = {.count = 1, .reusable = false}, SHIFT(1099), - [4708] = {.count = 1, .reusable = false}, SHIFT(1100), - [4710] = {.count = 1, .reusable = false}, SHIFT(1103), - [4712] = {.count = 1, .reusable = false}, SHIFT(1104), - [4714] = {.count = 1, .reusable = false}, SHIFT(1105), - [4716] = {.count = 1, .reusable = false}, SHIFT(1106), - [4718] = {.count = 1, .reusable = false}, SHIFT(2046), - [4720] = {.count = 1, .reusable = true}, SHIFT(2047), - [4722] = {.count = 1, .reusable = true}, SHIFT(2048), - [4724] = {.count = 1, .reusable = true}, SHIFT(2049), - [4726] = {.count = 1, .reusable = true}, SHIFT(2050), - [4728] = {.count = 1, .reusable = false}, SHIFT(2051), - [4730] = {.count = 1, .reusable = true}, SHIFT(2051), - [4732] = {.count = 1, .reusable = false}, SHIFT(2052), - [4734] = {.count = 1, .reusable = true}, SHIFT(2053), - [4736] = {.count = 1, .reusable = true}, SHIFT(2055), - [4738] = {.count = 1, .reusable = true}, SHIFT(2056), - [4740] = {.count = 1, .reusable = true}, SHIFT(2057), - [4742] = {.count = 1, .reusable = true}, SHIFT(2058), - [4744] = {.count = 1, .reusable = true}, SHIFT(2059), - [4746] = {.count = 1, .reusable = true}, SHIFT(2060), - [4748] = {.count = 1, .reusable = false}, SHIFT(2061), - [4750] = {.count = 1, .reusable = true}, SHIFT(2061), - [4752] = {.count = 1, .reusable = true}, SHIFT(2062), - [4754] = {.count = 1, .reusable = false}, SHIFT(2063), - [4756] = {.count = 1, .reusable = true}, SHIFT(2063), - [4758] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [4760] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [4762] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [4764] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [4766] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [4768] = {.count = 1, .reusable = true}, SHIFT(2066), - [4770] = {.count = 1, .reusable = true}, SHIFT(2067), - [4772] = {.count = 1, .reusable = true}, SHIFT(2068), - [4774] = {.count = 1, .reusable = true}, SHIFT(2070), - [4776] = {.count = 1, .reusable = false}, SHIFT(2071), - [4778] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [4780] = {.count = 1, .reusable = true}, SHIFT(2072), - [4782] = {.count = 1, .reusable = false}, SHIFT(2073), - [4784] = {.count = 1, .reusable = false}, SHIFT(2074), - [4786] = {.count = 1, .reusable = false}, SHIFT(2075), - [4788] = {.count = 1, .reusable = true}, SHIFT(2076), - [4790] = {.count = 1, .reusable = false}, SHIFT(2077), - [4792] = {.count = 1, .reusable = false}, SHIFT(2078), - [4794] = {.count = 1, .reusable = false}, SHIFT(2079), - [4796] = {.count = 1, .reusable = true}, SHIFT(2080), - [4798] = {.count = 1, .reusable = false}, SHIFT(2081), - [4800] = {.count = 1, .reusable = true}, SHIFT(2088), - [4802] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [4804] = {.count = 1, .reusable = true}, SHIFT(2091), - [4806] = {.count = 1, .reusable = true}, SHIFT(2095), - [4808] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [4810] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [4812] = {.count = 1, .reusable = true}, SHIFT(2096), - [4814] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2097), - [4817] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), - [4820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(87), - [4823] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2098), - [4826] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(89), - [4829] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), - [4832] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), - [4835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(92), - [4838] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [4840] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [4842] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [4844] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [4846] = {.count = 1, .reusable = true}, SHIFT(2101), - [4848] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [4850] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), - [4852] = {.count = 1, .reusable = true}, SHIFT(2103), - [4854] = {.count = 1, .reusable = true}, SHIFT(2104), - [4856] = {.count = 1, .reusable = true}, SHIFT(2105), - [4858] = {.count = 1, .reusable = true}, SHIFT(2106), - [4860] = {.count = 1, .reusable = false}, SHIFT(2107), - [4862] = {.count = 1, .reusable = true}, SHIFT(2107), - [4864] = {.count = 1, .reusable = true}, SHIFT(2108), - [4866] = {.count = 1, .reusable = false}, SHIFT(2109), - [4868] = {.count = 1, .reusable = true}, SHIFT(2109), - [4870] = {.count = 1, .reusable = true}, SHIFT(2110), - [4872] = {.count = 1, .reusable = false}, SHIFT(2111), - [4874] = {.count = 1, .reusable = true}, SHIFT(2111), - [4876] = {.count = 1, .reusable = true}, SHIFT(2112), - [4878] = {.count = 1, .reusable = true}, SHIFT(2113), - [4880] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), - [4882] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), - [4884] = {.count = 1, .reusable = true}, SHIFT(2115), - [4886] = {.count = 1, .reusable = true}, SHIFT(2116), - [4888] = {.count = 1, .reusable = true}, SHIFT(2118), - [4890] = {.count = 1, .reusable = true}, SHIFT(2119), - [4892] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1192), - [4895] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1193), - [4898] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1194), - [4901] = {.count = 1, .reusable = true}, SHIFT(2121), - [4903] = {.count = 1, .reusable = true}, SHIFT(2122), - [4905] = {.count = 1, .reusable = true}, SHIFT(2123), - [4907] = {.count = 1, .reusable = true}, SHIFT(2124), - [4909] = {.count = 1, .reusable = false}, SHIFT(2125), - [4911] = {.count = 1, .reusable = true}, SHIFT(2125), - [4913] = {.count = 1, .reusable = true}, SHIFT(2126), - [4915] = {.count = 1, .reusable = false}, SHIFT(2127), - [4917] = {.count = 1, .reusable = true}, SHIFT(2127), - [4919] = {.count = 1, .reusable = true}, SHIFT(2128), - [4921] = {.count = 1, .reusable = false}, SHIFT(2129), - [4923] = {.count = 1, .reusable = true}, SHIFT(2129), - [4925] = {.count = 1, .reusable = true}, SHIFT(2130), - [4927] = {.count = 1, .reusable = true}, SHIFT(2131), - [4929] = {.count = 1, .reusable = true}, SHIFT(2132), - [4931] = {.count = 1, .reusable = false}, SHIFT(2134), - [4933] = {.count = 1, .reusable = false}, SHIFT(2135), - [4935] = {.count = 1, .reusable = true}, SHIFT(2136), - [4937] = {.count = 1, .reusable = true}, SHIFT(2137), - [4939] = {.count = 1, .reusable = false}, SHIFT(2139), - [4941] = {.count = 1, .reusable = true}, SHIFT(2139), - [4943] = {.count = 1, .reusable = true}, SHIFT(2138), - [4945] = {.count = 1, .reusable = true}, SHIFT(2140), - [4947] = {.count = 1, .reusable = true}, SHIFT(2141), - [4949] = {.count = 1, .reusable = false}, SHIFT(2142), - [4951] = {.count = 1, .reusable = false}, SHIFT(2141), - [4953] = {.count = 1, .reusable = true}, SHIFT(2144), - [4955] = {.count = 1, .reusable = false}, SHIFT(2146), - [4957] = {.count = 1, .reusable = true}, SHIFT(2146), - [4959] = {.count = 1, .reusable = true}, SHIFT(2145), - [4961] = {.count = 1, .reusable = true}, SHIFT(2147), - [4963] = {.count = 1, .reusable = false}, SHIFT(2149), - [4965] = {.count = 1, .reusable = true}, SHIFT(2149), - [4967] = {.count = 1, .reusable = true}, SHIFT(2148), - [4969] = {.count = 1, .reusable = true}, SHIFT(2150), - [4971] = {.count = 1, .reusable = true}, SHIFT(2151), - [4973] = {.count = 1, .reusable = true}, SHIFT(2152), - [4975] = {.count = 1, .reusable = true}, SHIFT(2153), - [4977] = {.count = 1, .reusable = true}, SHIFT(2154), - [4979] = {.count = 1, .reusable = true}, SHIFT(2155), - [4981] = {.count = 1, .reusable = false}, SHIFT(2156), - [4983] = {.count = 1, .reusable = true}, SHIFT(2156), - [4985] = {.count = 1, .reusable = true}, SHIFT(2157), - [4987] = {.count = 1, .reusable = false}, SHIFT(2158), - [4989] = {.count = 1, .reusable = true}, SHIFT(2158), - [4991] = {.count = 1, .reusable = true}, SHIFT(2159), - [4993] = {.count = 1, .reusable = false}, SHIFT(2160), - [4995] = {.count = 1, .reusable = true}, SHIFT(2160), - [4997] = {.count = 1, .reusable = true}, SHIFT(2161), - [4999] = {.count = 1, .reusable = true}, SHIFT(2162), - [5001] = {.count = 1, .reusable = true}, SHIFT(2163), - [5003] = {.count = 1, .reusable = true}, SHIFT(2164), - [5005] = {.count = 1, .reusable = true}, SHIFT(2165), - [5007] = {.count = 1, .reusable = true}, SHIFT(2166), - [5009] = {.count = 1, .reusable = false}, SHIFT(2167), - [5011] = {.count = 1, .reusable = true}, SHIFT(2167), - [5013] = {.count = 1, .reusable = true}, SHIFT(2168), - [5015] = {.count = 1, .reusable = false}, SHIFT(2169), - [5017] = {.count = 1, .reusable = true}, SHIFT(2169), - [5019] = {.count = 1, .reusable = true}, SHIFT(2170), - [5021] = {.count = 1, .reusable = false}, SHIFT(2171), - [5023] = {.count = 1, .reusable = true}, SHIFT(2171), - [5025] = {.count = 1, .reusable = true}, SHIFT(2172), - [5027] = {.count = 1, .reusable = true}, SHIFT(2173), - [5029] = {.count = 1, .reusable = true}, SHIFT(2174), - [5031] = {.count = 1, .reusable = true}, SHIFT(2175), - [5033] = {.count = 1, .reusable = true}, SHIFT(2176), - [5035] = {.count = 1, .reusable = true}, SHIFT(2177), - [5037] = {.count = 1, .reusable = false}, SHIFT(2178), - [5039] = {.count = 1, .reusable = true}, SHIFT(2178), - [5041] = {.count = 1, .reusable = true}, SHIFT(2179), - [5043] = {.count = 1, .reusable = false}, SHIFT(2180), - [5045] = {.count = 1, .reusable = true}, SHIFT(2180), - [5047] = {.count = 1, .reusable = true}, SHIFT(2181), - [5049] = {.count = 1, .reusable = false}, SHIFT(2182), - [5051] = {.count = 1, .reusable = true}, SHIFT(2182), - [5053] = {.count = 1, .reusable = true}, SHIFT(2183), - [5055] = {.count = 1, .reusable = true}, SHIFT(2184), - [5057] = {.count = 1, .reusable = true}, SHIFT(2185), - [5059] = {.count = 1, .reusable = true}, SHIFT(2186), - [5061] = {.count = 1, .reusable = true}, SHIFT(2187), - [5063] = {.count = 1, .reusable = true}, SHIFT(2188), - [5065] = {.count = 1, .reusable = false}, SHIFT(2189), - [5067] = {.count = 1, .reusable = true}, SHIFT(2189), - [5069] = {.count = 1, .reusable = true}, SHIFT(2190), - [5071] = {.count = 1, .reusable = false}, SHIFT(2191), - [5073] = {.count = 1, .reusable = true}, SHIFT(2191), - [5075] = {.count = 1, .reusable = true}, SHIFT(2192), - [5077] = {.count = 1, .reusable = false}, SHIFT(2193), - [5079] = {.count = 1, .reusable = true}, SHIFT(2193), - [5081] = {.count = 1, .reusable = true}, SHIFT(2194), - [5083] = {.count = 1, .reusable = true}, SHIFT(2195), - [5085] = {.count = 1, .reusable = true}, SHIFT(2196), - [5087] = {.count = 1, .reusable = true}, SHIFT(2197), - [5089] = {.count = 1, .reusable = true}, SHIFT(2198), - [5091] = {.count = 1, .reusable = true}, SHIFT(2199), - [5093] = {.count = 1, .reusable = false}, SHIFT(2200), - [5095] = {.count = 1, .reusable = true}, SHIFT(2200), - [5097] = {.count = 1, .reusable = true}, SHIFT(2201), - [5099] = {.count = 1, .reusable = false}, SHIFT(2202), - [5101] = {.count = 1, .reusable = true}, SHIFT(2202), - [5103] = {.count = 1, .reusable = true}, SHIFT(2203), - [5105] = {.count = 1, .reusable = false}, SHIFT(2204), - [5107] = {.count = 1, .reusable = true}, SHIFT(2204), - [5109] = {.count = 1, .reusable = true}, SHIFT(2205), - [5111] = {.count = 1, .reusable = true}, SHIFT(2206), - [5113] = {.count = 1, .reusable = true}, SHIFT(2207), - [5115] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [5117] = {.count = 1, .reusable = true}, SHIFT(2208), - [5119] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [5121] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1344), - [5124] = {.count = 1, .reusable = false}, SHIFT(2209), - [5126] = {.count = 1, .reusable = true}, SHIFT(2210), - [5128] = {.count = 1, .reusable = false}, SHIFT(2211), - [5130] = {.count = 1, .reusable = true}, SHIFT(2212), - [5132] = {.count = 1, .reusable = true}, SHIFT(2214), - [5134] = {.count = 1, .reusable = true}, SHIFT(2215), - [5136] = {.count = 1, .reusable = true}, SHIFT(2216), - [5138] = {.count = 1, .reusable = true}, SHIFT(2217), - [5140] = {.count = 1, .reusable = false}, SHIFT(2219), - [5142] = {.count = 1, .reusable = true}, SHIFT(2219), - [5144] = {.count = 1, .reusable = true}, SHIFT(2218), - [5146] = {.count = 1, .reusable = true}, SHIFT(2220), - [5148] = {.count = 1, .reusable = false}, SHIFT(2222), - [5150] = {.count = 1, .reusable = true}, SHIFT(2222), - [5152] = {.count = 1, .reusable = true}, SHIFT(2221), - [5154] = {.count = 1, .reusable = false}, SHIFT(2224), - [5156] = {.count = 1, .reusable = true}, SHIFT(2224), - [5158] = {.count = 1, .reusable = true}, SHIFT(2223), - [5160] = {.count = 1, .reusable = true}, SHIFT(2225), - [5162] = {.count = 1, .reusable = true}, SHIFT(2226), - [5164] = {.count = 1, .reusable = true}, SHIFT(2227), + [4684] = {.count = 1, .reusable = true}, SHIFT(2033), + [4686] = {.count = 1, .reusable = true}, SHIFT(2032), + [4688] = {.count = 1, .reusable = false}, SHIFT(2035), + [4690] = {.count = 1, .reusable = true}, SHIFT(2035), + [4692] = {.count = 1, .reusable = true}, SHIFT(2034), + [4694] = {.count = 1, .reusable = true}, SHIFT(2036), + [4696] = {.count = 1, .reusable = true}, SHIFT(2037), + [4698] = {.count = 1, .reusable = true}, SHIFT(2038), + [4700] = {.count = 1, .reusable = true}, SHIFT(2039), + [4702] = {.count = 1, .reusable = false}, SHIFT(2039), + [4704] = {.count = 1, .reusable = false}, SHIFT(2040), + [4706] = {.count = 1, .reusable = true}, SHIFT(2040), + [4708] = {.count = 1, .reusable = false}, SHIFT(2041), + [4710] = {.count = 1, .reusable = true}, SHIFT(2041), + [4712] = {.count = 1, .reusable = true}, SHIFT(2042), + [4714] = {.count = 1, .reusable = false}, SHIFT(2042), + [4716] = {.count = 1, .reusable = false}, SHIFT(2043), + [4718] = {.count = 1, .reusable = true}, SHIFT(2043), + [4720] = {.count = 1, .reusable = true}, SHIFT(2044), + [4722] = {.count = 1, .reusable = true}, SHIFT(2045), + [4724] = {.count = 1, .reusable = true}, SHIFT(2046), + [4726] = {.count = 1, .reusable = false}, SHIFT(2047), + [4728] = {.count = 1, .reusable = true}, SHIFT(2047), + [4730] = {.count = 1, .reusable = false}, SHIFT(2048), + [4732] = {.count = 1, .reusable = true}, SHIFT(2049), + [4734] = {.count = 1, .reusable = true}, SHIFT(2051), + [4736] = {.count = 1, .reusable = true}, SHIFT(2052), + [4738] = {.count = 1, .reusable = true}, SHIFT(2053), + [4740] = {.count = 1, .reusable = true}, SHIFT(2054), + [4742] = {.count = 1, .reusable = true}, SHIFT(2055), + [4744] = {.count = 1, .reusable = true}, SHIFT(2056), + [4746] = {.count = 1, .reusable = false}, SHIFT(2057), + [4748] = {.count = 1, .reusable = true}, SHIFT(2057), + [4750] = {.count = 1, .reusable = true}, SHIFT(2058), + [4752] = {.count = 1, .reusable = false}, SHIFT(2059), + [4754] = {.count = 1, .reusable = true}, SHIFT(2059), + [4756] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4758] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4760] = {.count = 1, .reusable = true}, SHIFT(2060), + [4762] = {.count = 1, .reusable = true}, SHIFT(2061), + [4764] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4766] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4768] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [4770] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [4772] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4774] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4776] = {.count = 1, .reusable = true}, SHIFT(2062), + [4778] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4780] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4782] = {.count = 1, .reusable = true}, SHIFT(2063), + [4784] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4786] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4788] = {.count = 1, .reusable = true}, SHIFT(2064), + [4790] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4792] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4794] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4796] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4798] = {.count = 1, .reusable = true}, SHIFT(2065), + [4800] = {.count = 1, .reusable = true}, SHIFT(2066), + [4802] = {.count = 1, .reusable = true}, SHIFT(2068), + [4804] = {.count = 1, .reusable = true}, SHIFT(2069), + [4806] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1345), + [4809] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1346), + [4812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1347), + [4815] = {.count = 1, .reusable = true}, SHIFT(2071), + [4817] = {.count = 1, .reusable = true}, SHIFT(2072), + [4819] = {.count = 1, .reusable = true}, SHIFT(2073), + [4821] = {.count = 1, .reusable = false}, SHIFT(2074), + [4823] = {.count = 1, .reusable = true}, SHIFT(2074), + [4825] = {.count = 1, .reusable = false}, SHIFT(2075), + [4827] = {.count = 1, .reusable = true}, SHIFT(2076), + [4829] = {.count = 1, .reusable = true}, SHIFT(2078), + [4831] = {.count = 1, .reusable = true}, SHIFT(2079), + [4833] = {.count = 1, .reusable = true}, SHIFT(2080), + [4835] = {.count = 1, .reusable = true}, SHIFT(2081), + [4837] = {.count = 1, .reusable = true}, SHIFT(2082), + [4839] = {.count = 1, .reusable = true}, SHIFT(2083), + [4841] = {.count = 1, .reusable = false}, SHIFT(2084), + [4843] = {.count = 1, .reusable = true}, SHIFT(2084), + [4845] = {.count = 1, .reusable = true}, SHIFT(2085), + [4847] = {.count = 1, .reusable = false}, SHIFT(2086), + [4849] = {.count = 1, .reusable = true}, SHIFT(2086), + [4851] = {.count = 1, .reusable = true}, SHIFT(2087), + [4853] = {.count = 1, .reusable = true}, SHIFT(2088), + [4855] = {.count = 1, .reusable = true}, SHIFT(2089), + [4857] = {.count = 1, .reusable = false}, SHIFT(2090), + [4859] = {.count = 1, .reusable = true}, SHIFT(2090), + [4861] = {.count = 1, .reusable = false}, SHIFT(2091), + [4863] = {.count = 1, .reusable = true}, SHIFT(2092), + [4865] = {.count = 1, .reusable = true}, SHIFT(2094), + [4867] = {.count = 1, .reusable = true}, SHIFT(2095), + [4869] = {.count = 1, .reusable = true}, SHIFT(2096), + [4871] = {.count = 1, .reusable = true}, SHIFT(2097), + [4873] = {.count = 1, .reusable = true}, SHIFT(2098), + [4875] = {.count = 1, .reusable = true}, SHIFT(2099), + [4877] = {.count = 1, .reusable = false}, SHIFT(2100), + [4879] = {.count = 1, .reusable = true}, SHIFT(2100), + [4881] = {.count = 1, .reusable = true}, SHIFT(2101), + [4883] = {.count = 1, .reusable = false}, SHIFT(2102), + [4885] = {.count = 1, .reusable = true}, SHIFT(2102), + [4887] = {.count = 1, .reusable = true}, SHIFT(2103), + [4889] = {.count = 1, .reusable = true}, SHIFT(2104), + [4891] = {.count = 1, .reusable = true}, SHIFT(2105), + [4893] = {.count = 1, .reusable = true}, SHIFT(2106), + [4895] = {.count = 1, .reusable = true}, SHIFT(2107), + [4897] = {.count = 1, .reusable = true}, SHIFT(2108), + [4899] = {.count = 1, .reusable = false}, SHIFT(2109), + [4901] = {.count = 1, .reusable = true}, SHIFT(2109), + [4903] = {.count = 1, .reusable = true}, SHIFT(2110), + [4905] = {.count = 1, .reusable = false}, SHIFT(2111), + [4907] = {.count = 1, .reusable = true}, SHIFT(2111), + [4909] = {.count = 1, .reusable = true}, SHIFT(2112), + [4911] = {.count = 1, .reusable = false}, SHIFT(2113), + [4913] = {.count = 1, .reusable = true}, SHIFT(2113), + [4915] = {.count = 1, .reusable = true}, SHIFT(2114), + [4917] = {.count = 1, .reusable = true}, SHIFT(2115), + [4919] = {.count = 1, .reusable = true}, SHIFT(2116), + [4921] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1431), + [4924] = {.count = 1, .reusable = false}, SHIFT(2117), + [4926] = {.count = 1, .reusable = true}, SHIFT(2118), + [4928] = {.count = 1, .reusable = false}, SHIFT(2119), + [4930] = {.count = 1, .reusable = true}, SHIFT(2120), + [4932] = {.count = 1, .reusable = true}, SHIFT(2122), + [4934] = {.count = 1, .reusable = true}, SHIFT(2123), + [4936] = {.count = 1, .reusable = true}, SHIFT(2124), + [4938] = {.count = 1, .reusable = true}, SHIFT(2125), + [4940] = {.count = 1, .reusable = false}, SHIFT(2127), + [4942] = {.count = 1, .reusable = true}, SHIFT(2127), + [4944] = {.count = 1, .reusable = true}, SHIFT(2126), + [4946] = {.count = 1, .reusable = true}, SHIFT(2128), + [4948] = {.count = 1, .reusable = false}, SHIFT(2130), + [4950] = {.count = 1, .reusable = true}, SHIFT(2130), + [4952] = {.count = 1, .reusable = true}, SHIFT(2129), + [4954] = {.count = 1, .reusable = false}, SHIFT(2132), + [4956] = {.count = 1, .reusable = true}, SHIFT(2132), + [4958] = {.count = 1, .reusable = true}, SHIFT(2131), + [4960] = {.count = 1, .reusable = true}, SHIFT(2133), + [4962] = {.count = 1, .reusable = true}, SHIFT(2134), + [4964] = {.count = 1, .reusable = true}, SHIFT(2135), + [4966] = {.count = 1, .reusable = true}, SHIFT(2136), + [4968] = {.count = 1, .reusable = false}, SHIFT(2136), + [4970] = {.count = 1, .reusable = false}, SHIFT(2137), + [4972] = {.count = 1, .reusable = true}, SHIFT(2137), + [4974] = {.count = 1, .reusable = false}, SHIFT(2138), + [4976] = {.count = 1, .reusable = true}, SHIFT(2138), + [4978] = {.count = 1, .reusable = true}, SHIFT(2139), + [4980] = {.count = 1, .reusable = false}, SHIFT(2139), + [4982] = {.count = 1, .reusable = false}, SHIFT(2140), + [4984] = {.count = 1, .reusable = true}, SHIFT(2140), + [4986] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [4988] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [4990] = {.count = 1, .reusable = true}, SHIFT(2142), + [4992] = {.count = 1, .reusable = true}, SHIFT(2143), + [4994] = {.count = 1, .reusable = true}, SHIFT(2144), + [4996] = {.count = 1, .reusable = true}, SHIFT(2145), + [4998] = {.count = 1, .reusable = false}, SHIFT(2146), + [5000] = {.count = 1, .reusable = true}, SHIFT(2146), + [5002] = {.count = 1, .reusable = true}, SHIFT(2147), + [5004] = {.count = 1, .reusable = false}, SHIFT(2148), + [5006] = {.count = 1, .reusable = true}, SHIFT(2148), + [5008] = {.count = 1, .reusable = true}, SHIFT(2149), + [5010] = {.count = 1, .reusable = false}, SHIFT(2150), + [5012] = {.count = 1, .reusable = true}, SHIFT(2150), + [5014] = {.count = 1, .reusable = true}, SHIFT(2151), + [5016] = {.count = 1, .reusable = true}, SHIFT(2152), + [5018] = {.count = 1, .reusable = true}, SHIFT(2153), + [5020] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [5022] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [5024] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [5026] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [5028] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [5030] = {.count = 1, .reusable = true}, SHIFT(2154), + [5032] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [5034] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5036] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5038] = {.count = 1, .reusable = true}, SHIFT(2156), + [5040] = {.count = 1, .reusable = true}, SHIFT(2159), + [5042] = {.count = 1, .reusable = false}, SHIFT(2160), + [5044] = {.count = 1, .reusable = false}, SHIFT(2161), + [5046] = {.count = 1, .reusable = false}, SHIFT(2162), + [5048] = {.count = 1, .reusable = false}, SHIFT(2163), + [5050] = {.count = 1, .reusable = false}, SHIFT(2164), + [5052] = {.count = 1, .reusable = false}, SHIFT(2165), + [5054] = {.count = 1, .reusable = false}, SHIFT(2166), + [5056] = {.count = 1, .reusable = false}, SHIFT(2167), + [5058] = {.count = 1, .reusable = false}, SHIFT(2168), + [5060] = {.count = 1, .reusable = false}, SHIFT(2171), + [5062] = {.count = 1, .reusable = false}, SHIFT(2172), + [5064] = {.count = 1, .reusable = false}, SHIFT(2173), + [5066] = {.count = 1, .reusable = false}, SHIFT(2174), + [5068] = {.count = 1, .reusable = false}, SHIFT(2175), + [5070] = {.count = 1, .reusable = false}, SHIFT(2176), + [5072] = {.count = 1, .reusable = false}, SHIFT(2177), + [5074] = {.count = 1, .reusable = false}, SHIFT(2178), + [5076] = {.count = 1, .reusable = false}, SHIFT(2179), + [5078] = {.count = 1, .reusable = false}, SHIFT(2182), + [5080] = {.count = 1, .reusable = false}, SHIFT(2183), + [5082] = {.count = 1, .reusable = false}, SHIFT(2184), + [5084] = {.count = 1, .reusable = false}, SHIFT(2185), + [5086] = {.count = 1, .reusable = true}, SHIFT(2186), + [5088] = {.count = 1, .reusable = false}, SHIFT(2187), + [5090] = {.count = 1, .reusable = false}, SHIFT(2188), + [5092] = {.count = 1, .reusable = false}, SHIFT(2189), + [5094] = {.count = 1, .reusable = false}, SHIFT(2190), + [5096] = {.count = 1, .reusable = false}, SHIFT(2191), + [5098] = {.count = 1, .reusable = true}, SHIFT(2194), + [5100] = {.count = 1, .reusable = true}, SHIFT(1881), + [5102] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1489), + [5105] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [5107] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [5109] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [5111] = {.count = 1, .reusable = false}, SHIFT(2200), + [5113] = {.count = 1, .reusable = true}, SHIFT(2201), + [5115] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5117] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5119] = {.count = 1, .reusable = true}, SHIFT(2205), + [5121] = {.count = 1, .reusable = true}, SHIFT(2207), + [5123] = {.count = 1, .reusable = true}, SHIFT(2209), + [5125] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5127] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5129] = {.count = 1, .reusable = true}, SHIFT(2210), + [5131] = {.count = 1, .reusable = true}, SHIFT(2211), + [5133] = {.count = 1, .reusable = true}, SHIFT(2212), + [5135] = {.count = 1, .reusable = true}, SHIFT(2213), + [5137] = {.count = 1, .reusable = true}, SHIFT(2216), + [5139] = {.count = 1, .reusable = true}, SHIFT(2217), + [5141] = {.count = 1, .reusable = true}, SHIFT(2218), + [5143] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1561), + [5146] = {.count = 1, .reusable = false}, SHIFT(2219), + [5148] = {.count = 1, .reusable = true}, SHIFT(2220), + [5150] = {.count = 1, .reusable = false}, SHIFT(2221), + [5152] = {.count = 1, .reusable = true}, SHIFT(2222), + [5154] = {.count = 1, .reusable = true}, SHIFT(2224), + [5156] = {.count = 1, .reusable = true}, SHIFT(2225), + [5158] = {.count = 1, .reusable = true}, SHIFT(2226), + [5160] = {.count = 1, .reusable = true}, SHIFT(2227), + [5162] = {.count = 1, .reusable = false}, SHIFT(2229), + [5164] = {.count = 1, .reusable = true}, SHIFT(2229), [5166] = {.count = 1, .reusable = true}, SHIFT(2228), - [5168] = {.count = 1, .reusable = true}, SHIFT(2229), - [5170] = {.count = 1, .reusable = true}, SHIFT(2230), - [5172] = {.count = 1, .reusable = false}, SHIFT(2231), + [5168] = {.count = 1, .reusable = true}, SHIFT(2230), + [5170] = {.count = 1, .reusable = false}, SHIFT(2232), + [5172] = {.count = 1, .reusable = true}, SHIFT(2232), [5174] = {.count = 1, .reusable = true}, SHIFT(2231), - [5176] = {.count = 1, .reusable = false}, SHIFT(2232), - [5178] = {.count = 1, .reusable = true}, SHIFT(2233), - [5180] = {.count = 1, .reusable = true}, SHIFT(2235), - [5182] = {.count = 1, .reusable = true}, SHIFT(2236), - [5184] = {.count = 1, .reusable = true}, SHIFT(2237), - [5186] = {.count = 1, .reusable = true}, SHIFT(2238), - [5188] = {.count = 1, .reusable = true}, SHIFT(2239), - [5190] = {.count = 1, .reusable = true}, SHIFT(2240), - [5192] = {.count = 1, .reusable = false}, SHIFT(2241), - [5194] = {.count = 1, .reusable = true}, SHIFT(2241), - [5196] = {.count = 1, .reusable = true}, SHIFT(2242), - [5198] = {.count = 1, .reusable = false}, SHIFT(2243), - [5200] = {.count = 1, .reusable = true}, SHIFT(2243), - [5202] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [5204] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [5206] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [5208] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [5210] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [5212] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [5214] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [5216] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [5218] = {.count = 1, .reusable = true}, SHIFT(2244), - [5220] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [5222] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [5224] = {.count = 1, .reusable = true}, SHIFT(2245), - [5226] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [5228] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [5230] = {.count = 1, .reusable = true}, SHIFT(2246), - [5232] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [5234] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [5236] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [5238] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [5240] = {.count = 1, .reusable = true}, SHIFT(2247), - [5242] = {.count = 1, .reusable = true}, SHIFT(2249), - [5244] = {.count = 1, .reusable = false}, SHIFT(2251), - [5246] = {.count = 1, .reusable = true}, SHIFT(2251), - [5248] = {.count = 1, .reusable = false}, SHIFT(2253), - [5250] = {.count = 1, .reusable = true}, SHIFT(2254), - [5252] = {.count = 1, .reusable = true}, SHIFT(2256), - [5254] = {.count = 1, .reusable = false}, SHIFT(2258), - [5256] = {.count = 1, .reusable = true}, SHIFT(2260), - [5258] = {.count = 1, .reusable = false}, SHIFT(2262), - [5260] = {.count = 1, .reusable = true}, SHIFT(2265), - [5262] = {.count = 1, .reusable = true}, SHIFT(2266), + [5176] = {.count = 1, .reusable = false}, SHIFT(2234), + [5178] = {.count = 1, .reusable = true}, SHIFT(2234), + [5180] = {.count = 1, .reusable = true}, SHIFT(2233), + [5182] = {.count = 1, .reusable = true}, SHIFT(2235), + [5184] = {.count = 1, .reusable = true}, SHIFT(2236), + [5186] = {.count = 1, .reusable = true}, SHIFT(2237), + [5188] = {.count = 1, .reusable = true}, SHIFT(2238), + [5190] = {.count = 1, .reusable = false}, SHIFT(2238), + [5192] = {.count = 1, .reusable = false}, SHIFT(2239), + [5194] = {.count = 1, .reusable = true}, SHIFT(2239), + [5196] = {.count = 1, .reusable = false}, SHIFT(2240), + [5198] = {.count = 1, .reusable = true}, SHIFT(2240), + [5200] = {.count = 1, .reusable = true}, SHIFT(2241), + [5202] = {.count = 1, .reusable = false}, SHIFT(2241), + [5204] = {.count = 1, .reusable = false}, SHIFT(2242), + [5206] = {.count = 1, .reusable = true}, SHIFT(2242), + [5208] = {.count = 1, .reusable = true}, SHIFT(2243), + [5210] = {.count = 1, .reusable = true}, SHIFT(2244), + [5212] = {.count = 1, .reusable = true}, SHIFT(2245), + [5214] = {.count = 1, .reusable = true}, SHIFT(2246), + [5216] = {.count = 1, .reusable = true}, SHIFT(2247), + [5218] = {.count = 1, .reusable = true}, SHIFT(2248), + [5220] = {.count = 1, .reusable = true}, SHIFT(2249), + [5222] = {.count = 1, .reusable = true}, SHIFT(2250), + [5224] = {.count = 1, .reusable = true}, SHIFT(2251), + [5226] = {.count = 1, .reusable = true}, SHIFT(2252), + [5228] = {.count = 1, .reusable = true}, SHIFT(2253), + [5230] = {.count = 1, .reusable = true}, SHIFT(2254), + [5232] = {.count = 1, .reusable = true}, SHIFT(2255), + [5234] = {.count = 1, .reusable = true}, SHIFT(2256), + [5236] = {.count = 1, .reusable = true}, SHIFT(2257), + [5238] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [5240] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [5242] = {.count = 1, .reusable = true}, SHIFT(2258), + [5244] = {.count = 1, .reusable = true}, SHIFT(2259), + [5246] = {.count = 1, .reusable = true}, SHIFT(2260), + [5248] = {.count = 1, .reusable = false}, SHIFT(2261), + [5250] = {.count = 1, .reusable = true}, SHIFT(2261), + [5252] = {.count = 1, .reusable = false}, SHIFT(2262), + [5254] = {.count = 1, .reusable = true}, SHIFT(2263), + [5256] = {.count = 1, .reusable = true}, SHIFT(2265), + [5258] = {.count = 1, .reusable = true}, SHIFT(2266), + [5260] = {.count = 1, .reusable = true}, SHIFT(2267), + [5262] = {.count = 1, .reusable = true}, SHIFT(2268), [5264] = {.count = 1, .reusable = true}, SHIFT(2269), [5266] = {.count = 1, .reusable = true}, SHIFT(2270), - [5268] = {.count = 1, .reusable = true}, SHIFT(2272), - [5270] = {.count = 1, .reusable = false}, SHIFT(2274), - [5272] = {.count = 1, .reusable = false}, SHIFT(2275), - [5274] = {.count = 1, .reusable = true}, SHIFT(2277), - [5276] = {.count = 1, .reusable = true}, SHIFT(2278), - [5278] = {.count = 1, .reusable = false}, SHIFT(2279), - [5280] = {.count = 1, .reusable = false}, SHIFT(2277), - [5282] = {.count = 1, .reusable = true}, SHIFT(2280), - [5284] = {.count = 1, .reusable = true}, SHIFT(2281), - [5286] = {.count = 1, .reusable = true}, SHIFT(2282), - [5288] = {.count = 1, .reusable = false}, SHIFT(2283), - [5290] = {.count = 1, .reusable = false}, SHIFT(2281), - [5292] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1426), - [5295] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1427), - [5298] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1427), - [5301] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1428), - [5304] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1428), - [5307] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1429), - [5310] = {.count = 1, .reusable = true}, SHIFT(2291), - [5312] = {.count = 1, .reusable = true}, SHIFT(2292), - [5314] = {.count = 1, .reusable = true}, SHIFT(2293), - [5316] = {.count = 1, .reusable = true}, SHIFT(2294), - [5318] = {.count = 1, .reusable = false}, SHIFT(2295), - [5320] = {.count = 1, .reusable = true}, SHIFT(2295), - [5322] = {.count = 1, .reusable = false}, SHIFT(2296), - [5324] = {.count = 1, .reusable = true}, SHIFT(2297), - [5326] = {.count = 1, .reusable = true}, SHIFT(2299), - [5328] = {.count = 1, .reusable = true}, SHIFT(2300), - [5330] = {.count = 1, .reusable = true}, SHIFT(2301), - [5332] = {.count = 1, .reusable = true}, SHIFT(2302), - [5334] = {.count = 1, .reusable = true}, SHIFT(2303), - [5336] = {.count = 1, .reusable = true}, SHIFT(2304), - [5338] = {.count = 1, .reusable = false}, SHIFT(2305), - [5340] = {.count = 1, .reusable = true}, SHIFT(2305), - [5342] = {.count = 1, .reusable = true}, SHIFT(2306), - [5344] = {.count = 1, .reusable = false}, SHIFT(2307), - [5346] = {.count = 1, .reusable = true}, SHIFT(2307), - [5348] = {.count = 1, .reusable = true}, SHIFT(2308), - [5350] = {.count = 1, .reusable = true}, SHIFT(2309), - [5352] = {.count = 1, .reusable = true}, SHIFT(2310), - [5354] = {.count = 1, .reusable = false}, SHIFT(2311), - [5356] = {.count = 1, .reusable = true}, SHIFT(2311), - [5358] = {.count = 1, .reusable = false}, SHIFT(2312), - [5360] = {.count = 1, .reusable = true}, SHIFT(2313), - [5362] = {.count = 1, .reusable = true}, SHIFT(2315), - [5364] = {.count = 1, .reusable = true}, SHIFT(2316), - [5366] = {.count = 1, .reusable = true}, SHIFT(2317), - [5368] = {.count = 1, .reusable = true}, SHIFT(2318), - [5370] = {.count = 1, .reusable = true}, SHIFT(2319), - [5372] = {.count = 1, .reusable = true}, SHIFT(2320), - [5374] = {.count = 1, .reusable = false}, SHIFT(2321), - [5376] = {.count = 1, .reusable = true}, SHIFT(2321), - [5378] = {.count = 1, .reusable = true}, SHIFT(2322), - [5380] = {.count = 1, .reusable = false}, SHIFT(2323), - [5382] = {.count = 1, .reusable = true}, SHIFT(2323), - [5384] = {.count = 1, .reusable = true}, SHIFT(2324), - [5386] = {.count = 1, .reusable = true}, SHIFT(2325), - [5388] = {.count = 1, .reusable = true}, SHIFT(2326), - [5390] = {.count = 1, .reusable = true}, SHIFT(2327), - [5392] = {.count = 1, .reusable = false}, SHIFT(2328), - [5394] = {.count = 1, .reusable = true}, SHIFT(2328), - [5396] = {.count = 1, .reusable = true}, SHIFT(2329), - [5398] = {.count = 1, .reusable = false}, SHIFT(2330), - [5400] = {.count = 1, .reusable = true}, SHIFT(2330), - [5402] = {.count = 1, .reusable = true}, SHIFT(2331), - [5404] = {.count = 1, .reusable = false}, SHIFT(2332), - [5406] = {.count = 1, .reusable = true}, SHIFT(2332), - [5408] = {.count = 1, .reusable = true}, SHIFT(2333), - [5410] = {.count = 1, .reusable = true}, SHIFT(2334), - [5412] = {.count = 1, .reusable = true}, SHIFT(2335), - [5414] = {.count = 1, .reusable = true}, SHIFT(2336), - [5416] = {.count = 1, .reusable = true}, SHIFT(2338), - [5418] = {.count = 1, .reusable = true}, SHIFT(2339), - [5420] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1507), - [5423] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1508), - [5426] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1508), - [5429] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1509), - [5432] = {.count = 1, .reusable = true}, SHIFT(2341), - [5434] = {.count = 1, .reusable = true}, SHIFT(2342), - [5436] = {.count = 1, .reusable = true}, SHIFT(2343), - [5438] = {.count = 1, .reusable = false}, SHIFT(2344), - [5440] = {.count = 1, .reusable = true}, SHIFT(2344), - [5442] = {.count = 1, .reusable = false}, SHIFT(2345), - [5444] = {.count = 1, .reusable = true}, SHIFT(2346), - [5446] = {.count = 1, .reusable = true}, SHIFT(2348), - [5448] = {.count = 1, .reusable = true}, SHIFT(2349), - [5450] = {.count = 1, .reusable = true}, SHIFT(2350), - [5452] = {.count = 1, .reusable = true}, SHIFT(2351), - [5454] = {.count = 1, .reusable = true}, SHIFT(2352), - [5456] = {.count = 1, .reusable = true}, SHIFT(2353), - [5458] = {.count = 1, .reusable = false}, SHIFT(2354), - [5460] = {.count = 1, .reusable = true}, SHIFT(2354), - [5462] = {.count = 1, .reusable = true}, SHIFT(2355), - [5464] = {.count = 1, .reusable = false}, SHIFT(2356), - [5466] = {.count = 1, .reusable = true}, SHIFT(2356), - [5468] = {.count = 1, .reusable = true}, SHIFT(2357), - [5470] = {.count = 1, .reusable = true}, SHIFT(2358), - [5472] = {.count = 1, .reusable = true}, SHIFT(2359), - [5474] = {.count = 1, .reusable = false}, SHIFT(2360), - [5476] = {.count = 1, .reusable = true}, SHIFT(2360), - [5478] = {.count = 1, .reusable = false}, SHIFT(2361), - [5480] = {.count = 1, .reusable = true}, SHIFT(2362), - [5482] = {.count = 1, .reusable = true}, SHIFT(2364), - [5484] = {.count = 1, .reusable = true}, SHIFT(2365), - [5486] = {.count = 1, .reusable = true}, SHIFT(2366), - [5488] = {.count = 1, .reusable = true}, SHIFT(2367), - [5490] = {.count = 1, .reusable = true}, SHIFT(2368), - [5492] = {.count = 1, .reusable = true}, SHIFT(2369), - [5494] = {.count = 1, .reusable = false}, SHIFT(2370), - [5496] = {.count = 1, .reusable = true}, SHIFT(2370), - [5498] = {.count = 1, .reusable = true}, SHIFT(2371), - [5500] = {.count = 1, .reusable = false}, SHIFT(2372), - [5502] = {.count = 1, .reusable = true}, SHIFT(2372), - [5504] = {.count = 1, .reusable = true}, SHIFT(2373), - [5506] = {.count = 1, .reusable = true}, SHIFT(2374), - [5508] = {.count = 1, .reusable = true}, SHIFT(2375), - [5510] = {.count = 1, .reusable = true}, SHIFT(2376), - [5512] = {.count = 1, .reusable = false}, SHIFT(2377), - [5514] = {.count = 1, .reusable = true}, SHIFT(2377), - [5516] = {.count = 1, .reusable = true}, SHIFT(2378), - [5518] = {.count = 1, .reusable = false}, SHIFT(2379), - [5520] = {.count = 1, .reusable = true}, SHIFT(2379), - [5522] = {.count = 1, .reusable = true}, SHIFT(2380), - [5524] = {.count = 1, .reusable = false}, SHIFT(2381), - [5526] = {.count = 1, .reusable = true}, SHIFT(2381), - [5528] = {.count = 1, .reusable = true}, SHIFT(2382), - [5530] = {.count = 1, .reusable = true}, SHIFT(2383), - [5532] = {.count = 1, .reusable = true}, SHIFT(2384), - [5534] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1582), - [5537] = {.count = 1, .reusable = false}, SHIFT(2385), - [5539] = {.count = 1, .reusable = true}, SHIFT(2386), - [5541] = {.count = 1, .reusable = false}, SHIFT(2387), - [5543] = {.count = 1, .reusable = true}, SHIFT(2388), - [5545] = {.count = 1, .reusable = true}, SHIFT(2390), - [5547] = {.count = 1, .reusable = true}, SHIFT(2391), - [5549] = {.count = 1, .reusable = true}, SHIFT(2392), - [5551] = {.count = 1, .reusable = true}, SHIFT(2393), - [5553] = {.count = 1, .reusable = false}, SHIFT(2395), - [5555] = {.count = 1, .reusable = true}, SHIFT(2395), - [5557] = {.count = 1, .reusable = true}, SHIFT(2394), - [5559] = {.count = 1, .reusable = true}, SHIFT(2396), - [5561] = {.count = 1, .reusable = false}, SHIFT(2398), - [5563] = {.count = 1, .reusable = true}, SHIFT(2398), - [5565] = {.count = 1, .reusable = true}, SHIFT(2397), - [5567] = {.count = 1, .reusable = false}, SHIFT(2400), - [5569] = {.count = 1, .reusable = true}, SHIFT(2400), - [5571] = {.count = 1, .reusable = true}, SHIFT(2399), - [5573] = {.count = 1, .reusable = true}, SHIFT(2401), - [5575] = {.count = 1, .reusable = true}, SHIFT(2402), - [5577] = {.count = 1, .reusable = true}, SHIFT(2403), - [5579] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), - [5581] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), - [5583] = {.count = 1, .reusable = true}, SHIFT(2405), - [5585] = {.count = 1, .reusable = true}, SHIFT(2406), - [5587] = {.count = 1, .reusable = true}, SHIFT(2407), - [5589] = {.count = 1, .reusable = true}, SHIFT(2408), - [5591] = {.count = 1, .reusable = false}, SHIFT(2409), - [5593] = {.count = 1, .reusable = true}, SHIFT(2409), - [5595] = {.count = 1, .reusable = true}, SHIFT(2410), - [5597] = {.count = 1, .reusable = false}, SHIFT(2411), - [5599] = {.count = 1, .reusable = true}, SHIFT(2411), - [5601] = {.count = 1, .reusable = true}, SHIFT(2412), - [5603] = {.count = 1, .reusable = false}, SHIFT(2413), - [5605] = {.count = 1, .reusable = true}, SHIFT(2413), - [5607] = {.count = 1, .reusable = true}, SHIFT(2414), - [5609] = {.count = 1, .reusable = true}, SHIFT(2415), - [5611] = {.count = 1, .reusable = true}, SHIFT(2416), - [5613] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [5615] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [5617] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [5619] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), - [5621] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [5623] = {.count = 1, .reusable = true}, SHIFT(2417), - [5625] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [5627] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5629] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5631] = {.count = 1, .reusable = true}, SHIFT(2419), - [5633] = {.count = 1, .reusable = true}, SHIFT(2422), - [5635] = {.count = 1, .reusable = false}, SHIFT(2423), - [5637] = {.count = 1, .reusable = false}, SHIFT(2424), - [5639] = {.count = 1, .reusable = false}, SHIFT(2425), - [5641] = {.count = 1, .reusable = false}, SHIFT(2426), - [5643] = {.count = 1, .reusable = false}, SHIFT(2427), - [5645] = {.count = 1, .reusable = false}, SHIFT(2428), - [5647] = {.count = 1, .reusable = false}, SHIFT(2429), - [5649] = {.count = 1, .reusable = false}, SHIFT(2430), - [5651] = {.count = 1, .reusable = false}, SHIFT(2431), - [5653] = {.count = 1, .reusable = false}, SHIFT(2435), - [5655] = {.count = 1, .reusable = false}, SHIFT(2436), - [5657] = {.count = 1, .reusable = false}, SHIFT(2437), - [5659] = {.count = 1, .reusable = false}, SHIFT(2438), - [5661] = {.count = 1, .reusable = false}, SHIFT(2439), - [5663] = {.count = 1, .reusable = false}, SHIFT(2440), - [5665] = {.count = 1, .reusable = false}, SHIFT(2441), - [5667] = {.count = 1, .reusable = false}, SHIFT(2442), - [5669] = {.count = 1, .reusable = false}, SHIFT(2443), - [5671] = {.count = 1, .reusable = false}, SHIFT(2446), - [5673] = {.count = 1, .reusable = false}, SHIFT(2447), - [5675] = {.count = 1, .reusable = false}, SHIFT(2448), - [5677] = {.count = 1, .reusable = false}, SHIFT(2449), - [5679] = {.count = 1, .reusable = true}, SHIFT(2450), - [5681] = {.count = 1, .reusable = false}, SHIFT(2451), - [5683] = {.count = 1, .reusable = false}, SHIFT(2452), - [5685] = {.count = 1, .reusable = false}, SHIFT(2453), - [5687] = {.count = 1, .reusable = false}, SHIFT(2454), - [5689] = {.count = 1, .reusable = false}, SHIFT(2455), - [5691] = {.count = 1, .reusable = true}, SHIFT(2458), - [5693] = {.count = 1, .reusable = true}, SHIFT(2079), - [5695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1632), - [5698] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [5700] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [5702] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [5704] = {.count = 1, .reusable = false}, SHIFT(2464), - [5706] = {.count = 1, .reusable = true}, SHIFT(2465), - [5708] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [5710] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [5712] = {.count = 1, .reusable = true}, SHIFT(2469), - [5714] = {.count = 1, .reusable = true}, SHIFT(2471), - [5716] = {.count = 1, .reusable = true}, SHIFT(2473), - [5718] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [5720] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [5722] = {.count = 1, .reusable = true}, SHIFT(2474), - [5724] = {.count = 1, .reusable = true}, SHIFT(2475), - [5726] = {.count = 1, .reusable = true}, SHIFT(2476), - [5728] = {.count = 1, .reusable = true}, SHIFT(2477), - [5730] = {.count = 1, .reusable = true}, SHIFT(2480), - [5732] = {.count = 1, .reusable = true}, SHIFT(2481), - [5734] = {.count = 1, .reusable = true}, SHIFT(2482), - [5736] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1700), - [5739] = {.count = 1, .reusable = false}, SHIFT(2483), - [5741] = {.count = 1, .reusable = true}, SHIFT(2484), - [5743] = {.count = 1, .reusable = false}, SHIFT(2485), - [5745] = {.count = 1, .reusable = true}, SHIFT(2486), - [5747] = {.count = 1, .reusable = true}, SHIFT(2488), - [5749] = {.count = 1, .reusable = true}, SHIFT(2489), - [5751] = {.count = 1, .reusable = true}, SHIFT(2490), - [5753] = {.count = 1, .reusable = true}, SHIFT(2491), - [5755] = {.count = 1, .reusable = false}, SHIFT(2493), - [5757] = {.count = 1, .reusable = true}, SHIFT(2493), - [5759] = {.count = 1, .reusable = true}, SHIFT(2492), - [5761] = {.count = 1, .reusable = true}, SHIFT(2494), - [5763] = {.count = 1, .reusable = false}, SHIFT(2496), - [5765] = {.count = 1, .reusable = true}, SHIFT(2496), - [5767] = {.count = 1, .reusable = true}, SHIFT(2495), - [5769] = {.count = 1, .reusable = false}, SHIFT(2498), - [5771] = {.count = 1, .reusable = true}, SHIFT(2498), - [5773] = {.count = 1, .reusable = true}, SHIFT(2497), - [5775] = {.count = 1, .reusable = true}, SHIFT(2499), - [5777] = {.count = 1, .reusable = true}, SHIFT(2500), - [5779] = {.count = 1, .reusable = true}, SHIFT(2501), - [5781] = {.count = 1, .reusable = true}, SHIFT(2502), - [5783] = {.count = 1, .reusable = true}, SHIFT(2503), - [5785] = {.count = 1, .reusable = true}, SHIFT(2504), - [5787] = {.count = 1, .reusable = true}, SHIFT(2505), - [5789] = {.count = 1, .reusable = true}, SHIFT(2506), - [5791] = {.count = 1, .reusable = true}, SHIFT(2507), - [5793] = {.count = 1, .reusable = true}, SHIFT(2508), - [5795] = {.count = 1, .reusable = true}, SHIFT(2509), - [5797] = {.count = 1, .reusable = true}, SHIFT(2510), - [5799] = {.count = 1, .reusable = true}, SHIFT(2511), - [5801] = {.count = 1, .reusable = true}, SHIFT(2512), - [5803] = {.count = 1, .reusable = true}, SHIFT(2513), - [5805] = {.count = 1, .reusable = true}, SHIFT(2514), - [5807] = {.count = 1, .reusable = true}, SHIFT(2515), - [5809] = {.count = 1, .reusable = true}, SHIFT(2516), - [5811] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [5813] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [5815] = {.count = 1, .reusable = true}, SHIFT(2517), - [5817] = {.count = 1, .reusable = true}, SHIFT(2518), - [5819] = {.count = 1, .reusable = true}, SHIFT(2519), - [5821] = {.count = 1, .reusable = false}, SHIFT(2520), - [5823] = {.count = 1, .reusable = true}, SHIFT(2520), - [5825] = {.count = 1, .reusable = false}, SHIFT(2521), - [5827] = {.count = 1, .reusable = true}, SHIFT(2522), - [5829] = {.count = 1, .reusable = true}, SHIFT(2524), - [5831] = {.count = 1, .reusable = true}, SHIFT(2525), - [5833] = {.count = 1, .reusable = true}, SHIFT(2526), - [5835] = {.count = 1, .reusable = true}, SHIFT(2527), - [5837] = {.count = 1, .reusable = true}, SHIFT(2528), - [5839] = {.count = 1, .reusable = true}, SHIFT(2529), - [5841] = {.count = 1, .reusable = false}, SHIFT(2530), - [5843] = {.count = 1, .reusable = true}, SHIFT(2530), - [5845] = {.count = 1, .reusable = true}, SHIFT(2531), - [5847] = {.count = 1, .reusable = false}, SHIFT(2532), - [5849] = {.count = 1, .reusable = true}, SHIFT(2532), - [5851] = {.count = 1, .reusable = true}, SHIFT(2533), - [5853] = {.count = 1, .reusable = true}, SHIFT(2534), - [5855] = {.count = 1, .reusable = true}, SHIFT(2535), - [5857] = {.count = 1, .reusable = true}, SHIFT(2536), - [5859] = {.count = 1, .reusable = false}, SHIFT(2537), - [5861] = {.count = 1, .reusable = true}, SHIFT(2537), - [5863] = {.count = 1, .reusable = true}, SHIFT(2538), - [5865] = {.count = 1, .reusable = false}, SHIFT(2539), - [5867] = {.count = 1, .reusable = true}, SHIFT(2539), - [5869] = {.count = 1, .reusable = true}, SHIFT(2540), - [5871] = {.count = 1, .reusable = false}, SHIFT(2541), - [5873] = {.count = 1, .reusable = true}, SHIFT(2541), - [5875] = {.count = 1, .reusable = true}, SHIFT(2542), - [5877] = {.count = 1, .reusable = true}, SHIFT(2543), - [5879] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5881] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5883] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5885] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5887] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [5889] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [5891] = {.count = 1, .reusable = true}, SHIFT(2544), - [5893] = {.count = 1, .reusable = true}, SHIFT(2547), - [5895] = {.count = 1, .reusable = true}, SHIFT(2549), - [5897] = {.count = 1, .reusable = true}, SHIFT(2550), - [5899] = {.count = 1, .reusable = true}, SHIFT(2552), - [5901] = {.count = 1, .reusable = true}, SHIFT(2555), - [5903] = {.count = 1, .reusable = false}, SHIFT(2557), - [5905] = {.count = 1, .reusable = false}, SHIFT(2558), - [5907] = {.count = 1, .reusable = true}, SHIFT(2559), - [5909] = {.count = 1, .reusable = true}, SHIFT(2560), - [5911] = {.count = 1, .reusable = false}, SHIFT(2562), - [5913] = {.count = 1, .reusable = true}, SHIFT(2562), - [5915] = {.count = 1, .reusable = true}, SHIFT(2561), - [5917] = {.count = 1, .reusable = true}, SHIFT(2563), - [5919] = {.count = 1, .reusable = true}, SHIFT(2564), - [5921] = {.count = 1, .reusable = false}, SHIFT(2565), - [5923] = {.count = 1, .reusable = false}, SHIFT(2564), - [5925] = {.count = 1, .reusable = true}, SHIFT(2567), - [5927] = {.count = 1, .reusable = false}, SHIFT(2569), - [5929] = {.count = 1, .reusable = true}, SHIFT(2569), - [5931] = {.count = 1, .reusable = true}, SHIFT(2568), - [5933] = {.count = 1, .reusable = true}, SHIFT(2570), - [5935] = {.count = 1, .reusable = false}, SHIFT(2572), - [5937] = {.count = 1, .reusable = true}, SHIFT(2572), - [5939] = {.count = 1, .reusable = true}, SHIFT(2571), - [5941] = {.count = 1, .reusable = true}, SHIFT(2573), - [5943] = {.count = 1, .reusable = true}, SHIFT(2574), - [5945] = {.count = 1, .reusable = true}, SHIFT(2575), - [5947] = {.count = 1, .reusable = true}, SHIFT(2576), - [5949] = {.count = 1, .reusable = true}, SHIFT(2577), - [5951] = {.count = 1, .reusable = true}, SHIFT(2578), - [5953] = {.count = 1, .reusable = false}, SHIFT(2579), - [5955] = {.count = 1, .reusable = true}, SHIFT(2579), - [5957] = {.count = 1, .reusable = true}, SHIFT(2580), - [5959] = {.count = 1, .reusable = false}, SHIFT(2581), - [5961] = {.count = 1, .reusable = true}, SHIFT(2581), - [5963] = {.count = 1, .reusable = true}, SHIFT(2582), - [5965] = {.count = 1, .reusable = false}, SHIFT(2583), - [5967] = {.count = 1, .reusable = true}, SHIFT(2583), - [5969] = {.count = 1, .reusable = true}, SHIFT(2584), - [5971] = {.count = 1, .reusable = true}, SHIFT(2585), - [5973] = {.count = 1, .reusable = true}, SHIFT(2586), - [5975] = {.count = 1, .reusable = true}, SHIFT(2587), - [5977] = {.count = 1, .reusable = true}, SHIFT(2588), - [5979] = {.count = 1, .reusable = true}, SHIFT(2589), - [5981] = {.count = 1, .reusable = false}, SHIFT(2590), - [5983] = {.count = 1, .reusable = true}, SHIFT(2590), - [5985] = {.count = 1, .reusable = true}, SHIFT(2591), - [5987] = {.count = 1, .reusable = false}, SHIFT(2592), - [5989] = {.count = 1, .reusable = true}, SHIFT(2592), - [5991] = {.count = 1, .reusable = true}, SHIFT(2593), - [5993] = {.count = 1, .reusable = false}, SHIFT(2594), - [5995] = {.count = 1, .reusable = true}, SHIFT(2594), - [5997] = {.count = 1, .reusable = true}, SHIFT(2595), - [5999] = {.count = 1, .reusable = true}, SHIFT(2596), - [6001] = {.count = 1, .reusable = true}, SHIFT(2597), - [6003] = {.count = 1, .reusable = true}, SHIFT(2598), - [6005] = {.count = 1, .reusable = true}, SHIFT(2599), - [6007] = {.count = 1, .reusable = true}, SHIFT(2602), - [6009] = {.count = 1, .reusable = true}, SHIFT(2603), - [6011] = {.count = 1, .reusable = true}, SHIFT(2604), - [6013] = {.count = 1, .reusable = true}, SHIFT(2605), - [6015] = {.count = 1, .reusable = false}, SHIFT(2606), - [6017] = {.count = 1, .reusable = true}, SHIFT(2606), - [6019] = {.count = 1, .reusable = true}, SHIFT(2607), - [6021] = {.count = 1, .reusable = false}, SHIFT(2608), - [6023] = {.count = 1, .reusable = true}, SHIFT(2608), - [6025] = {.count = 1, .reusable = true}, SHIFT(2609), - [6027] = {.count = 1, .reusable = false}, SHIFT(2610), - [6029] = {.count = 1, .reusable = true}, SHIFT(2610), - [6031] = {.count = 1, .reusable = true}, SHIFT(2611), - [6033] = {.count = 1, .reusable = true}, SHIFT(2612), - [6035] = {.count = 1, .reusable = true}, SHIFT(2613), - [6037] = {.count = 1, .reusable = true}, SHIFT(2614), - [6039] = {.count = 1, .reusable = true}, SHIFT(2615), - [6041] = {.count = 1, .reusable = true}, SHIFT(2616), - [6043] = {.count = 1, .reusable = false}, SHIFT(2617), - [6045] = {.count = 1, .reusable = true}, SHIFT(2617), - [6047] = {.count = 1, .reusable = true}, SHIFT(2618), - [6049] = {.count = 1, .reusable = false}, SHIFT(2619), - [6051] = {.count = 1, .reusable = true}, SHIFT(2619), - [6053] = {.count = 1, .reusable = true}, SHIFT(2620), - [6055] = {.count = 1, .reusable = false}, SHIFT(2621), - [6057] = {.count = 1, .reusable = true}, SHIFT(2621), - [6059] = {.count = 1, .reusable = true}, SHIFT(2622), - [6061] = {.count = 1, .reusable = true}, SHIFT(2623), - [6063] = {.count = 1, .reusable = true}, SHIFT(2624), - [6065] = {.count = 1, .reusable = true}, SHIFT(2625), - [6067] = {.count = 1, .reusable = true}, SHIFT(2626), - [6069] = {.count = 1, .reusable = true}, SHIFT(2627), - [6071] = {.count = 1, .reusable = true}, SHIFT(2628), - [6073] = {.count = 1, .reusable = true}, SHIFT(2629), - [6075] = {.count = 1, .reusable = false}, SHIFT(2630), - [6077] = {.count = 1, .reusable = true}, SHIFT(2630), - [6079] = {.count = 1, .reusable = false}, SHIFT(2631), - [6081] = {.count = 1, .reusable = true}, SHIFT(2632), - [6083] = {.count = 1, .reusable = true}, SHIFT(2634), - [6085] = {.count = 1, .reusable = true}, SHIFT(2635), - [6087] = {.count = 1, .reusable = true}, SHIFT(2636), - [6089] = {.count = 1, .reusable = true}, SHIFT(2637), - [6091] = {.count = 1, .reusable = true}, SHIFT(2638), - [6093] = {.count = 1, .reusable = true}, SHIFT(2639), - [6095] = {.count = 1, .reusable = false}, SHIFT(2640), - [6097] = {.count = 1, .reusable = true}, SHIFT(2640), - [6099] = {.count = 1, .reusable = true}, SHIFT(2641), - [6101] = {.count = 1, .reusable = false}, SHIFT(2642), - [6103] = {.count = 1, .reusable = true}, SHIFT(2642), - [6105] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), - [6107] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), - [6109] = {.count = 1, .reusable = true}, SHIFT(2643), - [6111] = {.count = 1, .reusable = true}, SHIFT(2644), - [6113] = {.count = 1, .reusable = true}, SHIFT(2645), - [6115] = {.count = 1, .reusable = true}, SHIFT(2647), - [6117] = {.count = 1, .reusable = true}, SHIFT(2648), - [6119] = {.count = 1, .reusable = true}, SHIFT(2650), - [6121] = {.count = 1, .reusable = true}, SHIFT(2652), - [6123] = {.count = 1, .reusable = true}, SHIFT(2653), - [6125] = {.count = 1, .reusable = true}, SHIFT(2654), - [6127] = {.count = 1, .reusable = false}, SHIFT(2656), - [6129] = {.count = 1, .reusable = false}, SHIFT(2657), - [6131] = {.count = 1, .reusable = true}, SHIFT(2424), - [6133] = {.count = 1, .reusable = true}, SHIFT(2659), - [6135] = {.count = 1, .reusable = true}, SHIFT(2660), - [6137] = {.count = 1, .reusable = false}, SHIFT(2661), - [6139] = {.count = 1, .reusable = false}, SHIFT(2659), - [6141] = {.count = 1, .reusable = true}, SHIFT(2662), - [6143] = {.count = 1, .reusable = true}, SHIFT(2663), - [6145] = {.count = 1, .reusable = true}, SHIFT(2664), - [6147] = {.count = 1, .reusable = false}, SHIFT(2665), - [6149] = {.count = 1, .reusable = false}, SHIFT(2663), - [6151] = {.count = 1, .reusable = true}, SHIFT(2674), - [6153] = {.count = 1, .reusable = false}, SHIFT(2676), - [6155] = {.count = 1, .reusable = false}, SHIFT(2677), - [6157] = {.count = 1, .reusable = true}, SHIFT(2436), - [6159] = {.count = 1, .reusable = true}, SHIFT(2679), - [6161] = {.count = 1, .reusable = true}, SHIFT(2680), - [6163] = {.count = 1, .reusable = false}, SHIFT(2681), - [6165] = {.count = 1, .reusable = false}, SHIFT(2679), - [6167] = {.count = 1, .reusable = true}, SHIFT(2682), - [6169] = {.count = 1, .reusable = true}, SHIFT(2683), - [6171] = {.count = 1, .reusable = true}, SHIFT(2684), - [6173] = {.count = 1, .reusable = false}, SHIFT(2685), - [6175] = {.count = 1, .reusable = false}, SHIFT(2683), - [6177] = {.count = 1, .reusable = true}, SHIFT(2695), - [6179] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [6181] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [6183] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [6185] = {.count = 1, .reusable = false}, SHIFT(2698), - [6187] = {.count = 1, .reusable = true}, SHIFT(2698), - [6189] = {.count = 1, .reusable = false}, SHIFT(2699), - [6191] = {.count = 1, .reusable = false}, SHIFT(2700), - [6193] = {.count = 1, .reusable = true}, SHIFT(2701), - [6195] = {.count = 1, .reusable = true}, SHIFT(2702), - [6197] = {.count = 1, .reusable = true}, SHIFT(2703), - [6199] = {.count = 1, .reusable = true}, SHIFT(2704), - [6201] = {.count = 1, .reusable = false}, SHIFT(2708), - [6203] = {.count = 1, .reusable = true}, SHIFT(2710), - [6205] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [6207] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [6209] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [6211] = {.count = 1, .reusable = false}, SHIFT(2713), - [6213] = {.count = 1, .reusable = true}, SHIFT(2714), - [6215] = {.count = 1, .reusable = true}, SHIFT(2717), - [6217] = {.count = 1, .reusable = true}, SHIFT(2721), - [6219] = {.count = 1, .reusable = true}, SHIFT(2722), - [6221] = {.count = 1, .reusable = true}, SHIFT(2726), - [6223] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [6225] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [6227] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [6229] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [6231] = {.count = 1, .reusable = true}, SHIFT(2727), - [6233] = {.count = 1, .reusable = true}, SHIFT(2728), - [6235] = {.count = 1, .reusable = true}, SHIFT(2729), - [6237] = {.count = 1, .reusable = false}, SHIFT(2730), - [6239] = {.count = 1, .reusable = true}, SHIFT(2730), - [6241] = {.count = 1, .reusable = false}, SHIFT(2731), - [6243] = {.count = 1, .reusable = true}, SHIFT(2732), - [6245] = {.count = 1, .reusable = true}, SHIFT(2734), - [6247] = {.count = 1, .reusable = true}, SHIFT(2735), - [6249] = {.count = 1, .reusable = true}, SHIFT(2736), - [6251] = {.count = 1, .reusable = true}, SHIFT(2737), - [6253] = {.count = 1, .reusable = true}, SHIFT(2738), - [6255] = {.count = 1, .reusable = true}, SHIFT(2739), - [6257] = {.count = 1, .reusable = false}, SHIFT(2740), - [6259] = {.count = 1, .reusable = true}, SHIFT(2740), - [6261] = {.count = 1, .reusable = true}, SHIFT(2741), - [6263] = {.count = 1, .reusable = false}, SHIFT(2742), - [6265] = {.count = 1, .reusable = true}, SHIFT(2742), - [6267] = {.count = 1, .reusable = true}, SHIFT(2743), - [6269] = {.count = 1, .reusable = true}, SHIFT(2744), - [6271] = {.count = 1, .reusable = true}, SHIFT(2745), - [6273] = {.count = 1, .reusable = true}, SHIFT(2746), - [6275] = {.count = 1, .reusable = false}, SHIFT(2747), - [6277] = {.count = 1, .reusable = true}, SHIFT(2747), - [6279] = {.count = 1, .reusable = true}, SHIFT(2748), - [6281] = {.count = 1, .reusable = false}, SHIFT(2749), - [6283] = {.count = 1, .reusable = true}, SHIFT(2749), - [6285] = {.count = 1, .reusable = true}, SHIFT(2750), - [6287] = {.count = 1, .reusable = false}, SHIFT(2751), - [6289] = {.count = 1, .reusable = true}, SHIFT(2751), - [6291] = {.count = 1, .reusable = true}, SHIFT(2752), - [6293] = {.count = 1, .reusable = true}, SHIFT(2753), - [6295] = {.count = 1, .reusable = true}, SHIFT(2754), - [6297] = {.count = 1, .reusable = true}, SHIFT(2755), - [6299] = {.count = 1, .reusable = true}, SHIFT(2756), - [6301] = {.count = 1, .reusable = true}, SHIFT(2757), - [6303] = {.count = 1, .reusable = true}, SHIFT(2759), - [6305] = {.count = 1, .reusable = true}, SHIFT(2760), - [6307] = {.count = 1, .reusable = true}, SHIFT(2761), - [6309] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2272), - [6312] = {.count = 1, .reusable = false}, SHIFT(2762), - [6314] = {.count = 1, .reusable = true}, SHIFT(2763), - [6316] = {.count = 1, .reusable = false}, SHIFT(2764), - [6318] = {.count = 1, .reusable = true}, SHIFT(2765), - [6320] = {.count = 1, .reusable = true}, SHIFT(2767), - [6322] = {.count = 1, .reusable = true}, SHIFT(2768), - [6324] = {.count = 1, .reusable = true}, SHIFT(2769), - [6326] = {.count = 1, .reusable = true}, SHIFT(2770), - [6328] = {.count = 1, .reusable = false}, SHIFT(2772), - [6330] = {.count = 1, .reusable = true}, SHIFT(2772), - [6332] = {.count = 1, .reusable = true}, SHIFT(2771), - [6334] = {.count = 1, .reusable = true}, SHIFT(2773), - [6336] = {.count = 1, .reusable = false}, SHIFT(2775), - [6338] = {.count = 1, .reusable = true}, SHIFT(2775), - [6340] = {.count = 1, .reusable = true}, SHIFT(2774), - [6342] = {.count = 1, .reusable = false}, SHIFT(2777), - [6344] = {.count = 1, .reusable = true}, SHIFT(2777), - [6346] = {.count = 1, .reusable = true}, SHIFT(2776), - [6348] = {.count = 1, .reusable = true}, SHIFT(2778), - [6350] = {.count = 1, .reusable = true}, SHIFT(2779), - [6352] = {.count = 1, .reusable = true}, SHIFT(2780), - [6354] = {.count = 1, .reusable = true}, SHIFT(2781), - [6356] = {.count = 1, .reusable = true}, SHIFT(2782), - [6358] = {.count = 1, .reusable = true}, SHIFT(2783), - [6360] = {.count = 1, .reusable = true}, SHIFT(2784), - [6362] = {.count = 1, .reusable = true}, SHIFT(2785), - [6364] = {.count = 1, .reusable = true}, SHIFT(2786), - [6366] = {.count = 1, .reusable = true}, SHIFT(2787), - [6368] = {.count = 1, .reusable = true}, SHIFT(2788), - [6370] = {.count = 1, .reusable = true}, SHIFT(2789), - [6372] = {.count = 1, .reusable = true}, SHIFT(2790), - [6374] = {.count = 1, .reusable = true}, SHIFT(2791), - [6376] = {.count = 1, .reusable = true}, SHIFT(2792), - [6378] = {.count = 1, .reusable = true}, SHIFT(2793), - [6380] = {.count = 1, .reusable = true}, SHIFT(2794), - [6382] = {.count = 1, .reusable = true}, SHIFT(2795), - [6384] = {.count = 1, .reusable = true}, SHIFT(2796), - [6386] = {.count = 1, .reusable = false}, SHIFT(2797), - [6388] = {.count = 1, .reusable = true}, SHIFT(2797), - [6390] = {.count = 1, .reusable = true}, SHIFT(2798), - [6392] = {.count = 1, .reusable = false}, SHIFT(2799), - [6394] = {.count = 1, .reusable = true}, SHIFT(2799), - [6396] = {.count = 1, .reusable = true}, SHIFT(2800), - [6398] = {.count = 1, .reusable = false}, SHIFT(2801), - [6400] = {.count = 1, .reusable = true}, SHIFT(2801), - [6402] = {.count = 1, .reusable = true}, SHIFT(2802), - [6404] = {.count = 1, .reusable = true}, SHIFT(2803), - [6406] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), - [6408] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), - [6410] = {.count = 1, .reusable = true}, SHIFT(2806), - [6412] = {.count = 1, .reusable = true}, SHIFT(2807), - [6414] = {.count = 1, .reusable = false}, SHIFT(2808), - [6416] = {.count = 1, .reusable = true}, SHIFT(2809), - [6418] = {.count = 1, .reusable = false}, SHIFT(2810), - [6420] = {.count = 1, .reusable = false}, SHIFT(2811), - [6422] = {.count = 1, .reusable = true}, SHIFT(2813), - [6424] = {.count = 1, .reusable = true}, SHIFT(2814), - [6426] = {.count = 1, .reusable = true}, SHIFT(2815), - [6428] = {.count = 1, .reusable = true}, SHIFT(2816), - [6430] = {.count = 1, .reusable = true}, SHIFT(2427), - [6432] = {.count = 1, .reusable = true}, SHIFT(2428), - [6434] = {.count = 1, .reusable = true}, SHIFT(2429), - [6436] = {.count = 1, .reusable = true}, SHIFT(2430), - [6438] = {.count = 1, .reusable = true}, SHIFT(2817), - [6440] = {.count = 1, .reusable = false}, SHIFT(2819), - [6442] = {.count = 1, .reusable = false}, SHIFT(2820), - [6444] = {.count = 1, .reusable = true}, SHIFT(2821), - [6446] = {.count = 1, .reusable = true}, SHIFT(2822), - [6448] = {.count = 1, .reusable = false}, SHIFT(2824), - [6450] = {.count = 1, .reusable = true}, SHIFT(2824), - [6452] = {.count = 1, .reusable = true}, SHIFT(2823), - [6454] = {.count = 1, .reusable = true}, SHIFT(2825), - [6456] = {.count = 1, .reusable = true}, SHIFT(2826), - [6458] = {.count = 1, .reusable = false}, SHIFT(2827), - [6460] = {.count = 1, .reusable = false}, SHIFT(2826), - [6462] = {.count = 1, .reusable = true}, SHIFT(2829), - [6464] = {.count = 1, .reusable = false}, SHIFT(2831), - [6466] = {.count = 1, .reusable = true}, SHIFT(2831), - [6468] = {.count = 1, .reusable = true}, SHIFT(2830), - [6470] = {.count = 1, .reusable = true}, SHIFT(2832), - [6472] = {.count = 1, .reusable = false}, SHIFT(2834), - [6474] = {.count = 1, .reusable = true}, SHIFT(2834), - [6476] = {.count = 1, .reusable = true}, SHIFT(2833), - [6478] = {.count = 1, .reusable = true}, SHIFT(2835), - [6480] = {.count = 1, .reusable = true}, SHIFT(2836), - [6482] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2422), - [6485] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2423), - [6488] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2424), - [6491] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2425), - [6494] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2426), - [6497] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2427), - [6500] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2428), - [6503] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2429), - [6506] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2430), - [6509] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2431), - [6512] = {.count = 1, .reusable = true}, SHIFT(2837), - [6514] = {.count = 1, .reusable = true}, SHIFT(2439), - [6516] = {.count = 1, .reusable = true}, SHIFT(2440), - [6518] = {.count = 1, .reusable = true}, SHIFT(2441), - [6520] = {.count = 1, .reusable = true}, SHIFT(2442), - [6522] = {.count = 1, .reusable = false}, SHIFT(2839), - [6524] = {.count = 1, .reusable = false}, SHIFT(2840), - [6526] = {.count = 1, .reusable = true}, SHIFT(2841), - [6528] = {.count = 1, .reusable = true}, SHIFT(2842), - [6530] = {.count = 1, .reusable = false}, SHIFT(2844), - [6532] = {.count = 1, .reusable = true}, SHIFT(2844), - [6534] = {.count = 1, .reusable = true}, SHIFT(2843), - [6536] = {.count = 1, .reusable = true}, SHIFT(2845), - [6538] = {.count = 1, .reusable = true}, SHIFT(2846), - [6540] = {.count = 1, .reusable = false}, SHIFT(2847), - [6542] = {.count = 1, .reusable = false}, SHIFT(2846), - [6544] = {.count = 1, .reusable = true}, SHIFT(2849), - [6546] = {.count = 1, .reusable = false}, SHIFT(2851), - [6548] = {.count = 1, .reusable = true}, SHIFT(2851), - [6550] = {.count = 1, .reusable = true}, SHIFT(2850), - [6552] = {.count = 1, .reusable = true}, SHIFT(2852), - [6554] = {.count = 1, .reusable = false}, SHIFT(2854), - [6556] = {.count = 1, .reusable = true}, SHIFT(2854), - [6558] = {.count = 1, .reusable = true}, SHIFT(2853), - [6560] = {.count = 1, .reusable = true}, SHIFT(2855), - [6562] = {.count = 1, .reusable = true}, SHIFT(2856), - [6564] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2435), - [6567] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2436), - [6570] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2437), - [6573] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2438), - [6576] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2439), - [6579] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2440), - [6582] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2441), - [6585] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2442), - [6588] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2443), - [6591] = {.count = 1, .reusable = true}, SHIFT(2858), - [6593] = {.count = 1, .reusable = true}, SHIFT(2859), - [6595] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2450), - [6598] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2452), - [6601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2453), - [6604] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2451), - [6607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2454), - [6610] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2455), - [6613] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [6615] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [6617] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [6619] = {.count = 1, .reusable = false}, SHIFT(2862), - [6621] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [6623] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [6625] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [6627] = {.count = 1, .reusable = false}, SHIFT(2863), - [6629] = {.count = 1, .reusable = false}, SHIFT(2864), - [6631] = {.count = 1, .reusable = true}, SHIFT(2865), - [6633] = {.count = 1, .reusable = false}, SHIFT(2870), - [6635] = {.count = 1, .reusable = true}, SHIFT(2871), - [6637] = {.count = 1, .reusable = true}, SHIFT(2875), - [6639] = {.count = 1, .reusable = true}, SHIFT(2876), - [6641] = {.count = 1, .reusable = true}, SHIFT(2877), - [6643] = {.count = 1, .reusable = true}, SHIFT(2878), - [6645] = {.count = 1, .reusable = false}, SHIFT(2879), - [6647] = {.count = 1, .reusable = true}, SHIFT(2879), - [6649] = {.count = 1, .reusable = true}, SHIFT(2880), - [6651] = {.count = 1, .reusable = false}, SHIFT(2881), - [6653] = {.count = 1, .reusable = true}, SHIFT(2881), - [6655] = {.count = 1, .reusable = true}, SHIFT(2882), - [6657] = {.count = 1, .reusable = false}, SHIFT(2883), - [6659] = {.count = 1, .reusable = true}, SHIFT(2883), - [6661] = {.count = 1, .reusable = true}, SHIFT(2884), - [6663] = {.count = 1, .reusable = true}, SHIFT(2885), - [6665] = {.count = 1, .reusable = true}, SHIFT(2886), - [6667] = {.count = 1, .reusable = true}, SHIFT(2887), - [6669] = {.count = 1, .reusable = true}, SHIFT(2888), - [6671] = {.count = 1, .reusable = true}, SHIFT(2890), - [6673] = {.count = 1, .reusable = true}, SHIFT(2891), - [6675] = {.count = 1, .reusable = true}, SHIFT(2892), - [6677] = {.count = 1, .reusable = false}, SHIFT(2893), - [6679] = {.count = 1, .reusable = true}, SHIFT(2893), - [6681] = {.count = 1, .reusable = false}, SHIFT(2894), - [6683] = {.count = 1, .reusable = true}, SHIFT(2895), - [6685] = {.count = 1, .reusable = true}, SHIFT(2897), - [6687] = {.count = 1, .reusable = true}, SHIFT(2898), - [6689] = {.count = 1, .reusable = true}, SHIFT(2899), - [6691] = {.count = 1, .reusable = true}, SHIFT(2900), - [6693] = {.count = 1, .reusable = true}, SHIFT(2901), - [6695] = {.count = 1, .reusable = true}, SHIFT(2902), - [6697] = {.count = 1, .reusable = false}, SHIFT(2903), - [6699] = {.count = 1, .reusable = true}, SHIFT(2903), - [6701] = {.count = 1, .reusable = true}, SHIFT(2904), - [6703] = {.count = 1, .reusable = false}, SHIFT(2905), - [6705] = {.count = 1, .reusable = true}, SHIFT(2905), - [6707] = {.count = 1, .reusable = true}, SHIFT(2906), - [6709] = {.count = 1, .reusable = true}, SHIFT(2907), - [6711] = {.count = 1, .reusable = true}, SHIFT(2908), - [6713] = {.count = 1, .reusable = false}, SHIFT(2911), - [6715] = {.count = 1, .reusable = true}, SHIFT(2911), - [6717] = {.count = 1, .reusable = true}, SHIFT(2912), - [6719] = {.count = 1, .reusable = true}, SHIFT(2913), - [6721] = {.count = 1, .reusable = false}, SHIFT(2914), - [6723] = {.count = 1, .reusable = true}, SHIFT(2914), - [6725] = {.count = 1, .reusable = true}, SHIFT(2915), - [6727] = {.count = 1, .reusable = true}, SHIFT(2916), - [6729] = {.count = 1, .reusable = true}, SHIFT(2917), - [6731] = {.count = 1, .reusable = true}, SHIFT(2918), - [6733] = {.count = 1, .reusable = true}, SHIFT(2920), - [6735] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2654), - [6738] = {.count = 1, .reusable = false}, SHIFT(2922), - [6740] = {.count = 1, .reusable = true}, SHIFT(2923), - [6742] = {.count = 1, .reusable = false}, SHIFT(2924), - [6744] = {.count = 1, .reusable = true}, SHIFT(2925), - [6746] = {.count = 1, .reusable = true}, SHIFT(2927), - [6748] = {.count = 1, .reusable = true}, SHIFT(2928), - [6750] = {.count = 1, .reusable = true}, SHIFT(2929), - [6752] = {.count = 1, .reusable = true}, SHIFT(2930), - [6754] = {.count = 1, .reusable = false}, SHIFT(2932), - [6756] = {.count = 1, .reusable = true}, SHIFT(2932), - [6758] = {.count = 1, .reusable = true}, SHIFT(2931), - [6760] = {.count = 1, .reusable = true}, SHIFT(2933), - [6762] = {.count = 1, .reusable = false}, SHIFT(2935), - [6764] = {.count = 1, .reusable = true}, SHIFT(2935), - [6766] = {.count = 1, .reusable = true}, SHIFT(2934), - [6768] = {.count = 1, .reusable = false}, SHIFT(2937), - [6770] = {.count = 1, .reusable = true}, SHIFT(2937), - [6772] = {.count = 1, .reusable = true}, SHIFT(2936), - [6774] = {.count = 1, .reusable = true}, SHIFT(2938), - [6776] = {.count = 1, .reusable = true}, SHIFT(2939), - [6778] = {.count = 1, .reusable = true}, SHIFT(2940), - [6780] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2674), - [6783] = {.count = 1, .reusable = false}, SHIFT(2941), - [6785] = {.count = 1, .reusable = true}, SHIFT(2942), - [6787] = {.count = 1, .reusable = false}, SHIFT(2943), - [6789] = {.count = 1, .reusable = true}, SHIFT(2944), - [6791] = {.count = 1, .reusable = true}, SHIFT(2946), - [6793] = {.count = 1, .reusable = true}, SHIFT(2947), - [6795] = {.count = 1, .reusable = true}, SHIFT(2948), - [6797] = {.count = 1, .reusable = true}, SHIFT(2949), - [6799] = {.count = 1, .reusable = false}, SHIFT(2951), - [6801] = {.count = 1, .reusable = true}, SHIFT(2951), - [6803] = {.count = 1, .reusable = true}, SHIFT(2950), - [6805] = {.count = 1, .reusable = true}, SHIFT(2952), - [6807] = {.count = 1, .reusable = false}, SHIFT(2954), - [6809] = {.count = 1, .reusable = true}, SHIFT(2954), - [6811] = {.count = 1, .reusable = true}, SHIFT(2953), - [6813] = {.count = 1, .reusable = false}, SHIFT(2956), - [6815] = {.count = 1, .reusable = true}, SHIFT(2956), - [6817] = {.count = 1, .reusable = true}, SHIFT(2955), - [6819] = {.count = 1, .reusable = true}, SHIFT(2957), - [6821] = {.count = 1, .reusable = true}, SHIFT(2958), - [6823] = {.count = 1, .reusable = true}, SHIFT(2959), - [6825] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), - [6827] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6829] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6831] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), - [6833] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), - [6835] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), - [6837] = {.count = 1, .reusable = false}, SHIFT(2961), - [6839] = {.count = 1, .reusable = true}, SHIFT(2962), - [6841] = {.count = 1, .reusable = false}, SHIFT(2965), - [6843] = {.count = 1, .reusable = true}, SHIFT(2966), - [6845] = {.count = 1, .reusable = true}, SHIFT(2969), - [6847] = {.count = 1, .reusable = true}, SHIFT(2970), - [6849] = {.count = 1, .reusable = true}, SHIFT(2971), - [6851] = {.count = 1, .reusable = true}, SHIFT(2972), - [6853] = {.count = 1, .reusable = true}, SHIFT(2973), - [6855] = {.count = 1, .reusable = true}, SHIFT(2974), - [6857] = {.count = 1, .reusable = true}, SHIFT(2975), - [6859] = {.count = 1, .reusable = false}, SHIFT(2976), - [6861] = {.count = 1, .reusable = true}, SHIFT(2976), - [6863] = {.count = 1, .reusable = true}, SHIFT(2977), - [6865] = {.count = 1, .reusable = false}, SHIFT(2978), - [6867] = {.count = 1, .reusable = true}, SHIFT(2978), - [6869] = {.count = 1, .reusable = true}, SHIFT(2979), - [6871] = {.count = 1, .reusable = false}, SHIFT(2980), - [6873] = {.count = 1, .reusable = true}, SHIFT(2980), - [6875] = {.count = 1, .reusable = true}, SHIFT(2981), - [6877] = {.count = 1, .reusable = true}, SHIFT(2982), - [6879] = {.count = 1, .reusable = true}, SHIFT(2983), - [6881] = {.count = 1, .reusable = true}, SHIFT(2984), - [6883] = {.count = 1, .reusable = true}, SHIFT(2986), - [6885] = {.count = 1, .reusable = true}, SHIFT(2987), - [6887] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2809), - [6890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2810), - [6893] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2811), - [6896] = {.count = 1, .reusable = true}, SHIFT(2989), - [6898] = {.count = 1, .reusable = true}, SHIFT(2990), - [6900] = {.count = 1, .reusable = true}, SHIFT(2991), - [6902] = {.count = 1, .reusable = true}, SHIFT(2992), - [6904] = {.count = 1, .reusable = false}, SHIFT(2993), - [6906] = {.count = 1, .reusable = true}, SHIFT(2993), - [6908] = {.count = 1, .reusable = false}, SHIFT(2994), - [6910] = {.count = 1, .reusable = true}, SHIFT(2995), - [6912] = {.count = 1, .reusable = true}, SHIFT(2997), - [6914] = {.count = 1, .reusable = true}, SHIFT(2998), - [6916] = {.count = 1, .reusable = true}, SHIFT(2999), - [6918] = {.count = 1, .reusable = true}, SHIFT(3000), - [6920] = {.count = 1, .reusable = true}, SHIFT(3001), - [6922] = {.count = 1, .reusable = true}, SHIFT(3002), - [6924] = {.count = 1, .reusable = false}, SHIFT(3003), - [6926] = {.count = 1, .reusable = true}, SHIFT(3003), - [6928] = {.count = 1, .reusable = true}, SHIFT(3004), - [6930] = {.count = 1, .reusable = false}, SHIFT(3005), - [6932] = {.count = 1, .reusable = true}, SHIFT(3005), - [6934] = {.count = 1, .reusable = true}, SHIFT(3006), - [6936] = {.count = 1, .reusable = true}, SHIFT(3007), - [6938] = {.count = 1, .reusable = true}, SHIFT(3008), - [6940] = {.count = 1, .reusable = false}, SHIFT(3009), - [6942] = {.count = 1, .reusable = true}, SHIFT(3009), - [6944] = {.count = 1, .reusable = false}, SHIFT(3010), - [6946] = {.count = 1, .reusable = true}, SHIFT(3011), - [6948] = {.count = 1, .reusable = true}, SHIFT(3013), - [6950] = {.count = 1, .reusable = true}, SHIFT(3014), - [6952] = {.count = 1, .reusable = true}, SHIFT(3015), - [6954] = {.count = 1, .reusable = true}, SHIFT(3016), - [6956] = {.count = 1, .reusable = true}, SHIFT(3017), - [6958] = {.count = 1, .reusable = true}, SHIFT(3018), - [6960] = {.count = 1, .reusable = false}, SHIFT(3019), - [6962] = {.count = 1, .reusable = true}, SHIFT(3019), - [6964] = {.count = 1, .reusable = true}, SHIFT(3020), - [6966] = {.count = 1, .reusable = false}, SHIFT(3021), - [6968] = {.count = 1, .reusable = true}, SHIFT(3021), - [6970] = {.count = 1, .reusable = false}, SHIFT(3022), - [6972] = {.count = 1, .reusable = false}, SHIFT(3023), - [6974] = {.count = 1, .reusable = true}, SHIFT(3024), - [6976] = {.count = 1, .reusable = true}, SHIFT(3025), - [6978] = {.count = 1, .reusable = true}, SHIFT(3026), - [6980] = {.count = 1, .reusable = true}, SHIFT(3029), - [6982] = {.count = 1, .reusable = true}, SHIFT(3030), - [6984] = {.count = 1, .reusable = true}, SHIFT(3031), - [6986] = {.count = 1, .reusable = true}, SHIFT(3032), - [6988] = {.count = 1, .reusable = false}, SHIFT(3033), - [6990] = {.count = 1, .reusable = true}, SHIFT(3033), - [6992] = {.count = 1, .reusable = true}, SHIFT(3034), - [6994] = {.count = 1, .reusable = false}, SHIFT(3035), - [6996] = {.count = 1, .reusable = true}, SHIFT(3035), - [6998] = {.count = 1, .reusable = true}, SHIFT(3036), - [7000] = {.count = 1, .reusable = false}, SHIFT(3037), - [7002] = {.count = 1, .reusable = true}, SHIFT(3037), - [7004] = {.count = 1, .reusable = true}, SHIFT(3038), - [7006] = {.count = 1, .reusable = true}, SHIFT(3039), - [7008] = {.count = 1, .reusable = true}, SHIFT(3040), - [7010] = {.count = 1, .reusable = true}, SHIFT(3041), - [7012] = {.count = 1, .reusable = true}, SHIFT(3042), - [7014] = {.count = 1, .reusable = true}, SHIFT(3043), - [7016] = {.count = 1, .reusable = false}, SHIFT(3044), - [7018] = {.count = 1, .reusable = true}, SHIFT(3044), - [7020] = {.count = 1, .reusable = true}, SHIFT(3045), - [7022] = {.count = 1, .reusable = false}, SHIFT(3046), - [7024] = {.count = 1, .reusable = true}, SHIFT(3046), - [7026] = {.count = 1, .reusable = true}, SHIFT(3047), - [7028] = {.count = 1, .reusable = false}, SHIFT(3048), - [7030] = {.count = 1, .reusable = true}, SHIFT(3048), - [7032] = {.count = 1, .reusable = true}, SHIFT(3049), - [7034] = {.count = 1, .reusable = true}, SHIFT(3050), - [7036] = {.count = 1, .reusable = true}, SHIFT(3051), - [7038] = {.count = 1, .reusable = true}, SHIFT(3052), - [7040] = {.count = 1, .reusable = true}, SHIFT(3053), - [7042] = {.count = 1, .reusable = true}, SHIFT(3054), - [7044] = {.count = 1, .reusable = true}, SHIFT(3055), - [7046] = {.count = 1, .reusable = true}, SHIFT(3056), + [5268] = {.count = 1, .reusable = false}, SHIFT(2271), + [5270] = {.count = 1, .reusable = true}, SHIFT(2271), + [5272] = {.count = 1, .reusable = true}, SHIFT(2272), + [5274] = {.count = 1, .reusable = false}, SHIFT(2273), + [5276] = {.count = 1, .reusable = true}, SHIFT(2273), + [5278] = {.count = 1, .reusable = true}, SHIFT(2274), + [5280] = {.count = 1, .reusable = true}, SHIFT(2275), + [5282] = {.count = 1, .reusable = true}, SHIFT(2276), + [5284] = {.count = 1, .reusable = true}, SHIFT(2277), + [5286] = {.count = 1, .reusable = true}, SHIFT(2278), + [5288] = {.count = 1, .reusable = true}, SHIFT(2279), + [5290] = {.count = 1, .reusable = false}, SHIFT(2280), + [5292] = {.count = 1, .reusable = true}, SHIFT(2280), + [5294] = {.count = 1, .reusable = true}, SHIFT(2281), + [5296] = {.count = 1, .reusable = false}, SHIFT(2282), + [5298] = {.count = 1, .reusable = true}, SHIFT(2282), + [5300] = {.count = 1, .reusable = true}, SHIFT(2283), + [5302] = {.count = 1, .reusable = false}, SHIFT(2284), + [5304] = {.count = 1, .reusable = true}, SHIFT(2284), + [5306] = {.count = 1, .reusable = true}, SHIFT(2285), + [5308] = {.count = 1, .reusable = true}, SHIFT(2286), + [5310] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5312] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5314] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5316] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5318] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5320] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5322] = {.count = 1, .reusable = true}, SHIFT(2289), + [5324] = {.count = 1, .reusable = true}, SHIFT(2290), + [5326] = {.count = 1, .reusable = true}, SHIFT(2291), + [5328] = {.count = 1, .reusable = true}, SHIFT(2292), + [5330] = {.count = 1, .reusable = false}, SHIFT(2293), + [5332] = {.count = 1, .reusable = true}, SHIFT(2293), + [5334] = {.count = 1, .reusable = true}, SHIFT(2294), + [5336] = {.count = 1, .reusable = false}, SHIFT(2295), + [5338] = {.count = 1, .reusable = true}, SHIFT(2295), + [5340] = {.count = 1, .reusable = true}, SHIFT(2296), + [5342] = {.count = 1, .reusable = false}, SHIFT(2297), + [5344] = {.count = 1, .reusable = true}, SHIFT(2297), + [5346] = {.count = 1, .reusable = true}, SHIFT(2298), + [5348] = {.count = 1, .reusable = true}, SHIFT(2299), + [5350] = {.count = 1, .reusable = true}, SHIFT(2300), + [5352] = {.count = 1, .reusable = true}, SHIFT(2301), + [5354] = {.count = 1, .reusable = true}, SHIFT(2302), + [5356] = {.count = 1, .reusable = true}, SHIFT(2303), + [5358] = {.count = 1, .reusable = false}, SHIFT(2304), + [5360] = {.count = 1, .reusable = true}, SHIFT(2304), + [5362] = {.count = 1, .reusable = true}, SHIFT(2305), + [5364] = {.count = 1, .reusable = false}, SHIFT(2306), + [5366] = {.count = 1, .reusable = true}, SHIFT(2306), + [5368] = {.count = 1, .reusable = true}, SHIFT(2307), + [5370] = {.count = 1, .reusable = false}, SHIFT(2308), + [5372] = {.count = 1, .reusable = true}, SHIFT(2308), + [5374] = {.count = 1, .reusable = true}, SHIFT(2309), + [5376] = {.count = 1, .reusable = true}, SHIFT(2310), + [5378] = {.count = 1, .reusable = true}, SHIFT(2311), + [5380] = {.count = 1, .reusable = true}, SHIFT(2312), + [5382] = {.count = 1, .reusable = true}, SHIFT(2313), + [5384] = {.count = 1, .reusable = true}, SHIFT(2314), + [5386] = {.count = 1, .reusable = true}, SHIFT(2315), + [5388] = {.count = 1, .reusable = true}, SHIFT(2316), + [5390] = {.count = 1, .reusable = false}, SHIFT(2317), + [5392] = {.count = 1, .reusable = true}, SHIFT(2317), + [5394] = {.count = 1, .reusable = false}, SHIFT(2318), + [5396] = {.count = 1, .reusable = true}, SHIFT(2319), + [5398] = {.count = 1, .reusable = true}, SHIFT(2321), + [5400] = {.count = 1, .reusable = true}, SHIFT(2322), + [5402] = {.count = 1, .reusable = true}, SHIFT(2323), + [5404] = {.count = 1, .reusable = true}, SHIFT(2324), + [5406] = {.count = 1, .reusable = true}, SHIFT(2325), + [5408] = {.count = 1, .reusable = true}, SHIFT(2326), + [5410] = {.count = 1, .reusable = false}, SHIFT(2327), + [5412] = {.count = 1, .reusable = true}, SHIFT(2327), + [5414] = {.count = 1, .reusable = true}, SHIFT(2328), + [5416] = {.count = 1, .reusable = false}, SHIFT(2329), + [5418] = {.count = 1, .reusable = true}, SHIFT(2329), + [5420] = {.count = 1, .reusable = true}, SHIFT(2330), + [5422] = {.count = 1, .reusable = true}, SHIFT(2331), + [5424] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [5426] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [5428] = {.count = 1, .reusable = true}, SHIFT(2332), + [5430] = {.count = 1, .reusable = true}, SHIFT(2333), + [5432] = {.count = 1, .reusable = true}, SHIFT(2334), + [5434] = {.count = 1, .reusable = true}, SHIFT(2336), + [5436] = {.count = 1, .reusable = true}, SHIFT(2337), + [5438] = {.count = 1, .reusable = true}, SHIFT(2339), + [5440] = {.count = 1, .reusable = true}, SHIFT(2341), + [5442] = {.count = 1, .reusable = true}, SHIFT(2342), + [5444] = {.count = 1, .reusable = true}, SHIFT(2343), + [5446] = {.count = 1, .reusable = false}, SHIFT(2345), + [5448] = {.count = 1, .reusable = false}, SHIFT(2346), + [5450] = {.count = 1, .reusable = true}, SHIFT(2161), + [5452] = {.count = 1, .reusable = true}, SHIFT(2348), + [5454] = {.count = 1, .reusable = true}, SHIFT(2349), + [5456] = {.count = 1, .reusable = false}, SHIFT(2350), + [5458] = {.count = 1, .reusable = false}, SHIFT(2348), + [5460] = {.count = 1, .reusable = true}, SHIFT(2351), + [5462] = {.count = 1, .reusable = true}, SHIFT(2352), + [5464] = {.count = 1, .reusable = true}, SHIFT(2353), + [5466] = {.count = 1, .reusable = false}, SHIFT(2354), + [5468] = {.count = 1, .reusable = false}, SHIFT(2352), + [5470] = {.count = 1, .reusable = true}, SHIFT(2366), + [5472] = {.count = 1, .reusable = false}, SHIFT(2368), + [5474] = {.count = 1, .reusable = false}, SHIFT(2369), + [5476] = {.count = 1, .reusable = true}, SHIFT(2172), + [5478] = {.count = 1, .reusable = true}, SHIFT(2371), + [5480] = {.count = 1, .reusable = true}, SHIFT(2372), + [5482] = {.count = 1, .reusable = false}, SHIFT(2373), + [5484] = {.count = 1, .reusable = false}, SHIFT(2371), + [5486] = {.count = 1, .reusable = true}, SHIFT(2374), + [5488] = {.count = 1, .reusable = true}, SHIFT(2375), + [5490] = {.count = 1, .reusable = true}, SHIFT(2376), + [5492] = {.count = 1, .reusable = false}, SHIFT(2377), + [5494] = {.count = 1, .reusable = false}, SHIFT(2375), + [5496] = {.count = 1, .reusable = true}, SHIFT(2390), + [5498] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5500] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5502] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5504] = {.count = 1, .reusable = false}, SHIFT(2393), + [5506] = {.count = 1, .reusable = true}, SHIFT(2393), + [5508] = {.count = 1, .reusable = false}, SHIFT(2394), + [5510] = {.count = 1, .reusable = false}, SHIFT(2395), + [5512] = {.count = 1, .reusable = true}, SHIFT(2396), + [5514] = {.count = 1, .reusable = true}, SHIFT(2397), + [5516] = {.count = 1, .reusable = true}, SHIFT(2398), + [5518] = {.count = 1, .reusable = true}, SHIFT(2399), + [5520] = {.count = 1, .reusable = false}, SHIFT(2403), + [5522] = {.count = 1, .reusable = true}, SHIFT(2405), + [5524] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [5526] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [5528] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [5530] = {.count = 1, .reusable = false}, SHIFT(2408), + [5532] = {.count = 1, .reusable = true}, SHIFT(2409), + [5534] = {.count = 1, .reusable = true}, SHIFT(2412), + [5536] = {.count = 1, .reusable = true}, SHIFT(2416), + [5538] = {.count = 1, .reusable = true}, SHIFT(2417), + [5540] = {.count = 1, .reusable = true}, SHIFT(2421), + [5542] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5544] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5546] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5548] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5550] = {.count = 1, .reusable = true}, SHIFT(2422), + [5552] = {.count = 1, .reusable = true}, SHIFT(2423), + [5554] = {.count = 1, .reusable = true}, SHIFT(2424), + [5556] = {.count = 1, .reusable = false}, SHIFT(2425), + [5558] = {.count = 1, .reusable = true}, SHIFT(2425), + [5560] = {.count = 1, .reusable = false}, SHIFT(2426), + [5562] = {.count = 1, .reusable = true}, SHIFT(2427), + [5564] = {.count = 1, .reusable = true}, SHIFT(2429), + [5566] = {.count = 1, .reusable = true}, SHIFT(2430), + [5568] = {.count = 1, .reusable = true}, SHIFT(2431), + [5570] = {.count = 1, .reusable = true}, SHIFT(2432), + [5572] = {.count = 1, .reusable = true}, SHIFT(2433), + [5574] = {.count = 1, .reusable = true}, SHIFT(2434), + [5576] = {.count = 1, .reusable = false}, SHIFT(2435), + [5578] = {.count = 1, .reusable = true}, SHIFT(2435), + [5580] = {.count = 1, .reusable = true}, SHIFT(2436), + [5582] = {.count = 1, .reusable = false}, SHIFT(2437), + [5584] = {.count = 1, .reusable = true}, SHIFT(2437), + [5586] = {.count = 1, .reusable = true}, SHIFT(2438), + [5588] = {.count = 1, .reusable = true}, SHIFT(2439), + [5590] = {.count = 1, .reusable = true}, SHIFT(2440), + [5592] = {.count = 1, .reusable = true}, SHIFT(2441), + [5594] = {.count = 1, .reusable = true}, SHIFT(2442), + [5596] = {.count = 1, .reusable = true}, SHIFT(2443), + [5598] = {.count = 1, .reusable = false}, SHIFT(2444), + [5600] = {.count = 1, .reusable = true}, SHIFT(2444), + [5602] = {.count = 1, .reusable = true}, SHIFT(2445), + [5604] = {.count = 1, .reusable = false}, SHIFT(2446), + [5606] = {.count = 1, .reusable = true}, SHIFT(2446), + [5608] = {.count = 1, .reusable = true}, SHIFT(2447), + [5610] = {.count = 1, .reusable = false}, SHIFT(2448), + [5612] = {.count = 1, .reusable = true}, SHIFT(2448), + [5614] = {.count = 1, .reusable = true}, SHIFT(2449), + [5616] = {.count = 1, .reusable = true}, SHIFT(2450), + [5618] = {.count = 1, .reusable = true}, SHIFT(2451), + [5620] = {.count = 1, .reusable = true}, SHIFT(2452), + [5622] = {.count = 1, .reusable = true}, SHIFT(2453), + [5624] = {.count = 1, .reusable = true}, SHIFT(2454), + [5626] = {.count = 1, .reusable = true}, SHIFT(2455), + [5628] = {.count = 1, .reusable = true}, SHIFT(2456), + [5630] = {.count = 1, .reusable = true}, SHIFT(2457), + [5632] = {.count = 1, .reusable = true}, SHIFT(2458), + [5634] = {.count = 1, .reusable = true}, SHIFT(2459), + [5636] = {.count = 1, .reusable = true}, SHIFT(2460), + [5638] = {.count = 1, .reusable = true}, SHIFT(2461), + [5640] = {.count = 1, .reusable = true}, SHIFT(2462), + [5642] = {.count = 1, .reusable = true}, SHIFT(2463), + [5644] = {.count = 1, .reusable = false}, SHIFT(2464), + [5646] = {.count = 1, .reusable = true}, SHIFT(2464), + [5648] = {.count = 1, .reusable = true}, SHIFT(2465), + [5650] = {.count = 1, .reusable = false}, SHIFT(2466), + [5652] = {.count = 1, .reusable = true}, SHIFT(2466), + [5654] = {.count = 1, .reusable = true}, SHIFT(2467), + [5656] = {.count = 1, .reusable = false}, SHIFT(2468), + [5658] = {.count = 1, .reusable = true}, SHIFT(2468), + [5660] = {.count = 1, .reusable = true}, SHIFT(2469), + [5662] = {.count = 1, .reusable = true}, SHIFT(2470), + [5664] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [5666] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [5668] = {.count = 1, .reusable = true}, SHIFT(2473), + [5670] = {.count = 1, .reusable = true}, SHIFT(2474), + [5672] = {.count = 1, .reusable = false}, SHIFT(2475), + [5674] = {.count = 1, .reusable = true}, SHIFT(2476), + [5676] = {.count = 1, .reusable = false}, SHIFT(2477), + [5678] = {.count = 1, .reusable = false}, SHIFT(2478), + [5680] = {.count = 1, .reusable = true}, SHIFT(2480), + [5682] = {.count = 1, .reusable = true}, SHIFT(2481), + [5684] = {.count = 1, .reusable = true}, SHIFT(2482), + [5686] = {.count = 1, .reusable = true}, SHIFT(2483), + [5688] = {.count = 1, .reusable = true}, SHIFT(2164), + [5690] = {.count = 1, .reusable = true}, SHIFT(2165), + [5692] = {.count = 1, .reusable = true}, SHIFT(2166), + [5694] = {.count = 1, .reusable = true}, SHIFT(2167), + [5696] = {.count = 1, .reusable = true}, SHIFT(2484), + [5698] = {.count = 1, .reusable = false}, SHIFT(2486), + [5700] = {.count = 1, .reusable = false}, SHIFT(2487), + [5702] = {.count = 1, .reusable = true}, SHIFT(2488), + [5704] = {.count = 1, .reusable = true}, SHIFT(2489), + [5706] = {.count = 1, .reusable = false}, SHIFT(2491), + [5708] = {.count = 1, .reusable = true}, SHIFT(2491), + [5710] = {.count = 1, .reusable = true}, SHIFT(2490), + [5712] = {.count = 1, .reusable = true}, SHIFT(2492), + [5714] = {.count = 1, .reusable = true}, SHIFT(2493), + [5716] = {.count = 1, .reusable = false}, SHIFT(2494), + [5718] = {.count = 1, .reusable = false}, SHIFT(2493), + [5720] = {.count = 1, .reusable = true}, SHIFT(2496), + [5722] = {.count = 1, .reusable = false}, SHIFT(2498), + [5724] = {.count = 1, .reusable = true}, SHIFT(2498), + [5726] = {.count = 1, .reusable = true}, SHIFT(2497), + [5728] = {.count = 1, .reusable = true}, SHIFT(2499), + [5730] = {.count = 1, .reusable = false}, SHIFT(2501), + [5732] = {.count = 1, .reusable = true}, SHIFT(2501), + [5734] = {.count = 1, .reusable = true}, SHIFT(2500), + [5736] = {.count = 1, .reusable = false}, SHIFT(2502), + [5738] = {.count = 1, .reusable = false}, SHIFT(2503), + [5740] = {.count = 1, .reusable = true}, SHIFT(2503), + [5742] = {.count = 1, .reusable = false}, SHIFT(2506), + [5744] = {.count = 1, .reusable = true}, SHIFT(2506), + [5746] = {.count = 1, .reusable = false}, SHIFT(2509), + [5748] = {.count = 1, .reusable = false}, SHIFT(2510), + [5750] = {.count = 1, .reusable = true}, SHIFT(2510), + [5752] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2159), + [5755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2160), + [5758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2161), + [5761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2162), + [5764] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2163), + [5767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2164), + [5770] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2165), + [5773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2166), + [5776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2167), + [5779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2168), + [5782] = {.count = 1, .reusable = true}, SHIFT(2513), + [5784] = {.count = 1, .reusable = true}, SHIFT(2175), + [5786] = {.count = 1, .reusable = true}, SHIFT(2176), + [5788] = {.count = 1, .reusable = true}, SHIFT(2177), + [5790] = {.count = 1, .reusable = true}, SHIFT(2178), + [5792] = {.count = 1, .reusable = false}, SHIFT(2515), + [5794] = {.count = 1, .reusable = false}, SHIFT(2516), + [5796] = {.count = 1, .reusable = true}, SHIFT(2517), + [5798] = {.count = 1, .reusable = true}, SHIFT(2518), + [5800] = {.count = 1, .reusable = false}, SHIFT(2520), + [5802] = {.count = 1, .reusable = true}, SHIFT(2520), + [5804] = {.count = 1, .reusable = true}, SHIFT(2519), + [5806] = {.count = 1, .reusable = true}, SHIFT(2521), + [5808] = {.count = 1, .reusable = true}, SHIFT(2522), + [5810] = {.count = 1, .reusable = false}, SHIFT(2523), + [5812] = {.count = 1, .reusable = false}, SHIFT(2522), + [5814] = {.count = 1, .reusable = true}, SHIFT(2525), + [5816] = {.count = 1, .reusable = false}, SHIFT(2527), + [5818] = {.count = 1, .reusable = true}, SHIFT(2527), + [5820] = {.count = 1, .reusable = true}, SHIFT(2526), + [5822] = {.count = 1, .reusable = true}, SHIFT(2528), + [5824] = {.count = 1, .reusable = false}, SHIFT(2530), + [5826] = {.count = 1, .reusable = true}, SHIFT(2530), + [5828] = {.count = 1, .reusable = true}, SHIFT(2529), + [5830] = {.count = 1, .reusable = false}, SHIFT(2531), + [5832] = {.count = 1, .reusable = false}, SHIFT(2532), + [5834] = {.count = 1, .reusable = true}, SHIFT(2532), + [5836] = {.count = 1, .reusable = false}, SHIFT(2535), + [5838] = {.count = 1, .reusable = true}, SHIFT(2535), + [5840] = {.count = 1, .reusable = false}, SHIFT(2538), + [5842] = {.count = 1, .reusable = false}, SHIFT(2539), + [5844] = {.count = 1, .reusable = true}, SHIFT(2539), + [5846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2171), + [5849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2172), + [5852] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2173), + [5855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2174), + [5858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2175), + [5861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2176), + [5864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2177), + [5867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2178), + [5870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2179), + [5873] = {.count = 1, .reusable = true}, SHIFT(2543), + [5875] = {.count = 1, .reusable = true}, SHIFT(2544), + [5877] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2186), + [5880] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2188), + [5883] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2189), + [5886] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2187), + [5889] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2190), + [5892] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2191), + [5895] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [5897] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5899] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5901] = {.count = 1, .reusable = false}, SHIFT(2547), + [5903] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [5905] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [5907] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [5909] = {.count = 1, .reusable = false}, SHIFT(2548), + [5911] = {.count = 1, .reusable = false}, SHIFT(2549), + [5913] = {.count = 1, .reusable = true}, SHIFT(2550), + [5915] = {.count = 1, .reusable = false}, SHIFT(2555), + [5917] = {.count = 1, .reusable = true}, SHIFT(2556), + [5919] = {.count = 1, .reusable = true}, SHIFT(2560), + [5921] = {.count = 1, .reusable = true}, SHIFT(2561), + [5923] = {.count = 1, .reusable = true}, SHIFT(2562), + [5925] = {.count = 1, .reusable = true}, SHIFT(2563), + [5927] = {.count = 1, .reusable = false}, SHIFT(2564), + [5929] = {.count = 1, .reusable = true}, SHIFT(2564), + [5931] = {.count = 1, .reusable = true}, SHIFT(2565), + [5933] = {.count = 1, .reusable = false}, SHIFT(2566), + [5935] = {.count = 1, .reusable = true}, SHIFT(2566), + [5937] = {.count = 1, .reusable = true}, SHIFT(2567), + [5939] = {.count = 1, .reusable = false}, SHIFT(2568), + [5941] = {.count = 1, .reusable = true}, SHIFT(2568), + [5943] = {.count = 1, .reusable = true}, SHIFT(2569), + [5945] = {.count = 1, .reusable = true}, SHIFT(2570), + [5947] = {.count = 1, .reusable = true}, SHIFT(2571), + [5949] = {.count = 1, .reusable = true}, SHIFT(2572), + [5951] = {.count = 1, .reusable = true}, SHIFT(2573), + [5953] = {.count = 1, .reusable = true}, SHIFT(2574), + [5955] = {.count = 1, .reusable = true}, SHIFT(2575), + [5957] = {.count = 1, .reusable = true}, SHIFT(2576), + [5959] = {.count = 1, .reusable = false}, SHIFT(2579), + [5961] = {.count = 1, .reusable = true}, SHIFT(2579), + [5963] = {.count = 1, .reusable = true}, SHIFT(2580), + [5965] = {.count = 1, .reusable = true}, SHIFT(2581), + [5967] = {.count = 1, .reusable = false}, SHIFT(2582), + [5969] = {.count = 1, .reusable = true}, SHIFT(2582), + [5971] = {.count = 1, .reusable = true}, SHIFT(2583), + [5973] = {.count = 1, .reusable = true}, SHIFT(2584), + [5975] = {.count = 1, .reusable = true}, SHIFT(2585), + [5977] = {.count = 1, .reusable = true}, SHIFT(2586), + [5979] = {.count = 1, .reusable = true}, SHIFT(2588), + [5981] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2343), + [5984] = {.count = 1, .reusable = false}, SHIFT(2590), + [5986] = {.count = 1, .reusable = true}, SHIFT(2591), + [5988] = {.count = 1, .reusable = false}, SHIFT(2592), + [5990] = {.count = 1, .reusable = true}, SHIFT(2593), + [5992] = {.count = 1, .reusable = true}, SHIFT(2595), + [5994] = {.count = 1, .reusable = true}, SHIFT(2596), + [5996] = {.count = 1, .reusable = true}, SHIFT(2597), + [5998] = {.count = 1, .reusable = true}, SHIFT(2598), + [6000] = {.count = 1, .reusable = false}, SHIFT(2600), + [6002] = {.count = 1, .reusable = true}, SHIFT(2600), + [6004] = {.count = 1, .reusable = true}, SHIFT(2599), + [6006] = {.count = 1, .reusable = true}, SHIFT(2601), + [6008] = {.count = 1, .reusable = false}, SHIFT(2603), + [6010] = {.count = 1, .reusable = true}, SHIFT(2603), + [6012] = {.count = 1, .reusable = true}, SHIFT(2602), + [6014] = {.count = 1, .reusable = false}, SHIFT(2605), + [6016] = {.count = 1, .reusable = true}, SHIFT(2605), + [6018] = {.count = 1, .reusable = true}, SHIFT(2604), + [6020] = {.count = 1, .reusable = true}, SHIFT(2606), + [6022] = {.count = 1, .reusable = true}, SHIFT(2607), + [6024] = {.count = 1, .reusable = true}, SHIFT(2608), + [6026] = {.count = 1, .reusable = true}, SHIFT(2609), + [6028] = {.count = 1, .reusable = false}, SHIFT(2609), + [6030] = {.count = 1, .reusable = false}, SHIFT(2610), + [6032] = {.count = 1, .reusable = true}, SHIFT(2610), + [6034] = {.count = 1, .reusable = false}, SHIFT(2611), + [6036] = {.count = 1, .reusable = true}, SHIFT(2611), + [6038] = {.count = 1, .reusable = true}, SHIFT(2612), + [6040] = {.count = 1, .reusable = false}, SHIFT(2612), + [6042] = {.count = 1, .reusable = false}, SHIFT(2613), + [6044] = {.count = 1, .reusable = true}, SHIFT(2613), + [6046] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2366), + [6049] = {.count = 1, .reusable = false}, SHIFT(2614), + [6051] = {.count = 1, .reusable = true}, SHIFT(2615), + [6053] = {.count = 1, .reusable = false}, SHIFT(2616), + [6055] = {.count = 1, .reusable = true}, SHIFT(2617), + [6057] = {.count = 1, .reusable = true}, SHIFT(2619), + [6059] = {.count = 1, .reusable = true}, SHIFT(2620), + [6061] = {.count = 1, .reusable = true}, SHIFT(2621), + [6063] = {.count = 1, .reusable = true}, SHIFT(2622), + [6065] = {.count = 1, .reusable = false}, SHIFT(2624), + [6067] = {.count = 1, .reusable = true}, SHIFT(2624), + [6069] = {.count = 1, .reusable = true}, SHIFT(2623), + [6071] = {.count = 1, .reusable = true}, SHIFT(2625), + [6073] = {.count = 1, .reusable = false}, SHIFT(2627), + [6075] = {.count = 1, .reusable = true}, SHIFT(2627), + [6077] = {.count = 1, .reusable = true}, SHIFT(2626), + [6079] = {.count = 1, .reusable = false}, SHIFT(2629), + [6081] = {.count = 1, .reusable = true}, SHIFT(2629), + [6083] = {.count = 1, .reusable = true}, SHIFT(2628), + [6085] = {.count = 1, .reusable = true}, SHIFT(2630), + [6087] = {.count = 1, .reusable = true}, SHIFT(2631), + [6089] = {.count = 1, .reusable = true}, SHIFT(2632), + [6091] = {.count = 1, .reusable = true}, SHIFT(2633), + [6093] = {.count = 1, .reusable = false}, SHIFT(2633), + [6095] = {.count = 1, .reusable = false}, SHIFT(2634), + [6097] = {.count = 1, .reusable = true}, SHIFT(2634), + [6099] = {.count = 1, .reusable = false}, SHIFT(2635), + [6101] = {.count = 1, .reusable = true}, SHIFT(2635), + [6103] = {.count = 1, .reusable = true}, SHIFT(2636), + [6105] = {.count = 1, .reusable = false}, SHIFT(2636), + [6107] = {.count = 1, .reusable = false}, SHIFT(2637), + [6109] = {.count = 1, .reusable = true}, SHIFT(2637), + [6111] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [6113] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6115] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6117] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), + [6119] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), + [6121] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), + [6123] = {.count = 1, .reusable = false}, SHIFT(2639), + [6125] = {.count = 1, .reusable = true}, SHIFT(2640), + [6127] = {.count = 1, .reusable = false}, SHIFT(2643), + [6129] = {.count = 1, .reusable = true}, SHIFT(2644), + [6131] = {.count = 1, .reusable = true}, SHIFT(2647), + [6133] = {.count = 1, .reusable = true}, SHIFT(2648), + [6135] = {.count = 1, .reusable = true}, SHIFT(2649), + [6137] = {.count = 1, .reusable = true}, SHIFT(2650), + [6139] = {.count = 1, .reusable = true}, SHIFT(2651), + [6141] = {.count = 1, .reusable = true}, SHIFT(2653), + [6143] = {.count = 1, .reusable = true}, SHIFT(2654), + [6145] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2476), + [6148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2477), + [6151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2478), + [6154] = {.count = 1, .reusable = true}, SHIFT(2656), + [6156] = {.count = 1, .reusable = true}, SHIFT(2657), + [6158] = {.count = 1, .reusable = true}, SHIFT(2658), + [6160] = {.count = 1, .reusable = true}, SHIFT(2659), + [6162] = {.count = 1, .reusable = false}, SHIFT(2660), + [6164] = {.count = 1, .reusable = true}, SHIFT(2660), + [6166] = {.count = 1, .reusable = false}, SHIFT(2661), + [6168] = {.count = 1, .reusable = true}, SHIFT(2662), + [6170] = {.count = 1, .reusable = true}, SHIFT(2664), + [6172] = {.count = 1, .reusable = true}, SHIFT(2665), + [6174] = {.count = 1, .reusable = true}, SHIFT(2666), + [6176] = {.count = 1, .reusable = true}, SHIFT(2667), + [6178] = {.count = 1, .reusable = true}, SHIFT(2668), + [6180] = {.count = 1, .reusable = true}, SHIFT(2669), + [6182] = {.count = 1, .reusable = false}, SHIFT(2670), + [6184] = {.count = 1, .reusable = true}, SHIFT(2670), + [6186] = {.count = 1, .reusable = true}, SHIFT(2671), + [6188] = {.count = 1, .reusable = false}, SHIFT(2672), + [6190] = {.count = 1, .reusable = true}, SHIFT(2672), + [6192] = {.count = 1, .reusable = true}, SHIFT(2673), + [6194] = {.count = 1, .reusable = true}, SHIFT(2674), + [6196] = {.count = 1, .reusable = true}, SHIFT(2675), + [6198] = {.count = 1, .reusable = true}, SHIFT(2676), + [6200] = {.count = 1, .reusable = true}, SHIFT(2677), + [6202] = {.count = 1, .reusable = false}, SHIFT(2678), + [6204] = {.count = 1, .reusable = true}, SHIFT(2678), + [6206] = {.count = 1, .reusable = false}, SHIFT(2679), + [6208] = {.count = 1, .reusable = true}, SHIFT(2680), + [6210] = {.count = 1, .reusable = true}, SHIFT(2682), + [6212] = {.count = 1, .reusable = true}, SHIFT(2683), + [6214] = {.count = 1, .reusable = true}, SHIFT(2684), + [6216] = {.count = 1, .reusable = true}, SHIFT(2685), + [6218] = {.count = 1, .reusable = true}, SHIFT(2686), + [6220] = {.count = 1, .reusable = true}, SHIFT(2687), + [6222] = {.count = 1, .reusable = false}, SHIFT(2688), + [6224] = {.count = 1, .reusable = true}, SHIFT(2688), + [6226] = {.count = 1, .reusable = true}, SHIFT(2689), + [6228] = {.count = 1, .reusable = false}, SHIFT(2690), + [6230] = {.count = 1, .reusable = true}, SHIFT(2690), + [6232] = {.count = 1, .reusable = true}, SHIFT(2691), + [6234] = {.count = 1, .reusable = true}, SHIFT(2692), + [6236] = {.count = 1, .reusable = false}, SHIFT(2693), + [6238] = {.count = 1, .reusable = false}, SHIFT(2694), + [6240] = {.count = 1, .reusable = true}, SHIFT(2697), + [6242] = {.count = 1, .reusable = true}, SHIFT(2698), + [6244] = {.count = 1, .reusable = true}, SHIFT(2699), + [6246] = {.count = 1, .reusable = true}, SHIFT(2700), + [6248] = {.count = 1, .reusable = false}, SHIFT(2701), + [6250] = {.count = 1, .reusable = true}, SHIFT(2701), + [6252] = {.count = 1, .reusable = true}, SHIFT(2702), + [6254] = {.count = 1, .reusable = false}, SHIFT(2703), + [6256] = {.count = 1, .reusable = true}, SHIFT(2703), + [6258] = {.count = 1, .reusable = true}, SHIFT(2704), + [6260] = {.count = 1, .reusable = false}, SHIFT(2705), + [6262] = {.count = 1, .reusable = true}, SHIFT(2705), + [6264] = {.count = 1, .reusable = true}, SHIFT(2706), + [6266] = {.count = 1, .reusable = true}, SHIFT(2707), + [6268] = {.count = 1, .reusable = true}, SHIFT(2708), + [6270] = {.count = 1, .reusable = true}, SHIFT(2709), + [6272] = {.count = 1, .reusable = true}, SHIFT(2710), + [6274] = {.count = 1, .reusable = true}, SHIFT(2711), + [6276] = {.count = 1, .reusable = false}, SHIFT(2712), + [6278] = {.count = 1, .reusable = true}, SHIFT(2712), + [6280] = {.count = 1, .reusable = true}, SHIFT(2713), + [6282] = {.count = 1, .reusable = false}, SHIFT(2714), + [6284] = {.count = 1, .reusable = true}, SHIFT(2714), + [6286] = {.count = 1, .reusable = true}, SHIFT(2715), + [6288] = {.count = 1, .reusable = false}, SHIFT(2716), + [6290] = {.count = 1, .reusable = true}, SHIFT(2716), + [6292] = {.count = 1, .reusable = true}, SHIFT(2717), + [6294] = {.count = 1, .reusable = true}, SHIFT(2718), + [6296] = {.count = 1, .reusable = true}, SHIFT(2719), + [6298] = {.count = 1, .reusable = true}, SHIFT(2720), + [6300] = {.count = 1, .reusable = true}, SHIFT(2721), + [6302] = {.count = 1, .reusable = true}, SHIFT(2722), + [6304] = {.count = 1, .reusable = true}, SHIFT(2723), + [6306] = {.count = 1, .reusable = true}, SHIFT(2724), }; void *tree_sitter_bash_external_scanner_create();